Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/16/13 in all areas

  1. Hello all~ Here my version of a Christmas/Winter themed Prontera. My goal was to create a Prontera with only a slight Christmas twist, a Prontera that could still be used in January or February because the Christmas theme is not all that exaggerated as to were there are candy canes sticking out of the floor or XL sized socks printed into buildings (no offense to the rAthena members that created a map like that, of course! It just wasn't what I aimed for.) If I get enough support for it, then this map will some time later be available as public (free) release - if that is the case, you must remain patient for several more days though because I have yet to set gats and re-do some lightning. Pront is huge, so I'll only show the center road. Merry early Christmas, everyone!
    3 points
  2. File Name: Server News File Submitter: Skorm File Submitted: 16 Nov 2013 File Category: Utilities Content Author: Skorm This is an easily editable npc that shows current server news. Everything is saved on sql so you could potentially link it to a php file and then to html for dynamic in game site and patcher changes... Click here to download this file
    1 point
  3. Recently i was facing an issue with newer clients that doesn't allow space in guild names. With ollydbg, I figure out how to allow space and I'm sharing: Open your hexed with a hex editor and search for this hex: Replace for: The 20 hex above is the space string (" ") , I changed it to "!" and If you want change to another just put the hex code in that position. Note: Tested in 2012-05-25-RagexeRE.
    1 point
  4. OMG, it will also refine including those items that are not allowed to be refine like: ACCESSORIES and COSTUMES So your looking for and all item refiner? Here is one from Rikimaru. Searching never hurts Link : http://pastebin.com/RQkvaSRq
    1 point
  5. Well This is what i am using and it works fine. https://code.google.com/p/release-script/source/browse/PvP+Ladder.txt in case you do not have the PVP script. http://www.eathena.ws/board/index.php?showtopic=237765&start=0&p=1315276entry1315276 Hope this helped.
    1 point
  6. go to your trunk/npc/custom/.. paste it inside the custom folder then open.. which you can see that inside npc folder. scripts_custom or try this one " Click Me "
    1 point
  7. Hey Guys. Just wanted to show off one of my maps Faeris It was originally supposed to be a novice map for a server. Just thought i'd show it off. Hope you like it. Over View First Island Second Island Third Island Fourth Island Fifth Island Sixth Island Seventh Island Eighth 'Hidden' Island Bridges Connecting Islands Ingame Lighting Slanted View Anyways, just lemme know what you guys think. =]
    1 point
  8. yes i have tried cause my birthday is 0000-00-00 so i have put : 1 time 000000 and second time to test it 00000000 maybe my msgtring diff ? cause its very surprising i have the same error event with the right date and the wrong. bump* Ok Finally i found a method to let it work, I will explain it if other have bad time like me about this About deleted character on Ragexe 2013 : you follow @sharkto tuto about 2013 ragexe and when u try to delete you characters the date is in red ? Go and edit your char.c and look this : // success delete_date = time(NULL)+char_del_delay; once you find it replace it by : // success delete_date = #if PACKETVER >= 20130320 char_del_delay; #else time(NULL)+char_del_delay; #endif thx to ivanyan fir the fix _del Now you can press the del buttion but they told you to enter birthday date. if you re lucky like Brynner it ll work ; but for me it doesn't work at all. So to deleted your character you have to : change xml to langtype 1 and go diff your exe choose the following diff for deleting : - KOREA Service Type XML Fix - Only selected Login Background - Read Msgstringtable.txt - Use SSO login packet - extract msgstingtable.txt - extract txt files strings With this diff you ll be able to enter your email adress instead of your birthday, and the /showname guild will work in game. Hope it ll help other people
    1 point
  9. Enabling the mvplog does not automatically display all that info. I was just pointing out that by logging all MVP kills with the mvplog, you could use SQL queries to get that info.- How many times was _____ mvp killed? # count for single MVP (Eddga) SELECT COUNT(mvp_id) FROM mvplog WHERE monster_id=1115; # each MVP name, with count SELECT `kName`, COUNT(mvp_id) AS 'count' FROM mvplog LEFT JOIN ragnarok.mob_db ON mvplog.monster_id=mob_db.`ID` GROUP BY monster_id;- Who killed _____ mvp the most?# who killed Eddga the most? SELECT `name`,COUNT(mvp_id) FROM mvplog LEFT JOIN ragnarok.`char` ON mvplog.kill_char_id=`char`.char_id WHERE monster_id=1115 GROUP BY kill_char_id ORDER BY COUNT(mvp_id) DESC;- When was the last time _____ mvp was killed?# last time Eddga was killed SELECT * FROM mvplog WHERE monster_id=1115 ORDER BY mvp_id DESC LIMIT 1;- Who killed MVPs on maps they do not normally spawn on?# Eddga kills not on pay_fild11 or gld_dun01 SELECT * FROM mvplog WHERE monster_id=1115 AND (`map`!='pay_fild11' OR `map`!='gld_dun01');
    1 point
  10. https://rathena.org/board/index.php?/files/file/2506-%7B?%7D/
    1 point
×
×
  • Create New...