Jump to content

players

Members
  • Posts

    44
  • Joined

  • Last visited

Everything posted by players

  1. okay.. 9 Disable 1rag1 type parameters (Recommended) 13 Disable Ragexe Filename Check (Recommended) 16 Disable Swear Filter 18 Skip Service Selection Screen 19 Enable Title Bar Menu 23 Enable /who command (Recommended) 24 Fix Camera Angles (Recommended) 31 Increase Zoom Out 75% 33 Always Call SelectKoreaClientInfo() (Recommended) 34 Enable /showname (Recommended) 35 Read Data Folder First 37 Read questid2display.txt (Recommended) 38 Remove Gravity Ads (Recommended) 39 Remove Gravity Logo (Recommended) 40 Restore Login Window (Recommended) 41 Disable Nagle Algorithm (Recommended) 46 Use Normal Guild Brackets (Recommended) 47 Use Ragnarok Icon 48 Use Plain Text Descriptions (Recommended) 49 Enable Multiple GRFs (Recommended) 53 Use Ascii on All LangTypes (Recommended) 61 Disable Packet Encryption 64 @ Bug Fix (Recommended) 76 Enforce Official Login Background 84 Remove Serial Display (Recommended) 86 Only First Login Background 90 Enable DNS Support (Recommended) 91 Disconnect to Login Window 97 Cancel to Login Window (Recommended) 208 Restore Cash Shop Icon 212 Restore Roulette 213 Disable Help Message on Login (Recommended) 215 Increase Map Quality 222 Show Replay Button 225 Show Register Button
  2. Just changed to : 1. clif.h enum { // packet DB MIN_PACKET_DB = 0x064, MAX_PACKET_DB = 0xAFF, MAX_PACKET_VER = 56, MAX_PACKET_POS = 20, }; 2. utils.c else if(date < 20151001) return 53; else if(date < 20151104) return 54; else if(date < 20170125) return 55; else if(date >= 20170125) return 56; else return 30; //default 3. packet_db.txt packet_db_ver: 56 //packet_db_ver: default packet_keys_use: default // 2017-01-25aRagexe packet_ver: 56 packet_keys: 0x066E04FE,0x3004224A,0x04FF0458 0x0438,7,actionrequest,2:6 0x0879,10,useskilltoid,2:4:6 0x0930,5,walktoxy,2 0x0943,6,ticksend,2 0x0881,5,changedir,2:4 0x087B,6,takeitem,2 0x0877,6,dropitem,2:4 0x091C,8,movetokafra,2:4 0x095C,8,movefromkafra,2:4 0x092B,10,useskilltopos,2:4:6:8 0x089B,90,useskilltoposinfo,2:4:6:8:10 0x0965,6,getcharnamerequest,2 0x0898,6,solvecharname,2 0x0929,12,searchstoreinfolistitemclick,2:6:10 0x0968,2,searchstoreinfonextpage,0 0x093C,-1,searchstoreinfo,2:4:5:9:13:14:15 0x087D,-1,reqtradebuyingstore,2:4:8:12 0x091B,6,reqclickbuyingstore,2 0x091D,2,reqclosebuyingstore,0 0x08A5,-1,reqopenbuyingstore,2:4:8:9:89 0x0944,18,bookingregreq,2:4:6 //0x0884,8 CZ_JOIN_BATTLE_FIELD 0x0895,-1,itemlistwindowselected,2:4:8:12 0x0811,19,wanttoconnection,2:6:10:14:18 0x086E,26,partyinvite2,2 //0x0894,4 CZ_GANGSI_RANK 0x0920,26,friendslistadd,2 0x0876,5,hommenu,2:4 0x0893,36,storagepassword,2:4:20 Attached error screenshot. @hazimjauhari90 How about my client profile log? is there any problem? Thanks. Need help. Thanks.
  3. already done that too...by the way please check your hangouts chat my friend. Thanks.
  4. Already tried and still can't run the client Anyway this is what i've changed : 1. mmo.h #ifndef PACKETVER #define PACKETVER 20170125 //#define PACKETVER 20120410 #endif 2. core.h /// Comment to disable the official packet obfuscation support. /// When enabled, make sure there is value for 'packet_keys' of used packet version or /// defined 'packet_keys_use' in db/[import/]packet_db.txt. /// This requires PACKETVER 2011-08-17 or newer. #define PACKET_OBFUSCATION 3. clif.c /// Notifies the client, that it's connection attempt was accepted. /// 0073 <start time>.L <position>.3B <x size>.B <y size>.B (ZC_ACCEPT_ENTER) /// 02eb <start time>.L <position>.3B <x size>.B <y size>.B <font>.W (ZC_ACCEPT_ENTER2) /// 0a18 <start time>.L <position>.3B <x size>.B <y size>.B <font>.W <sex>.B (ZC_ACCEPT_ENTER3) void clif_authok(struct map_session_data *sd) { #if PACKETVER < 20080102 const int cmd = 0x73; #elif PACKETVER < 20141022 const int cmd = 0x2eb; #elif PACKETVER < 20161228 <-- ( change it to 20170125 not make any difference ) const imt cmd = 0xa18; #else const int cmd = 0x2eb; #endif int fd = sd->fd; 4. clif.h enum { // packet DB MIN_PACKET_DB = 0x064, MAX_PACKET_DB = 0xAFF, MAX_PACKET_VER = 56, MAX_PACKET_POS = 20, 5. packet db // 2017-01-25aRagexe packet_ver: 57 packet_keys: 0x066E04FE,0x3004224A,0x04FF0458 0x0438,7,actionrequest,2:6 0x0879,10,useskilltoid,2:4:6 0x0930,5,walktoxy,2 0x0943,6,ticksend,2 0x0881,5,changedir,2:4 0x087B,6,takeitem,2 0x0877,6,dropitem,2:4 0x091C,8,movetokafra,2:4 0x095C,8,movefromkafra,2:4 0x092B,10,useskilltopos,2:4:6:8 0x089B,90,useskilltoposinfo,2:4:6:8:10 0x0965,6,getcharnamerequest,2 0x0898,6,solvecharname,2 0x0929,12,searchstoreinfolistitemclick,2:6:10 0x0968,2,searchstoreinfonextpage,0 0x093C,-1,searchstoreinfo,2:4:5:9:13:14:15 0x087D,-1,reqtradebuyingstore,2:4:8:12 0x091B,6,reqclickbuyingstore,2 0x091D,2,reqclosebuyingstore,0 0x08A5,-1,reqopenbuyingstore,2:4:8:9:89 0x0944,18,bookingregreq,2:4:6 //0x0884,8 CZ_JOIN_BATTLE_FIELD 0x0895,-1,itemlistwindowselected,2:4:8:12 0x0811,19,wanttoconnection,2:6:10:14:18 0x086E,26,partyinvite2,2 //0x0894,4 CZ_GANGSI_RANK 0x0920,26,friendslistadd,2 0x0876,5,hommenu,2:4 0x0893,36,storagepassword,2:4:20 6. utils.c else if(date < 20141022) return 50; else if(date < 20150513) return 51; else if(date < 20150916) return 52; else if(date < 20151001) return 53; else if(date < 20151104) return 54; else if(date < 20170125) return 55; else if(date >= 20170125) return 56; else return 30; //default 7. PROFILE LOG NEMO Attached. Thanks guys. 20170125 Profile.log
  5. Hi Guys, i already follow instruction from first page until last page and using 2017 latest kro client still cannot make it work....the rejected from server (3) and character number keep pop out after login id. how to solve it? need help. Thanks in advanced.
  6. This is my inter_athena.conf, would you mind to check it? Thanks. inter_athena.conf
  7. Sorry for silly question, how to apply that sql file? copy to upgrades folder? and execute on what sql? thanks.
  8. Already did, still got that error messages, any solution?
  9. Dear Rathena Friends, I have an issue, after updating my SVN and compiling it, i got an error like in attached screenshot. Anyone can help? Thanks in advance.
  10. Already reload item db and nothing works, it's weird really...and for the transform effect i have not check the Faceworm in mob db is commented or not <-- this really matter too?
  11. Yeah i know, before this Abrasive working perfectly fine, the Faceworm transform effect working on your server too?
  12. Dear Rathena friends, There are 2 items i want ask for : - Abrasive item not working even though the item script is in there, the critical amount is not added after using Abrasive ( known for add crit + 30 ) - Faceworm Queen Leg transform effect not working Any solution how to fix this 2 items? Thanks in advance.
  13. Working fine, only transform effect doesn't
  14. Hi! as subject, the faceworm queen leg does not function properly, it missing the earthquake skill and faceworm transforming in item description 13089,FaceWorm_Leg,FaceWorm Leg,5,10,,500,0:50,110,,1,0x3FFFFFFF,63,2,2,3,24,1,1,{ bonus bAtkEle,Ele_Poison; },{},{} 13090,Faceworm_Queen's_Leg,Faceworm Queen's Leg,5,10,,500,180:120,,,2,0x028F5EEF,63,2,2,4,100,1,1,{ bonus bInt,3; },{},{} Anyone willing to share the item description to make it fully working? Thanks for your help.
×
×
  • Create New...