Mirage25 Posted March 28, 2017 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 37 Reputation: 6 Joined: 10/12/15 Last Seen: January 31, 2024 Share Posted March 28, 2017 (edited) 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 : ) okreport.bmp Edited March 28, 2017 by ridiculed25 Quote Link to comment Share on other sites More sharing options...
Chaos92 Posted March 28, 2017 Group: Members Topic Count: 49 Topics Per Day: 0.01 Content Count: 1826 Reputation: 288 Joined: 08/03/12 Last Seen: 5 minutes ago Share Posted March 28, 2017 can u show us log from putty when u login ? and also your clientinfo.xml Quote Link to comment Share on other sites More sharing options...
Cyro Posted March 28, 2017 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 1138 Reputation: 290 Joined: 04/29/13 Last Seen: July 20, 2024 Share Posted March 28, 2017 I think it is pocket obsession, try disabling it in core.h and recompile Quote Link to comment Share on other sites More sharing options...
Mirage25 Posted March 28, 2017 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 37 Reputation: 6 Joined: 10/12/15 Last Seen: January 31, 2024 Author Share Posted March 28, 2017 (edited) 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 March 28, 2017 by ridiculed25 Quote Link to comment Share on other sites More sharing options...
Mirage25 Posted April 12, 2017 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 37 Reputation: 6 Joined: 10/12/15 Last Seen: January 31, 2024 Author Share Posted April 12, 2017 Solved! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.