Jump to content
  • 0

Character Creation Denied using 20180620 client


jigsam

Question


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  28
  • Reputation:   0
  • Joined:  09/21/13
  • Last Seen:  

Basically, i cannot create character at all...

creation.thumb.png.c748d586599cd6358b2166e4a5103103.png

I already try stuff, but nothing work..

 

1. Putting packet version #define PACKETVER 20180620 to mmo.h line 49 to bypass the packet... not working. Also i already try to put the new packet version packets.hpp and recompile it.

#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.hpp file: #define PACKETVER YYYYMMDD
    /// In Linux: The same as above or run the following command: ./configure --enable-packetver=YYYYMMDD
    #define PACKETVER 20180620
#endif

2. Removing the encryption on nemo + packet obfuscation. Not working.

#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.hpp or src/custom/defines_post.hpp
        //#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

 

3. Trying to recheck my database & update sql. Not working.

Nothing could work. At this point i'm really at y wits ends. Maybe because i set the sclientinfo langtype to 0? 

<?xml version="1.0" encoding="euc-kr" ?>
<clientinfo>
    <desc>Ragnarok Client Information</desc>
    <servicetype>american</servicetype>
    <servertype>primary</servertype>
    <connection>
        <display>Local</display>
              <address>127.0.0.1</address>
              <port>6900</port>
              <version>55</version>
              <langtype>0</langtype>
        <registrationweb></registrationweb>
        <loading>
            <image>loading00.jpg</image>
            <image>loading01.jpg</image>
            <image>loading02.jpg</image>
            <image>loading03.jpg</image>
            <image>loading04.jpg</image>
            <image>loading05.jpg</image>
            <image>loading06.jpg</image>
        </loading>
       </connection>
</clientinfo>

Edited by jigsam
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  28
  • Reputation:   0
  • Joined:  09/21/13
  • Last Seen:  

Nevermind... i found the errors.... Facepalm.

On char athena i put these...

// Manage possible letters/symbol in the name of charater. Control character (0x00-0x1f) are never accepted. Possible values are:
// NOTE: Applies to character, party and guild names.
// 0: no restriction (default)
// 1: only letters/symbols in 'char_name_letters' option.
// 2: Letters/symbols in 'char_name_letters' option are forbidden. All others are possibles.
char_name_option: 2

shouldve be 1
 

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  9
  • Reputation:   0
  • Joined:  08/31/17
  • Last Seen:  

On 12/22/2019 at 3:07 PM, jigsam said:

Nevermind... i found the errors.... Facepalm.

On char athena i put these...

// Manage possible letters/symbol in the name of charater. Control character (0x00-0x1f) are never accepted. Possible values are:
// NOTE: Applies to character, party and guild names.
// 0: no restriction (default)
// 1: only letters/symbols in 'char_name_letters' option.
// 2: Letters/symbols in 'char_name_letters' option are forbidden. All others are possibles.
char_name_option: 2

shouldve be 1
 

 

hi,i have a problem when i clickt the chareter,the client auto logout,izzit same with this problem?

 

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...