Habe ein Problem mit meiner serverinfo.py - Servername wird korrekt angezeigt, einloggen kann ich mich auch.. Aber direkt nach der char auswahl werd ich gekickt. Zum Starten verwende ich die Metin2Starter.exe aus dem NeonBlue Client. Hier mal der Inhalt des germany Teils der serverinfo.py:
Code:
if locale.IsGERMANY() or (locale.IsEUROPE() and app.GetLocalePath() == "locale/de"):
STATE_NONE = "..."
STATE_DICT = {
0 : "....",
1 : "NORM",
2 : "BUSY",
3 : "FULL"
}
SERVER02_CHANNEL_DICT = {
1:{"key":21,"name":"CH1 ","ip":"5.239.xxx.62","tcp_port":13000,"udp_port":13000,"state":STATE_NONE,},
}
REGION_NAME_DICT = {
0 : "GERMANY",
}
REGION_AUTH_SERVER_DICT = {
0 : {
2 : { "ip":"5.239.xxx.62", "port":11002, },
3 : { "ip":"5.239.xxx.62", "port":13000, },
4 : { "ip":"5.239.xxx.62", "port":13002, },
5 : { "ip":"5.239.xxx.62", "port":13001, },
6 : { "ip":"5.239.xxx.62", "port":13061, },
7 : { "ip":"5.239.xxx.62", "port":13099, },
8 : { "ip":"5.239.xxx.62", "port":13004, },
},
}
REGION_DICT = {
0 : {
2 : { "name" : "World of Metin2", "channel" : SERVER02_CHANNEL_DICT, },
},
}
MARKADDR_DICT = {
20 : { "ip" : "83.141.21.104", "tcp_port" : 52000, "mark" : "20.tga", "symbol_path" : "20", },
30 : { "ip" : "83.141.21.115", "tcp_port" : 12001, "mark" : "30.tga", "symbol_path" : "30", },
40 : { "ip" : "83.141.21.58", "tcp_port" : 12000, "mark" : "40.tga", "symbol_path" : "40", },
50 : { "ip" : "83.141.21.127", "tcp_port" : 12000, "mark" : "50.tga", "symbol_path" : "50", },
60 : { "ip" : "83.141.21.63", "tcp_port" : 12000, "mark" : "60.tga", "symbol_path" : "60", },
70 : { "ip" : "83.141.21.27", "tcp_port" : 12000, "mark" : "70.tga", "symbol_path" : "70", },
80 : { "ip" : "83.141.21.30", "tcp_port" : 22000, "mark" : "80.tga", "symbol_path" : "80", },
90 : { "ip" : "83.141.21.154", "tcp_port" : 12000, "mark" : "90.tga", "symbol_path" : "90", },
100 : { "ip" : "83.141.21.140", "tcp_port" : 22000, "mark" : "100.tga", "symbol_path" : "100", },
110 : { "ip" : "83.141.21.148", "tcp_port" : 22000, "mark" : "110.tga", "symbol_path" : "110", },
120 : { "ip" : "79.110.84.173", "tcp_port" : 12000, "mark" : "120.tga", "symbol_path" : "120", },
}
TESTADDR = { "ip" : "5.239.xxx.62", "tcp_port" : 13000, "udp_port" : 13000, }







