Code:
def __GuildWar_OpenAskDialog(self, guildID, warType):
#code
#code etc
time = 31
while time > 0:
chat.AppendChat(chat.CHAT_TYPE_INFO, "Remaining %s seconds." % (time))
self.t = threading.Timer(1, __somedef)
self.t.start()
time = time -1
But if I try
Code:
import Threading
Code:
from threading import timer
Code:
no module named 'threading'
Is there any way to add the threading module in the client libs? I believe that metin2 runs on Python 2.2 which by default does not have the threading module.
Thanks






