Jump to content

Eroces

Members
  • Posts

    135
  • Joined

  • Last visited

Everything posted by Eroces

  1. You should have that file in your RO folder when you run the patcher.
  2. I am assuming that you are using Thor Patcher. Delete server.dat on your folder and run the patcher again to see if it really patches.
  3. Happy Birthday Emistry! May you have more birthdays and scripts to come! Yes, you deserve a topic. Haha.
  4. http://rathena.org/wiki/Installation_on_Windows
  5. There must be something wrong with your configuration. It would help if you post a screenshot of your mapserv-sql if there are any errors.
  6. I'm not so sure how it works either. I never worked on a PK server. If I understand it correctly, I think you need to make it 1.
  7. Have you tried editing this? // For PK Server Mode. It specifies the maximum level difference between // players to let them attack each other. 0 disables said limit. pk_level_range: 0
  8. Are you using rAthena? I'm not having any problems with the script. parse_line: expect command, missing function name or calling undeclared function This comes up when a function you are trying to call doesn't exist.
  9. Try removing - script WoR#disable -1,{ OnInit: hideoffnpc "Rune of War#WoR"; hideoffnpc "Rune of War#banker"; end; }
  10. 1. Your kRO folder probably doesn't have the proper LUA files for the client. I'd personally recommend 2011-03-15. Haven't got any problems with it using the latest SVN. 2. Yes, you are right. You can flag certain skills in db\re\skill_nocast_db.txt 3. You can comment #define RENEWAL in src\config\renewal.h or change src\map\pc.c sp += (low < 100) ? (2 + (low - 1) / 10) : (16 + 4 * ((low - 100) / 5)); to sp += ( 1 + (low + 9) / 10 ); Save and recompile.
  11. src\config\renewal.h /// game renewal server mode /// (disable by commenting the line) /// /// leave this line to enable renewal specific support such as renewal formulas //#define RENEWAL Save and recompile.
  12. Your mmo.h should be like this. Save and recompile. #define PACKETVER 20120410 Add this to your packet_db.txt //2012-04-10aRagexeRE 0x01FD,15,repairitem,2 0x089C,26,friendslistadd,2 0x0885,5,hommenu,2:4 0x0961,36,storagepassword,0 0x0288,-1,cashshopbuy,4:8 0x091C,26,partyinvite2,2 0x094B,19,wanttoconnection,2:6:10:14:18 0x0369,7,actionrequest,2:6 0x083C,10,useskilltoid,2:4:6 0x0439,8,useitem,2:4 0x0945,-1,itemlistwindowselected,2:4:8 0x0815,-1,reqopenbuyingstore,2:4:8:9:89 0x0817,2,reqclosebuyingstore,0 0x0360,6,reqclickbuyingstore,2 0x0811,-1,reqtradebuyingstore,2:4:8:12 0x0819,-1,searchstoreinfo,2:4:5:9:13:14:15 0x0835,2,searchstoreinfonextpage,0 0x0838,12,searchstoreinfolistitemclick,2:6:10 0x0437,5,walktoxy,2 0x0886,6,ticksend,2 0x0871,5,changedir,2:4 0x0938,6,takeitem,2 0x0891,6,dropitem,2:4 0x086C,8,movetokafra,2:4 0x08A6,8,movefromkafra,2:4 0x0438,10,useskilltopos,2:4:6:8 0x0366,90,useskilltoposinfo,2:4:6:8:10 0x0889,6,getcharnamerequest,2 0x0884,6,solvecharname,2 0x08E5,41,bookingregreq,0 //Added to prevent disconnections 0x08E6,4 0x08E7,10,bookingsearchreq,0 0x08E8,-1 0x08E9,2,bookingdelreq,0 0x08EA,4 0x08EB,39,bookingupdatereq,0 0x08EC,73 0x08ED,43 0x08EE,6 0x0907,5,moveitem,2:4 0x0908,5 2012-04-10 Lub+src Files [Translated].rar Make sure you diff your client with this plugin.
  13. Check your accname.lua. You might be missing a comma somewhere.
×
×
  • Create New...