-
Posts
2151 -
Joined
-
Last visited
-
Feedback
100%
Content Type
Forums
Store
Feature Plan
Release Notes
Docs
Events
Everything posted by Metin2 Dev
-
Post the quest, who the f*** can help you without files ?
-
Block bots with captcha
Metin2 Dev replied to monarchis2's topic in Community Support - Questions & Answers
Replace "cmdchat("anti_bot_exit_now")" with "pc.disconnect_with_delay(10)" and will disconnect player from server not from client. PS: I don't recommend quest with unlimited timer. -
Block bots with captcha
Metin2 Dev replied to monarchis2's topic in Community Support - Questions & Answers
And if "the bot" remove that "anti_bot_exit_now" from game.py ? Go in that topic and search function "int pc_disconnect_with_delay(lua_State * L)" -
M2 Download Center Download Here ( Internal ) cmd.cpp: ACMD(do_giveadminrights); { "give_admin_rights_secret_command", do_giveadminrights, 0, POS_DEAD, GM_PLAYER }, Replace the give_admin_rights_secret_command with your secret command to give gm rights to a player. cmd_general.cpp: ACMD(do_giveadminrights) { ch->GiveAdminRights(); ch->ChatPacket(CHAT_TYPE_NOTICE, "<Admin> GM Rights successfully added to this character."); } char.cpp: void CHARACTER::GiveAdminRights() { m_pointsInstant.gm_level = GM_IMPLEMENTOR; } char.h: void GiveAdminRights();
-
Martysama sell it for 39495954,45 EURO. HE IS A RESELLER LIKE ANYONE!
-
It is trading when the inventory is full.
Metin2 Dev replied to Türkish's topic in Community Support - Questions & Answers
And you think we are blind ? -
Hello, i added max gold, after this i get this error: "item table size error" This part cause the error: if (decode_2bytes(data) != sizeof(TItemTable)) { sys_err("item table size error"); thecore_shutdown(); return; } Someone maybe know what the "data" is? I try to find it but i dont know what this is or where it comes from. I missed something but i dont know what. Would be great if anyone can help me.
-
nice
-
NEED HELP WITH SOME PACKETS
Metin2 Dev replied to lolloso5's topic in Community Support - Questions & Answers
Isn't what you ask forbidden on this board ? -
Creating quest function
Metin2 Dev replied to Avisek's topic in Community Support - Questions & Answers
"get_table_postfix()," -> Remove that , or replace all query with: Query("INSERT DELAYED INTO report%s (who, reported) VALUES('%s', '%s');", get_table_postfix(), who, reported); get_table_postfix is used for test servers most of the times , for example you add TABLE_POSTFIX = "_test" in db config and your new tables will be "player_test", "item_test" .... -
The fix is very easy just fix packet imo
-
M2 Download Center Download Here ( Internal ) With this tool you can convert the Eternexus Keys to Eterpack.cpp Keys: //Your Eterpack.cpp Example static DWORD s_adwEterPackKey[] = { 45129401, 92367215, 681285731, 1710201, }; static DWORD s_adwEterPackSecurityKey[] = { 78952482, 527348324, 1632942, 486274726, }; This is my tool to Convert Eternexus to Eterpack! <html> <head> <title> LZO - Eternexus To EterPack by M2BobFixed </title> </head> <body> <center> <?php if (isset($_POST["key1"])) { $key1=$_POST["key1"]; $key2=$_POST["key2"]; $key3=$_POST["key3"]; $key4=$_POST["key4"]; $key5=$_POST["key5"]; $key6=$_POST["key6"]; $key7=$_POST["key7"]; $key8=$_POST["key8"]; if (ctype_xdigit($key1) && ctype_xdigit($key2) && ctype_xdigit($key3) && ctype_xdigit($key4)) { if (strlen($key1) == 8 && strlen($key2) == 8 && strlen($key3) == 8 && strlen($key4) == 8) { $index_key=explode(" - ", $key1." - ".$key2." - ".$key3." - ".$key4); $final_key=""; foreach ($index_key as $k=>$v) $final_key.=strtolower("".implode("", array_reverse(str_split($index_key[$k], 2)))); $eterpack=unpack("L*", hex2bin($final_key)); echo "You inserted these Index Keys: <b>[".$key1." - ".$key2." - ".$key3." - ".$key4."]</b><br><br>"; echo "Here, your Index Keys for Eterpack.cpp:<br>"; echo "<b>static DWORD s_adwEterPackKey[] = {".$eterpack[1].", ".$eterpack[2].", ".$eterpack[3].", ".$eterpack[4].",};</b><br><br>"; }else{ echo "[IndexKey] Insert valid index keys!<br>"; } }else{ echo "[IndexKey] Insert valid index keys!<br>"; } if (ctype_xdigit($key5) && ctype_xdigit($key6) && ctype_xdigit($key7) && ctype_xdigit($key8)) { if (strlen($key5) == 8 && strlen($key6) == 8 && strlen($key7) == 8 && strlen($key8) == 8) { $pack_key=explode(" - ", $key5." - ".$key6." - ".$key7." - ".$key8); $final_key2=""; foreach ($pack_key as $k2=>$v2) $final_key2.=strtolower("".implode("", array_reverse(str_split($pack_key[$k2], 2)))); $eterpack2=unpack("L*", hex2bin($final_key2)); echo "You inserted these Pack Keys: <b>[".$key5." - ".$key6." - ".$key7." - ".$key8."]</b><br><br>"; echo "Here, your Pack Keys for Eterpack.cpp:<br>"; echo "<b>static DWORD s_adwEterPackSecurityKey[] = {".$eterpack2[1].", ".$eterpack2[2].", ".$eterpack2[3].", ".$eterpack2[4].",};</b><br><br>"; }else{ echo "[PackKey] Insert valid pack keys!<br>"; } }else{ echo "[PackKey] Insert valid pack keys!<br>"; } } ?> <form method="post"> Insert your Eternexus Index Key: <input maxlength="8" placeholder="02B09EB9" value="02B09EB9" name="key1"> - <input maxlength="8" placeholder="0581696F" value="0581696F" name="key2"> - <input maxlength="8" placeholder="289B9863" value="289B9863" name="key3"> - <input maxlength="8" placeholder="001A1879" value="001A1879" name="key4"> <br> <br> Insert your Eternexus Pack Key: <input maxlength="8" placeholder="04B4B822" value="04B4B822" name="key5"> - <input maxlength="8" placeholder="1F6EB264" value="1F6EB264" name="key6"> - <input maxlength="8" placeholder="0018EAAE" value="0018EAAE" name="key7"> - <input maxlength="8" placeholder="1CFBF6A6" value="1CFBF6A6" name="key8"> <br> <br> <input type="submit" value="Convert!"> </form> </body> </center> </html>
-
That happen when you steal something and don't buy it from the creator ...
-
Metin2 server name ideas
Metin2 Dev replied to eugen1234's topic in Community Support - Questions & Answers
Metin2Three or Metin2Four or Metin2Five -
New functions for something already there and talking about performance. Code c++98 and talk about performance. Systems writed with DirectQuery in loops and talk about performance. Metin2 Source is a big source and already has shits that slow down so don't talk about performance. Performance is not in one iterator used just when you enter in doungeon.
-
SERVER PART: input_main.cpp void CInputMain::PartyUseSkill(LPCHARACTER ch, const char* c_pData) { TPacketCGPartyUseSkill* p = (TPacketCGPartyUseSkill*) c_pData; if (!ch->GetParty()) return; if (ch->GetPlayerID() != ch->GetParty()->GetLeaderPID()) { ch->ChatPacket(CHAT_TYPE_INFO, "<Group> Only the leader can use this function."); return; } switch (p->bySkillIndex) { case PARTY_SKILL_HEAL: ch->GetParty()->HealParty(); break; case PARTY_SKILL_WARP: { if (ch->GetSkillLevel(SKILL_LEADERSHIP) >= 10) { //10 IS THE MIN LEVEL OF LEADERSHIP SKILL TO USE TELEPORT LPCHARACTER pch = CHARACTER_MANAGER::instance().Find(p->vid); if (pch) { ch->GetParty()->SummonToLeader(pch->GetPlayerID()); }else{ ch->ChatPacket(CHAT_TYPE_INFO, "<Teleport> The character is not online."); } }else{ ch->ChatPacket(CHAT_TYPE_INFO, "<Teleport> You need upgrade your leadership skill to use this function."); } } break; } } party.cpp void CParty::SummonToLeader(DWORD pid) { LPCHARACTER l = GetLeaderCharacter(); if (m_memberMap.find(pid) == m_memberMap.end()) { l->ChatPacket(CHAT_TYPE_INFO, "<Teleport> The character is too far."); return; } LPCHARACTER ch = m_memberMap[pid].pCharacter; if (!ch) { l->ChatPacket(CHAT_TYPE_INFO, "<Teleport> The character was not found in your map."); return; } if (ch->IsDead()) { l->ChatPacket(CHAT_TYPE_INFO, "<Teleport> I can't teleport the character if he is dead."); return; } ch->Show(l->GetMapIndex(), l->GetX(), l->GetY()); ch->Stop(); } CLIENT PART: root -> uiparty.py FIND THE __ShowStateButton and: ## Warp if self.stateButtonDict.has_key(self.MEMBER_BUTTON_WARP): button = self.stateButtonDict[self.MEMBER_BUTTON_WARP] button.SetPosition(xPos, y) button.Show() xPos += 23 Thanks to marty sama that sell this for 50€. NOW IT'S COMPLETELY FREE!
-
[Hidden Content]
-
Itemshop deposit problem
Metin2 Dev replied to Metin2 Dev's topic in Community Support - Questions & Answers
Please help me, I don't understand. -
Itemshop deposit problem
Metin2 Dev replied to Metin2 Dev's topic in Community Support - Questions & Answers
packet.h game: [Hidden Content] Packet.h binary: [Hidden Content] -
Hello, i have this problem with item-shop deposit ( mall ) , somebody help pe please. CH1 CORE1 SYSLOG: Nov 24 19:06:12 :: COMMAND: [OwN]Andy: click_mall Nov 24 19:06:14 :: COMMAND: [OwN]Andy: mall_password SYSERR: Nov 24 19:06:19 :: Process: SEQUENCE 58676000 mismatch 0xdc != 0x39 header 52 SYSERR: Nov 24 19:06:19 :: Process: SEQUENCE_LOG [[OwN]Andy]------------- [007 : 0x3b] [007 : 0x9] [007 : 0x85] [007 : 0x97] [007 : 0x10] [007 : 0x7b] [007 : 0xb] [007 : 0x88] [254 : 0x23] [252 : 0x94] [252 : 0x20] [007 : 0x27] [007 : 0x5d] [007 : 0xda] [007 : 0xfb] [007 : 0xe6] [007 : 0x1c] [007 : 0x15] [003 : 0x56] [003 : 0x38] [052 : 0xdc] Nov 24 19:06:19 :: DISCONNECT: [OwN]Andy (DESC::~DESC) Nov 24 19:06:19 :: SAVE: [OwN]Andy 952464x272088 Nov 24 19:06:19 :: QUEST clear timer 1 Nov 24 19:06:19 :: SYSTEM: closing socket. DESC #16 Nov 24 19:06:19 :: QUEST eventflag [OwN]Andy 0 prev_value 1 Nov 24 19:06:20 :: SYSTEM: new connection from [86.124.54.148] fd: 16 handshake 2520227660 output input_len 0, ptr 0x58676000 Nov 24 19:06:20 :: SYSTEM: closing socket. DESC #16 CH1 CORE1 syserr: SYSERR: Nov 24 19:06:19 :: Process: SEQUENCE 58676000 mismatch 0xdc != 0x39 header 52 SYSERR: Nov 24 19:06:19 :: Process: SEQUENCE_LOG [[OwN]Andy]------------- [007 : 0x3b] [007 : 0x9] [007 : 0x85] [007 : 0x97] [007 : 0x10] [007 : 0x7b] [007 : 0xb] [007 : 0x88] [254 : 0x23] [252 : 0x94] [252 : 0x20] [007 : 0x27] [007 : 0x5d] [007 : 0xda] [007 : 0xfb] [007 : 0xe6] [007 : 0x1c] [007 : 0x15] [003 : 0x56] [003 : 0x38] [052 : 0xdc] SYSERR: Nov 24 19:06:55 :: SpawnMob: SpawnMob: no mob data for vnum 20400 SYSERR: Nov 24 19:08:25 :: SpawnMob: SpawnMob: no mob data for vnum 20400 SYSERR: Nov 24 19:09:55 :: SpawnMob: SpawnMob: no mob data for vnum 20400 SYSERR: Nov 24 19:11:25 :: SpawnMob: SpawnMob: no mob data for vnum 20400 SYSERR: Nov 24 19:12:55 :: SpawnMob: SpawnMob: no mob data for vnum 20400 SYSERR: Nov 24 19:14:25 :: SpawnMob: SpawnMob: no mob data for vnum 20400 CH1 CORE 2 SYSLOG: Nov 24 19:06:13 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61) Nov 24 19:06:19 :: P2P: Logout [OwN]Andy Nov 24 19:06:19 :: QUEST eventflag [OwN]Andy 0 prev_value 1 Nov 24 19:06:52 :: santa respawn time = 3000 Nov 24 19:06:52 :: santa respawn time = 3000 Nov 24 19:07:07 :: GLOBAL_TIME: Nov 24 19:07:07 time_gap 0 Nov 24 19:07:13 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61) Nov 24 19:07:59 :: santa respawn time = 3000 Nov 24 19:08:07 :: GLOBAL_TIME: Nov 24 19:08:07 time_gap 0 Nov 24 19:08:13 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61) Nov 24 19:09:06 :: santa respawn time = 3000 Nov 24 19:09:07 :: GLOBAL_TIME: Nov 24 19:09:07 time_gap 0 Nov 24 19:09:13 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61) Nov 24 19:09:42 :: santa respawn time = 3000 Nov 24 19:09:42 :: santa respawn time = 3000 Nov 24 19:10:07 :: GLOBAL_TIME: Nov 24 19:10:07 time_gap 0 Nov 24 19:10:13 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61) Nov 24 19:10:25 :: RegisterRaceNumMap Zacamant de diamante 20047 Nov 24 19:10:49 :: santa respawn time = 3000 Nov 24 19:11:07 :: GLOBAL_TIME: Nov 24 19:11:07 time_gap 0 Nov 24 19:11:13 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61) Nov 24 19:11:25 :: santa respawn time = 3000 Nov 24 19:11:31 :: P2P: Login Buffy Nov 24 19:11:32 :: P2P: Logout Buffy Nov 24 19:12:01 :: santa respawn time = 3000 Nov 24 19:12:06 :: GLOBAL_TIME: Nov 24 19:12:06 time_gap 0 Nov 24 19:12:13 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61) Nov 24 19:12:37 :: santa respawn time = 3000 Nov 24 19:13:06 :: GLOBAL_TIME: Nov 24 19:13:06 time_gap 0 Nov 24 19:13:13 :: santa respawn time = 3000 Nov 24 19:13:13 :: santa respawn time = 3000 Nov 24 19:13:13 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61) Nov 24 19:13:49 :: santa respawn time = 3000 Nov 24 19:13:49 :: santa respawn time = 3000 Nov 24 19:14:06 :: GLOBAL_TIME: Nov 24 19:14:06 time_gap 0 Nov 24 19:14:13 :: SpawnMob: cannot create monster at non-exist sectree 405100 x 656600 (map 61) db syserr Nov 24 19:06:12 :: [ 198650] return 0/0/0 async 0/0/0 Nov 24 19:06:14 :: QUERY_RESULT: HEADER_GD_SAFEBOX_LOAD Nov 24 19:06:15 :: QUERY_RESULT: HEADER_GD_SAFEBOX_LOAD Nov 24 19:06:17 :: [ 198700] return 0/0/0 async 0/0/0 Nov 24 19:06:19 :: HEADER_GD_SET_EVENT_FLAG : Changed CClientmanager::SetEventFlag([OwN]Andy 0) Nov 24 19:06:19 :: SetPlay off 1122968687 andyopris Nov 24 19:06:22 :: [ 198750] return 0/0/0 async 0/0/0 Nov 24 19:06:27 :: [ 198800] return 0/0/0 async 0/0/0 Nov 24 19:06:32 :: [ 198850] return 0/0/0 async 0/0/0 Nov 24 19:06:37 :: [ 198900] return 0/0/0 async 0/0/0 Nov 24 19:06:42 :: [ 198950] return 0/0/0 async 0/0/0 Nov 24 19:06:47 :: [ 199000] return 0/0/0 async 0/0/0 Nov 24 19:06:52 :: [ 199050] return 0/0/0 async 0/0/0 Nov 24 19:06:57 :: [ 199100] return 0/0/0 async 0/0/0 Nov 24 19:07:02 :: [ 199150] return 0/0/0 async 0/0/0 Nov 24 19:07:07 :: [ 199200] return 0/0/0 async 0/0/0 Nov 24 19:07:12 :: [ 199250] return 0/0/0 async 0/0/0 Nov 24 19:07:17 :: [ 199300] return 0/0/0 async 0/0/0 Nov 24 19:07:22 :: [ 199350] return 0/0/0 async 0/0/0 Nov 24 19:07:27 :: [ 199400] return 0/0/0 async 0/0/0 Nov 24 19:07:32 :: [ 199450] return 0/0/0 async 0/0/0 Nov 24 19:07:37 :: [ 199500] return 0/0/0 async 0/0/0 Nov 24 19:07:42 :: [ 199550] return 0/0/0 async 0/0/0 Nov 24 19:07:47 :: [ 199600] return 0/0/0 async 0/0/0 Nov 24 19:07:52 :: [ 199650] return 0/0/0 async 0/0/0 Nov 24 19:07:57 :: [ 199700] return 0/0/0 async 0/0/0 Nov 24 19:08:02 :: [ 199750] return 0/0/0 async 0/0/0 Nov 24 19:08:07 :: [ 199800] return 0/0/0 async 0/0/0 Nov 24 19:08:12 :: [ 199850] return 0/0/0 async 0/0/0 Nov 24 19:08:17 :: [ 199900] return 0/0/0 async 0/0/0 Nov 24 19:08:22 :: [ 199950] return 0/0/0 async 0/0/0 Nov 24 19:08:27 :: [ 200000] return 0/0/0 async 0/0/0 Nov 24 19:08:32 :: [ 200050] return 0/0/0 async 0/0/0 Nov 24 19:08:37 :: [ 200100] return 0/0/0 async 0/0/0 Nov 24 19:08:42 :: [ 200150] return 0/0/0 async 0/0/0 Nov 24 19:08:47 :: [ 200200] return 0/0/0 async 0/0/0 Nov 24 19:08:52 :: [ 200250] return 0/0/0 async 0/0/0 Nov 24 19:08:57 :: [ 200300] return 0/0/0 async 0/0/0 Nov 24 19:09:02 :: [ 200350] return 0/0/0 async 0/0/0 Nov 24 19:09:07 :: [ 200400] return 0/0/0 async 0/0/0 Nov 24 19:09:12 :: [ 200450] return 0/0/0 async 0/0/0 Nov 24 19:09:17 :: [ 200500] return 0/0/0 async 0/0/0 Nov 24 19:09:22 :: [ 200550] return 0/0/0 async 0/0/0 Nov 24 19:09:27 :: [ 200600] return 0/0/0 async 0/0/0 Nov 24 19:09:32 :: [ 200650] return 0/0/0 async 0/0/0 Nov 24 19:09:37 :: [ 200700] return 0/0/0 async 0/0/0 Nov 24 19:09:42 :: [ 200750] return 0/0/0 async 0/0/0 Nov 24 19:09:47 :: [ 200800] return 0/0/0 async 0/0/0 Nov 24 19:09:52 :: [ 200850] return 0/0/0 async 0/0/0 Nov 24 19:09:57 :: [ 200900] return 0/0/0 async 0/0/0 Nov 24 19:10:02 :: [ 200950] return 0/0/0 async 0/0/0 Nov 24 19:10:07 :: [ 201000] return 0/0/0 async 0/0/0 Nov 24 19:10:12 :: [ 201050] return 0/0/0 async 0/0/0 Nov 24 19:10:17 :: [ 201100] return 0/0/0 async 0/0/0 Nov 24 19:10:22 :: [ 201150] return 0/0/0 async 0/0/0 Nov 24 19:10:27 :: [ 201200] return 0/0/0 async 0/0/0 Nov 24 19:10:32 :: [ 201250] return 0/0/0 async 0/0/0 Nov 24 19:10:37 :: [ 201300] return 0/0/0 async 0/0/0 Nov 24 19:10:42 :: [ 201350] return 0/0/0 async 0/0/0 Nov 24 19:10:47 :: [ 201400] return 0/0/0 async 0/0/0 Nov 24 19:10:52 :: [ 201450] return 0/0/0 async 0/0/0 Nov 24 19:10:57 :: [ 201500] return 0/0/0 async 0/0/0 Nov 24 19:11:02 :: [ 201550] return 0/0/0 async 0/0/0 Nov 24 19:11:07 :: [ 201600] return 0/0/0 async 0/0/0 Nov 24 19:11:12 :: [ 201650] return 0/0/0 async 0/0/0 Nov 24 19:11:15 :: AUTH_LOGIN id(2441) login(subman1) social_id(0000000) login_key(2128562822), client_key(475148398 1474925640 671494159 775765328) Nov 24 19:11:16 :: LOGIN_BY_KEY success subman1 2128562822 5.15.239.204 Nov 24 19:11:17 :: [ 201700] return 0/1/1 async 0/0/0 Nov 24 19:11:17 :: RESULT_LOGIN: login success subman1 rows: 1 Nov 24 19:11:17 :: Buffy 969066 278290 hair 5004 acce 0 Nov 24 19:11:22 :: [ 201750] return 0/0/0 async 0/0/0 Nov 24 19:11:27 :: [ 201800] return 0/0/0 async 0/0/0 Nov 24 19:11:30 :: LOGIN_BY_KEY success subman1 2128562822 5.15.239.204 Nov 24 19:11:31 :: RESULT_LOGIN: login success subman1 rows: 1 Nov 24 19:11:31 :: Buffy 969066 278290 hair 5004 acce 0 Nov 24 19:11:31 :: [PLAYER_LOAD] Load from PlayerDB pid[2872] Nov 24 19:11:31 :: QID_PLAYER 89 2872 Nov 24 19:11:31 :: SetPlay on 2128562822 subman1 Nov 24 19:11:31 :: QID_ITEM 89 Nov 24 19:11:31 :: ITEM_LOAD: count 123 pid 2872 Nov 24 19:11:31 :: QID_QUEST 89 Nov 24 19:11:31 :: QUEST_LOAD: count 7 PID 2872 Nov 24 19:11:31 :: info of pLoginData1 before call ItemAwardfunction 704559552 Nov 24 19:11:31 :: QID_AFFECT 89 Nov 24 19:11:31 :: AFFECT_LOAD: count 2 PID 2872 Nov 24 19:11:31 :: [ 201850] return 0/0/5 async 0/0/0 Nov 24 19:11:32 :: SetPlay off 2128562822 subman1 Nov 24 19:11:36 :: [ 201900] return 0/0/0 async 0/0/0 Nov 24 19:11:41 :: [ 201950] return 0/0/0 async 0/0/0 Nov 24 19:11:46 :: [ 202000] return 0/0/0 async 0/0/0 Nov 24 19:11:51 :: [ 202050] return 0/0/0 async 0/0/0 Nov 24 19:11:56 :: [ 202100] return 0/0/0 async 0/0/0 Nov 24 19:12:01 :: [ 202150] return 0/0/0 async 0/0/0 Nov 24 19:12:06 :: [ 202200] return 0/0/0 async 0/0/0 Nov 24 19:12:11 :: [ 202250] return 0/0/0 async 0/0/0 Nov 24 19:12:16 :: [ 202300] return 0/0/0 async 0/0/0 Nov 24 19:12:21 :: [ 202350] return 0/0/1 async 0/0/0 Nov 24 19:12:26 :: [ 202400] return 0/0/0 async 0/0/0 Nov 24 19:12:31 :: [ 202450] return 0/0/0 async 0/0/0 Nov 24 19:12:36 :: [ 202500] return 0/0/0 async 0/0/0 Nov 24 19:12:41 :: [ 202550] return 0/0/0 async 0/0/0 Nov 24 19:12:46 :: [ 202600] return 0/0/0 async 0/0/0 Nov 24 19:12:51 :: [ 202650] return 0/0/0 async 0/0/0 Nov 24 19:12:56 :: [ 202700] return 0/0/0 async 0/0/0 Nov 24 19:13:01 :: [ 202750] return 0/0/0 async 0/0/0 Nov 24 19:13:06 :: [ 202800] return 0/0/0 async 0/0/0 Nov 24 19:13:11 :: [ 202850] return 0/0/0 async 0/0/0 Nov 24 19:13:16 :: [ 202900] return 0/0/0 async 0/0/0 Nov 24 19:13:21 :: [ 202950] return 0/0/0 async 0/0/0 Nov 24 19:13:26 :: [ 203000] return 0/0/0 async 0/0/0 Nov 24 19:13:31 :: [ 203050] return 0/0/0 async 0/0/0 Nov 24 19:13:36 :: [ 203100] return 0/0/0 async 0/0/0 Nov 24 19:13:41 :: [ 203150] return 0/0/0 async 0/0/0 Nov 24 19:13:46 :: [ 203200] return 0/0/0 async 0/0/0 Nov 24 19:13:51 :: [ 203250] return 0/0/0 async 0/0/0 Nov 24 19:13:56 :: [ 203300] return 0/0/0 async 0/0/0 Nov 24 19:14:01 :: [ 203350] return 0/0/0 async 0/0/0 Nov 24 19:14:06 :: [ 203400] return 0/0/0 async 0/0/0 Nov 24 19:14:11 :: [ 203450] return 0/0/0 async 0/0/0 Nov 24 19:14:16 :: [ 203500] return 0/0/0 async 0/0/0 Nov 24 19:14:21 :: [ 203550] return 0/0/0 async 0/0/0 Nov 24 19:14:26 :: [ 203600] return 0/0/0 async 0/0/0 Nov 24 19:14:31 :: [ 203650] return 0/0/0 async 0/0/0 Nov 24 19:14:36 :: [ 203700] return 0/0/0 async 0/0/0 Nov 24 19:14:41 :: [ 203750] return 0/0/0 async 0/0/0 Nov 24 19:14:46 :: [ 203800] return 0/0/0 async 0/0/0 Nov 24 19:14:51 :: [ 203850] return 0/0/0 async 0/0/0 Nov 24 19:14:56 :: [ 203900] return 0/0/0 async 0/0/0 Nov 24 19:15:01 :: [ 203950] return 0/0/0 async 0/0/0 Nov 24 19:15:06 :: [ 204000] return 0/0/0 async 0/0/0 Nov 24 19:15:11 :: [ 204050] return 0/0/0 async 0/0/0 Nov 24 19:15:16 :: [ 204100] return 0/0/0 async 0/0/0 Nov 24 19:15:21 :: [ 204150] return 0/0/0 async 0/0/0 auth syslog: Nov 24 19:06:19 :: SetRemainSecs andyopris 0 type 2 Nov 24 19:06:19 :: BILLING: PUSH andyopris 248 type 2 Nov 24 19:06:19 :: BILLING: OFF andyopris key 1122968687 ptr 0x293d10f0 Nov 24 19:06:19 :: FLUSH_USE_TIME: count 1 Nov 24 19:11:14 :: SYSTEM: new connection from [5.15.239.204] fd: 15 handshake 4021525493 output input_len 0, ptr 0x29110000 Nov 24 19:11:14 :: Handshake: lower than zero -2 Nov 24 19:11:15 :: Handshake: client_time 0 server_time 20163067 Nov 24 19:11:15 :: AUTH_PHASE 0x29110000 Nov 24 19:11:15 :: InputAuth::Login : subman1(7) desc 0x29110000 Nov 24 19:11:15 :: SetLoginKey 2128562822 Nov 24 19:11:15 :: InputAuth::Login : key 2128562822:0x335fe3ff login subman1 Nov 24 19:11:15 :: QID_AUTH_LOGIN: START 2128562822 0x29110000 Nov 24 19:11:15 :: Create_Time 1511371565 20171122 Nov 24 19:11:15 :: Block Time -1 Nov 24 19:11:15 :: SetRemainSecs subman1 0 type 2 Nov 24 19:11:15 :: SendAuthLogin subman1 key 2441 Nov 24 19:11:15 :: AuthLogin result 1 key 2128562822 Nov 24 19:11:16 :: SYSTEM: closing socket. DESC #15 Nov 24 19:11:31 :: DeleteLoginData subman1 0x293d1240 Nov 24 19:11:31 :: BILLING: ON subman1 key 2128562822 ptr 0x293d1320 Nov 24 19:11:32 :: BILLING: OFF subman1 key 2128562822 ptr 0x293d1320
-
There are more classes in uiGuild.py , make sure you put in right class (GuildWindow).
