19.03.2013, 10:06
I have a problem with timers...I think the 1st timer after script load won't run...I found this in my GM 1st...
I made a script for test it...here is the script and the results...I commented the missed messages...
SCRIPT:
RESULTS:
I made a script for test it...here is the script and the results...I commented the missed messages...
SCRIPT:
Код:
#include <a_samp> forward Teszt(playerid); public OnFilterScriptInit() { print("Load Script"); return 1; } public OnFilterScriptExit() { print("Exit Script"); return 1; } public OnPlayerConnect(playerid) { SetTimerEx("Teszt",1000,0,"d",playerid); return 1; } public OnPlayerCommandText(playerid,cmdtext[]) { if(!strcmp(cmdtext,"/timer")) { print("Teszt CMD"); SetTimerEx("Teszt",1000,0,"d",playerid); return 1; } return 0; } public Teszt(playerid) { print("Teszt Runned"); return 1; }
Код:
[2013.03.19. 11:08:20] Filterscripts [2013.03.19. 11:08:20] --------------- [2013.03.19. 11:08:20] Loaded 0 filterscripts. Console input: loadfs tbug [2013.03.19. 11:08:27] Load Script [2013.03.19. 11:08:27] Filterscript 'tbug.amx' loaded. [2013.03.19. 11:08:54] Incoming connection: 127.0.0.1:3244 [2013.03.19. 11:08:55] [join] krichie has joined the server (0:127.0.0.1) // Teszt Runned ?! [2013.03.19. 11:09:02] Teszt CMD [2013.03.19. 11:09:03] Teszt Runned [2013.03.19. 11:09:15] Teszt CMD [2013.03.19. 11:09:16] Teszt Runned Console input: reloadfs tbug [2013.03.19. 11:09:20] Exit Script [2013.03.19. 11:09:20] Filterscript 'tbug.amx' unloaded. [2013.03.19. 11:09:20] Load Script [2013.03.19. 11:09:20] Filterscript 'tbug.amx' loaded. [2013.03.19. 11:09:24] Teszt CMD // Teszt Runned ?! [2013.03.19. 11:09:29] Teszt CMD [2013.03.19. 11:09:30] Teszt Runned
Код:
Console input: loadfs tbug [2013.03.19. 11:23:43] Load Script [2013.03.19. 11:23:43] Filterscript 'tbug.amx' loaded. [2013.03.19. 11:24:07] Incoming connection: 127.0.0.1:3406 [2013.03.19. 11:24:07] [join] krichie has joined the server (0:127.0.0.1) // Teszt Runned ?! [2013.03.19. 11:24:13] [part] krichie has left the server (0:1) [2013.03.19. 11:24:36] Incoming connection: 127.0.0.1:3409 [2013.03.19. 11:24:36] [join] krichie has joined the server (0:127.0.0.1) [2013.03.19. 11:24:37] Teszt Runned [2013.03.19. 11:24:39] [part] krichie has left the server (0:1)