Jump to content

Albert

Members
  • Posts

    11
  • Joined

  • Last visited

Posts posted by Albert

  1. 11 minutes ago, hazimjauhari90 said:

    should be like this.

    
    4. src/common/utils.c
    
     else if(date < 20151104) return 54;
     else if(date < 20170125) return 55;
     else if(date >= 20170125) return 56;
    
     else return 30; //default

     

    Spoiler

     

    Thanks. I already changed and recompiled.

    However, I have still problem like "Rejected server connection(3)."

    If I choose "Disable Packet Encryption" in NEMO, I can see "Failed connect to server."

    Unless if I choose it in NEMO, I find "Rejected server connection(3) with "Disconnecting session #3 with unknown packet version (p:0x397f, l:19)".

    I still don't know what my server problem is...

  2. On ‎2017‎년 ‎7‎월 ‎1‎일 at 0:44 PM, Ciel Phantomhive said:

    Hello @Albert,

     

    disable PACKET_OBFUSCATION

    src/config/core.h

    
    //#define PACKET_OBFUSCATION

    don't forget to recompile the server

    Thanks but I already did it.. I still have problem not to connect to server..

  3. On ‎2017‎년 ‎6‎월 ‎30‎일 at 8:37 PM, hazimjauhari90 said:

    What the everything that u did? Perhaps u can comment it here. I cannot help if i dunno what the things & changes u have done.

    I see. it's my list to adjust sth.

    1. I added it in 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
     

    2. I also adjusted src/config/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. src/common/mmo.h

    #ifndef PACKETVER
     #define PACKETVER 20170125
     //#define PACKETVER 20120410

     

    4. src/common/utils.c

     else if(date < 20151104) return 54;
     else if(date < 20160203) return 55;
     else if(date >= 20170125) return 56;

     else return 30; //default
     

    5. src/map/clif.h

    enum { // packet DB
     MIN_PACKET_DB  = 0x064,
     MAX_PACKET_DB  = 0xAFF,
     MAX_PACKET_VER = 56,
     MAX_PACKET_POS = 20,

    then I compiled it again.

  4. On ‎2017‎년 ‎6‎월 ‎29‎일 at 2:07 PM, hazimjauhari90 said:

    I followed it but I have an error that "Disconnecting session #3 with unknown packet version (p:0x397f, l:19)."

    I did it everything but I still can't connect to server.

    Could you give me some helps? Thanks again.

     

  5. 31 minutes ago, hazimjauhari90 said:

    sinceu just use recommended patch, by default it enable packet encryption.

    just check those following:

    1st. db/packet_db.txt

    
    packet_db_ver: 56
    //packet_db_ver: default
    packet_keys_use: default
    
    // 2017-01-25aRagexe
    packet_keys: 0x066E04FE,0x3004224A,0x04FF0458
    packet_ver: 56
    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

    2nd. src/config/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

     

    Thank you. There is no error in server progress but I can't still connect to server with 'Failed server connection'..

  6. On ‎2017‎년 ‎6‎월 ‎25‎일 at 9:18 PM, hazimjauhari90 said:

    Do u patch disable packet encryption of ur client using nemo patcher?

    Thank you for ur answer.

    But unfortunately, I don't know how to patch it using nemo patcher.

    I just followed to use nemo with select recommended button and there was some errors with patch..

    Plz let me know how to patch it. Thanks.

  7. Hello, there. I tried this guides that's why I can connect to server with this client.

    However, I can see my characters but I can't login because of "Rejected server connection(3)."

    Could anyone help me?

    제목 없음.jpg

  8. Hello, everyone guys. I'm sorry for my poor English.

     

    I downloaded client and fixed packet, and then I complied it..

     

    But I can see only that message which is NO MSG(30), somtimes NO MSG(5011) in the picture.

     

    I want to know how I can log-in my server.

     

    Can someone help me ?

     

    Client date is 2014-04-16 and packet ver. is 47.

     

    Thank you for your attention.

    post-32680-0-64080000-1430445487_thumb.jpg

×
×
  • Create New...