Jump to content

Eroces

Members
  • Posts

    135
  • Joined

  • Last visited

Everything posted by Eroces

  1. One question. Is it possible to restrict users from opening the game directly by using the client? I want them to use the patcher every time. Edit: Solved.
  2. Try 2011-03-15 with these settings. mmo.h #ifndef PACKETVER #define PACKETVER 20110315 //#define PACKETVER 20111116 #endif packet_db // Main packet version of the DB to use (default = max available version) // Client detection is faster when all clients use this version. // Version 23 is the latest Sakexe (above versions are for Renewal clients) //packet_db_ver: 25 packet_db_ver: 28 //2011-03-15aRagexeRE 0x01FD,15,repairitem,2 0x0202,26,friendslistadd,2 0x022D,5,hommenu,2:4 0x023B,36,storagepassword,0 0x0288,-1,cashshopbuy,4:8 0x02C4,26,partyinvite2,2 0x0436,19,wanttoconnection,2:6:10:14:18 0x0437,7,actionrequest,2:6 0x0438,10,useskilltoid,2:4:6 0x0439,8,useitem,2:4 0x07E4,-1,itemlistwindowselected,2:4:8 0x0802,18,bookingregreq,2:4:6 0x0803,4 0x0804,14,bookingsearchreq,2:4:6:8:12 0x0805,-1 0x0806,2,bookingdelreq,0 0x0807,4 0x0808,14,bookingupdatereq,2 0x0809,50 0x080A,18 0x080B,6 0x0811,-1,reqopenbuyingstore,2:4:8:9:89 0x0815,2,reqclosebuyingstore,0 0x0817,6,reqclickbuyingstore,2 0x0819,-1,reqtradebuyingstore,2:4:8:12 0x0835,-1,searchstoreinfo,2:4:5:9:13:14:15 0x0838,2,searchstoreinfonextpage,0 0x083C,12,searchstoreinfolistitemclick,2:6:10 0x035F,5,walktoxy,2 0x0360,6,ticksend,2 0x0361,5,changedir,2:4 0x0362,6,takeitem,2 0x0363,6,dropitem,2:4 0x0364,8,movetokafra,2:4 0x0365,8,movefromkafra,2:4 0x0366,10,useskilltopos,2:4:6:8 0x0367,90,useskilltoposinfo,2:4:6:8:10 0x0368,6,getcharnamerequest,2 0x0369,6,solvecharname,2 clientinfo.xml <version>28</version>
  3. You should be using Visual C++ not Visual Basic. http://www.microsoft.com/en-us/download/details.aspx?id=5555
  4. http://eathena.ws/wiki/index.php/Hexing Or you could follow Judas' guide.
  5. You can either use an old client or edit char_athena.conf. // Amount of time in seconds by which the character deletion is delayed. // Default: 86400 (24 hours) // NOTE: Requires client 2010-08-03aragexeRE or newer. char_del_delay: 86400
  6. You need to define the function in your clif.h. Just add the following line above #endif /* _CLIF_H_ */ void clif_status_change_single(struct block_list *dst, struct block_list *bl, int type, int flag, unsigned int tick, int val1, int val2, int val3);
  7. What were you doing when you had this error?
  8. You just have to find it on your battle.c and play with the skillratio.
  9. Did you edit your mmo.h PACKETVER? It's must match the date of your client. Otherwise, NPCs and mobs won't show.
  10. Yes, MySQL must be running on your PC. You'll need MySQL Server and Workbench. If you set them up correctly by following Judas' guide, all you need to change on your inter_athena.conf is the database password.
  11. You need to comment out #define RENEWAL_CAST. Save and recompile. src\config\renewal.h /// renewal cast time /// (disable by commenting the line) /// /// leave this line to enable renewal casting time algorithms /// cast time is decreased by DEX * 2 + INT while 20% of the cast time is not reduced by stats. /// example: /// on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a /// "fixed cast time" which can only be reduced by specialist items and skills #define RENEWAL_CAST
  12. Any server errors after you get disconnected?
  13. Install TortoiseSVN. Right click on your rAthena folder and click SVN Update.
  14. Edit your battle.c. Don't forget to recompile. case SR_GATEOFHELL: if( sc && sc->data[sC_COMBO] && sc->data[sC_COMBO]->val1 == SR_FALLENEMPIRE ) skillratio += 800 * skill_lv -100; else skillratio += 500 * skill_lv -100; RE_LVL_DMOD(100); break;
  15. homunc.conf // The rate a homunculus will get friendly by feeding it. (Note 2) homunculus_friendly_rate: 100
×
×
  • Create New...