İlan
05 Haz 2026 15 çevrimiçi üye Duyurular
Ana Sayfa Metin2 PvP Client - Pack Paylaşımları
Ana Sayfa Forum Metin2 PvP Client - Pack Paylaşımları **Shinsoo2 Sunucusu Bilgileri**...
İlan Yan banner placeholder

**Shinsoo2 Sunucusu Bilgileri**

kutucunuz 06.05.2026 10:13 562 görüntüleme 11 cevap
Son Mesaj
kutucunuz
Üye
Üye
Katılım21 Kas 2025
Konular8
Mesajlar96
Elmas Konular1
Başarım0
ZirveCoin 0
Ticaret Puanı
+0 -0
06.05.2026 10:13 #1
import app
import localeInfo
from constInfo import TextColor
app.ServerName = None

ENABLE_RANDOM_AUTH_NO_LIB = True
if ENABLE_RANDOM_AUTH_NO_LIB:
from time import time as time_time
def get_random_number(upper_limit):
_timestamp = time_time()
_timestamp = int(_timestamp*1000000)
return _timestamp % upper_limit

def get_item_from_list(_list):
choice = get_random_number(len(_list))
assert choice < len(_list), "Index should be less than length of list"
return _list[choice]
else:
from random import choice as random_choice
def get_item_from_list(_list):
return random_choice(_list)

SRV1 = {
"name":TextColor("Shinsoo2", "ffd500"), #GOLD
"host":"185.128.112.232",
"srv1-auth1":11000,
"srv1-auth2":11001,
"ch1":13101,
"ch2":13201,

"authlist": [ 11000,11001, ],
}

STATE_NONE = TextColor(localeInfo.CHANNEL_STATUS_OFFLINE, "FF0000") #RED

STATE_DICT = {
0: TextColor(localeInfo.CHANNEL_STATUS_OFFLINE, "FF0000"), #RED
1: TextColor(localeInfo.CHANNEL_STATUS_RECOMMENDED, "00ff00"), #GREEN
2: TextColor(localeInfo.CHANNEL_STATUS_BUSY, "ffff00"), #YELLOW
3: TextColor(localeInfo.CHANNEL_STATUS_FULL, "ff8a08") #ORANGE
}

SERVER1_CHANNEL_DICT = {
0: {"key":10, "name":TextColor("CH-1", "FFffFF"), "ip":SRV1["host"], "tcp_port":SRV1["ch1"], "udp_port":SRV1["ch1"], "state":STATE_NONE,},
1: {"key":11, "name":TextColor("CH-2", "FFffFF"), "ip":SRV1["host"], "tcp_port":SRV1["ch2"], "udp_port":SRV1["ch2"], "state":STATE_NONE,},
}

REGION_NAME_DICT = {
0: SRV1["name"],
}

REGION_AUTH_SERVER_DICT = {
0: {
1: {"ip": SRV1["host"], "port": get_item_from_list(SRV1["authlist"]),},
2: {"ip": SRV1["host"], "port": get_item_from_list(SRV1["authlist"]),},
}
}

REGION_DICT = {
0: {
1: {"name": SRV1["name"], "channel": SERVER1_CHANNEL_DICT,},
},
}

MARKADDR_DICT = {
10: {"ip": SRV1["host"], "tcp_port": SRV1["ch1"], "mark": "10.tga", "symbol_path": "10",},
}

TESTADDR = {"ip": SRV1["host"], "tcp_port": SRV1["ch1"], "udp_port": SRV1["ch1"],}
Relante
Üye
Üye
Katılım16 Ara 2025
Konular4
Mesajlar61
Elmas Konular0
Başarım0
ZirveCoin 0
Ticaret Puanı
+0 -0
07.05.2026 09:27 #2
İşini yaptıysan paranı komidinden alıp çıkabilirsin.
kutucunuz
Üye
Üye
Katılım21 Kas 2025
Konular8
Mesajlar96
Elmas Konular1
Başarım0
ZirveCoin 0
Ticaret Puanı
+0 -0
07.05.2026 23:56 #3
İşini yaptıysan paranı komidinden alıp çıkabilirsin.
niye bu kadar ciddisin knk kalbimi kırıyosun ah kalbim ahhhh şimdi ölsem sen suçlusun
kutucunuz
Üye
Üye
Katılım21 Kas 2025
Konular8
Mesajlar96
Elmas Konular1
Başarım0
ZirveCoin 0
Ticaret Puanı
+0 -0
08.05.2026 00:37 #4
hüüüü
kutucunuz
Üye
Üye
Katılım21 Kas 2025
Konular8
Mesajlar96
Elmas Konular1
Başarım0
ZirveCoin 0
Ticaret Puanı
+0 -0
08.05.2026 00:38 #5
import app
import localeInfo
from constInfo import TextColor
app.ServerName = None

ENABLE_RANDOM_AUTH_NO_LIB = True
if ENABLE_RANDOM_AUTH_NO_LIB:
from time import time as time_time
def get_random_number(upper_limit):
_timestamp = time_time()
_timestamp = int(_timestamp*1000000)
return _timestamp % upper_limit

def get_item_from_list(_list):
choice = get_random_number(len(_list))
assert choice < len(_list), "Index should be less than length of list"
return _list[choice]
else:
from random import choice as random_choice
def get_item_from_list(_list):
return random_choice(_list)

SRV1 = {
"name":TextColor("Shinsoo2", "ffd500"), #GOLD
"host":"185.128.112.232",
"srv1-auth1":11000,
"srv1-auth2":11001,
"ch1":13101,
"ch2":13201,

"authlist": [ 11000,11001, ],
}

STATE_NONE = TextColor(localeInfo.CHANNEL_STATUS_OFFLINE, "FF0000") #RED

STATE_DICT = {
0: TextColor(localeInfo.CHANNEL_STATUS_OFFLINE, "FF0000"), #RED
1: TextColor(localeInfo.CHANNEL_STATUS_RECOMMENDED, "00ff00"), #GREEN
2: TextColor(localeInfo.CHANNEL_STATUS_BUSY, "ffff00"), #YELLOW
3: TextColor(localeInfo.CHANNEL_STATUS_FULL, "ff8a08") #ORANGE
}

SERVER1_CHANNEL_DICT = {
0: {"key":10, "name":TextColor("CH-1", "FFffFF"), "ip":SRV1["host"], "tcp_port":SRV1["ch1"], "udp_port":SRV1["ch1"], "state":STATE_NONE,},
1: {"key":11, "name":TextColor("CH-2", "FFffFF"), "ip":SRV1["host"], "tcp_port":SRV1["ch2"], "udp_port":SRV1["ch2"], "state":STATE_NONE,},
}

REGION_NAME_DICT = {
0: SRV1["name"],
}

REGION_AUTH_SERVER_DICT = {
0: {
1: {"ip": SRV1["host"], "port": get_item_from_list(SRV1["authlist"]),},
2: {"ip": SRV1["host"], "port": get_item_from_list(SRV1["authlist"]),},
}
}

REGION_DICT = {
0: {
1: {"name": SRV1["name"], "channel": SERVER1_CHANNEL_DICT,},
},
}

MARKADDR_DICT = {
10: {"ip": SRV1["host"], "tcp_port": SRV1["ch1"], "mark": "10.tga", "symbol_path": "10",},
}

TESTADDR = {"ip": SRV1["host"], "tcp_port": SRV1["ch1"], "udp_port": SRV1["ch1"],}
Relante
Üye
Üye
Katılım16 Ara 2025
Konular4
Mesajlar61
Elmas Konular0
Başarım0
ZirveCoin 0
Ticaret Puanı
+0 -0
08.05.2026 00:38 #6
İşini yaptıysan paranı komidinden alıp çıkabilirsin.
kutucunuz
Üye
Üye
Katılım21 Kas 2025
Konular8
Mesajlar96
Elmas Konular1
Başarım0
ZirveCoin 0
Ticaret Puanı
+0 -0
08.05.2026 00:41 #7
İşini yaptıysan paranı komidinden alıp çıkabilirsin.
niye bu kadar ciddisin knk kalbimi kırıyosun ah kalbim ahhhh şimdi ölsem sen suçlusun
kutucunuz
Üye
Üye
Katılım21 Kas 2025
Konular8
Mesajlar96
Elmas Konular1
Başarım0
ZirveCoin 0
Ticaret Puanı
+0 -0
08.05.2026 00:43 #8
hüüüü
Bu konuyu görüntüleyenler
1 misafir
Cevap yazmak için giriş yapın.
Benzer Konular
13 cevap
1.9K görüntüleme
Kapak Görüntüleri - Cilt 3
WenoMzZz · 23 Nis 2026
4 cevap
1.9K görüntüleme
METİN2 İtem İkonları 2026-04-16
ServerTescil · 18 Nis 2026
14 cevap
1.9K görüntüleme
M2Hero.to Mocyuk Paketi Çözün!
Netinternet · 09 Mar 2026
5 cevap
1.9K görüntüleme
7 cevap
1.7K görüntüleme
İlan Yan banner placeholder