Jump to content

Rejected from the Server (3)


Mirage25

Recommended Posts


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  37
  • Reputation:   6
  • Joined:  10/12/15
  • Last Seen:  

Need help mga, Sirs. I've been trying to solve this problem pero hindi yata na so-solve ito -.-

packet_db :

 

Quote

// packet_keys values are default value for each packet version, if no value
// or value is 'default' in packet_keys_use, server will uses default keys
// according to used packet_db_ver. packet_keys_use is user-defined keys.
// Maximum key value is 0x7FFFFFFF.
// NOTE: Keys won't be reloaded, initialized on first load only.
//
//packet_db_ver: 46
packet_db_ver: 30
packet_keys_use: 30

mmo.h

 

Quote

 

// server->client protocol version
//        0 - pre-?
//        1 - ?                    - 0x196
//        2 - ?                    - 0x78, 0x79
//        3 - ?                    - 0x1c8, 0x1c9, 0x1de
//        4 - ?                    - 0x1d7, 0x1d8, 0x1d9, 0x1da
//        5 - 2003-12-18aSakexe+   - 0x1ee, 0x1ef, 0x1f0, ?0x1c4, 0x1c5?
//        6 - 2004-03-02aSakexe+   - 0x1f4, 0x1f5
//        7 - 2005-04-11aSakexe+   - 0x229, 0x22a, 0x22b, 0x22c
// see conf/battle/client.conf for other version

#ifndef PACKETVER
    //#define PACKETVER 20130807
    #define PACKETVER 20120410
#endif

 

Sana may makatulong po thx :

 

ROlogin.png.4ef1ae2759aee7f2166379987b0a1098.png)diffed.png.5f8543dd0a89963a4b7cf982924e4105.png

okreport.bmp

 

Edited by ridiculed25
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  1535
  • Reputation:   237
  • Joined:  08/03/12
  • Last Seen:  

can u show us log from putty when u login ?
and also your clientinfo.xml

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  1137
  • Reputation:   290
  • Joined:  04/29/13
  • Last Seen:  

I think it is pocket obsession, try disabling it in core.h and recompile 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  37
  • Reputation:   6
  • Joined:  10/12/15
  • Last Seen:  

client.bmp -clientinfo

Core.h

 

Quote

// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder

#ifndef    _CORE_H_
#define    _CORE_H_

/* so that developers with --enable-debug can raise signals from any section of the code they'd like */
#ifdef DEBUG
    #include <signal.h>
#endif

extern int arg_c;
extern char **arg_v;

#if defined(BUILDBOT)
    extern int buildbotflag;
#endif

#define UNKNOWN_VERSION '\x02'

/// @see E_CORE_ST
extern int runflag;
extern char *SERVER_NAME;
extern char db_path[12]; /// relative path for db from servers

enum {
    ATHENA_SERVER_NONE = 0,    // not defined
    ATHENA_SERVER_LOGIN    = 1,    // login server
    ATHENA_SERVER_CHAR = 2,    // char server
    ATHENA_SERVER_INTER    = 4,    // inter server
    ATHENA_SERVER_MAP = 8,    // map server
};

extern char SERVER_TYPE;

extern int parse_console(const char* buf);
const char *get_svn_revision(void);
const char *get_git_hash(void);
extern int do_init(int,char**);
extern void set_server_type(void);
extern void do_abort(void);
extern void do_final(void);

/// The main loop continues until runflag is CORE_ST_STOP
enum E_CORE_ST
{
    CORE_ST_STOP = 0,
    CORE_ST_RUN,
    CORE_ST_LAST
};

/// Called when a terminate signal is received. (Ctrl+C pressed)
/// If NULL, runflag is set to CORE_ST_STOP instead.
extern void (*shutdown_callback)(void);

#endif /* _CORE_H_ */
 

Mga 3days ko na hinahanap kung ano ang mali ko. Napagana ko to noon kasi ito yung testing area ko sa mga NPCs na ginagawa ko noon -.-

Edited by ridiculed25
Link to comment
Share on other sites

  • 3 weeks later...

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  37
  • Reputation:   6
  • Joined:  10/12/15
  • Last Seen:  

Solved!

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
Reply to this topic...

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