Jump to content
  • 0

how to fix it Disconnect from sever


olemancharter

Question


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  03/22/18
  • Last Seen:  

what happen? 

and how to fix

 

Thanks a lot.

Capture.JPG

Capture2.JPG

Link to comment
Share on other sites

22 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  99
  • Topics Per Day:  0.02
  • Content Count:  623
  • Reputation:   94
  • Joined:  05/11/12
  • Last Seen:  

Just read what the console says, it is saying exactly the problem.
Des

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  99
  • Topics Per Day:  0.02
  • Content Count:  623
  • Reputation:   94
  • Joined:  05/11/12
  • Last Seen:  

Enable packet obscuration on the client.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  61
  • Topics Per Day:  0.02
  • Content Count:  911
  • Reputation:   166
  • Joined:  11/27/14
  • Last Seen:  

The first warning says' You are using unsupported pocket' check your packet version that putted in packet.h in SRC . 2nd you are using a client side with enabled packet obs so since its enabled in your server files enabled it also lol .

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  1182
  • Reputation:   160
  • Joined:  06/12/12
  • Last Seen:  

12 hours ago, olemancharter said:

what happen? 

and how to fix

 

Thanks a lot.

Capture.JPG

Capture2.JPG

go to src\config\packet.h

look at this part

Quote

#if PACKETVER >= 20110817
    /// Comment to disable the official packet obfuscation support.
    /// This requires PACKETVER 2011-08-17 or newer.
    #ifndef PACKET_OBFUSCATION
        //#define PACKET_OBFUSCATION

        // Define these inside src/custom/defines_pre.h or src/custom/defines_post.h
        //#define PACKET_OBFUSCATION_KEY1 <key1>
        //#define PACKET_OBFUSCATION_KEY2 <key2>
        //#define PACKET_OBFUSCATION_KEY3 <key3>

        /// Comment this to disable warnings for missing client side encryption
        #define PACKET_OBFUSCATION_WARN
    #endif
#else
    #if defined(PACKET_OBFUSCATION)
        #error You enabled packet obfuscation for a version which is too old. Minimum supported client is 2011-08-17.
    #endif
#endif
 

Give comment like in my qoute (red colour)

after that recompile your server

Edited by hendra814
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  03/22/18
  • Last Seen:  

21 hours ago, hendra814 said:

go to src\config\packet.h

look at this part

Give comment like in my qoute (red colour)

after that recompile your server

my mind

Quote

// Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder
#ifndef _CONFIG_PACKETS_H_
#define _CONFIG_PACKETS_H_

/**
 * rAthena configuration file (http://rathena.org)
 * For detailed guidance on these check http://rathena.org/wiki/SRC/config/
 **/

#ifndef PACKETVER
    /// Do NOT edit this line! To set your client version, please do this instead:
    /// In Windows: Add this line in your src\custom\defines_pre.h file: #define PACKETVER YYYYMMDD
    /// In Linux: The same as above or run the following command: ./configure --enable-packetver=YYYYMMDD
    #define PACKETVER 20151029
#endif

#ifndef PACKETVER_RE
    /// From this point on only kRO RE clients are supported
    #if PACKETVER > 20151104
        #define PACKETVER_RE
    #endif
#endif

#if PACKETVER >= 20110817
    /// Comment to disable the official packet obfuscation support.
    /// This requires PACKETVER 2011-08-17 or newer.
    #ifndef PACKET_OBFUSCATION
        #define PACKET_OBFUSCATION

        // Define these inside src/custom/defines_pre.h or src/custom/defines_post.h
        //#define PACKET_OBFUSCATION_KEY1 0x12b21155
        //#define PACKET_OBFUSCATION_KEY2 0x1200d441
        //#define PACKET_OBFUSCATION_KEY3 0x1002012b

        /// Comment this to disable warnings for missing client side encryption
        #define PACKET_OBFUSCATION_WARN
    #endif
#else
    #if defined(PACKET_OBFUSCATION)
        #error You enabled packet obfuscation for a version which is too old. Minimum supported client is 2011-08-17.
    #endif
#endif

#ifndef DUMP_UNKNOWN_PACKET
    //#define DUMP_UNKNOWN_PACKET
#endif

#ifndef DUMP_INVALID_PACKET
    //#define DUMP_INVALID_PACKET
#endif

/**
 * No settings past this point
 **/

/// Check if the specified packetversion supports the pincode system
#define PACKETVER_SUPPORTS_PINCODE PACKETVER >= 20110309

/// Check if the client needs delete_date as remaining time and not the actual delete_date (actually it was tested for clients since 2013)
#define PACKETVER_CHAR_DELETEDATE (PACKETVER > 20130000 && PACKETVER <= 20141022) || PACKETVER >= 20150513

/// Check if the specified packetvresion supports the cashshop sale system
#define PACKETVER_SUPPORTS_SALES PACKETVER >= 20131223

#endif // _CONFIG_PACKETS_H_

Please Help T T.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  1182
  • Reputation:   160
  • Joined:  06/12/12
  • Last Seen:  

5 minutes ago, olemancharter said:

my mind

Please Help T T.

if you want use packet encyption when diff your client

put the key in this option

2018-03-28_112204.jpg.f1e62401161b74d5e9a55c1f9e40fdf6.jpg

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  03/22/18
  • Last Seen:  

35 minutes ago, hendra814 said:

if you want use packet encyption when diff your client

put the key in this option

2018-03-28_112204.jpg.f1e62401161b74d5e9a55c1f9e40fdf6.jpg

trun it green right?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  1182
  • Reputation:   160
  • Joined:  06/12/12
  • Last Seen:  

21 minutes ago, olemancharter said:

trun it green right?

Yup, and how is it now?

is it working?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  03/22/18
  • Last Seen:  

30 minutes ago, hendra814 said:

Yup, and how is it now?

is it working?

Not work T T.

Capture3.JPG

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  03/22/18
  • Last Seen:  

23 hours ago, hendra814 said:

go to src\config\packet.h

look at this part

Give comment like in my qoute (red colour)

after that recompile your server

it work thank a lot

do u have any data + exe to support this config?

i need to download it :)

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  1182
  • Reputation:   160
  • Joined:  06/12/12
  • Last Seen:  

11 minutes ago, olemancharter said:

it work thank a lot

do u have any data + exe to support this config?

i need to download it :)

Are you mean server and client support PACKET OBFUSCATION with 2015-10-29 client?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  61
  • Topics Per Day:  0.02
  • Content Count:  911
  • Reputation:   166
  • Joined:  11/27/14
  • Last Seen:  

5 hours ago, olemancharter said:

it work thank a lot

do u have any data + exe to support this config?

i need to download it :)

Suggested to use our stable client exe. 2015-11-04

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  03/22/18
  • Last Seen:  

19 hours ago, hendra814 said:

Are you mean server and client support PACKET OBFUSCATION with 2015-10-29 client?

Do u have data folder for download?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  1182
  • Reputation:   160
  • Joined:  06/12/12
  • Last Seen:  

1 minute ago, olemancharter said:

Do u have data folder for download?

i'm currently using zackdreaver data translation folder

https://github.com/zackdreaver/ROenglishRE

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  03/22/18
  • Last Seen:  

44 minutes ago, hendra814 said:

i'm currently using zackdreaver data translation folder

https://github.com/zackdreaver/ROenglishRE

how to set up Nemo on your diff file?

Edited by olemancharter
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  1182
  • Reputation:   160
  • Joined:  06/12/12
  • Last Seen:  

1 hour ago, olemancharter said:

how to set up Nemo on your diff file?

this is my nemo log for 2015-10-29 client

Spoiler
Quote

8 Custom Window Title
9 Disable 1rag1 type parameters (Recommended)
10 Disable 4 Letter Character Name Limit
11 Disable 4 Letter User Name Limit
12 Disable 4 Letter Password Limit
13 Disable Ragexe Filename Check (Recommended)
19 Enable Title Bar Menu
20 Extend Chat Box
21 Extend Chat Room Box
22 Extend PM Box
23 Enable /who command (Recommended)
24 Fix Camera Angles (Recommended)
28 Increase Headgear ViewID
29 Disable Game Guard (Recommended)
33 Always Call SelectKoreaClientInfo() (Recommended)
34 Enable /showname (Recommended)
35 Read Data Folder First
36 Read msgstringtable.txt (Recommended)
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)
43 Always Use Email for Char Deletion
44 Translate Client (Recommended)
46 Use Normal Guild Brackets (Recommended)
47 Use Ragnarok Icon
48 Use Plain Text Descriptions (Recommended)
49 Enable Multiple GRFs (Recommended)
51 Always Show License Screen
53 Use Ascii on All LangTypes (Recommended)
61 Disable Packet Encryption
63 Use Official Cloth Palettes
64 @ Bug Fix (Recommended)
65 Load Custom lua file instead of iteminfo*.lub
68 Enable 64k Hairstyle
71 Ignore Resource Errors
72 Ignore Missing Palette Error
73 Remove Hourly Announce (Recommended)
76 Enforce Official Login Background
77 Enable Custom 3D Bones
84 Remove Serial Display (Recommended)
85 Show Cancel To Service Select
86 Only First Login Background
88 Allow space in guild name
90 Enable DNS Support (Recommended)
91 Disconnect to Login Window
97 Cancel to Login Window (Recommended)
104 Increase Hair Style & Color Limits
205 Enable Monster Tables
213 Disable Help Message on Login (Recommended)
222 Show Replay Button
 

 

and 2015-10-29 could be download at this rathena thread https://rathena.org/board/topic/104205-2015-client-support/

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  03/22/18
  • Last Seen:  

13 minutes ago, hendra814 said:

this is my nemo log for 2015-10-29 client

  Hide contents

 

and 2015-10-29 could be download at this rathena thread https://rathena.org/board/topic/104205-2015-client-support/

 

T T

Capture4.JPG

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  1182
  • Reputation:   160
  • Joined:  06/12/12
  • Last Seen:  

9 minutes ago, olemancharter said:

T T

Capture4.JPG

that's your lua files problem

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  03/22/18
  • Last Seen:  

3 minutes ago, hendra814 said:

that's your lua files problem

how to fix?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  1182
  • Reputation:   160
  • Joined:  06/12/12
  • Last Seen:  

16 minutes ago, olemancharter said:

how to fix?

Are you already use zack data translation files?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  03/22/18
  • Last Seen:  

18 minutes ago, hendra814 said:

Are you already use zack data translation files?

yes

 

2 hours ago, hendra814 said:

i'm currently using zackdreaver data translation folder

https://github.com/zackdreaver/ROenglishRE

i use this file

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  1182
  • Reputation:   160
  • Joined:  06/12/12
  • Last Seen:  

9 minutes ago, olemancharter said:

yes

 

i use this file

are you still use packet encryption?

if not try use my client https://drive.google.com/file/d/1oCrl_5XwZ8B_oUmMDpMKiqQv2BB7XJVV/view?usp=sharing

and my data folder https://drive.google.com/file/d/1S0nlu29nNYGoyk6sXhvXmaTPbMk5YfUU/view?usp=sharing

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...