18.10.2010, 20:44
Hello,
In my script i have got:
But for some reason, the first timer on the list never works... At first the "secondtimer" wasnt working... so i made a new timer "twosecondtimer" and on the function "twosecond" i just put:
But it doesnt show up on the log :S So, whatever timer is first on that list, doesnt work..
Anyone know why?
In my script i have got:
pawn Код:
twosecondtimer = SetTimer("twosecond", 1000, 1); // doesnt work for some reason
secondtimer = SetTimer("second", 2000, 1); // 2 second timer..
updatetimer = SetTimer("update", 300000, 1); // 300,000 is 5 mins
synctimer = SetTimer("sync", 30000, 1); //30, 000 is 30 seconds
pawn Код:
public twosecond(){
printf("TEST");
return 1;
}
Anyone know why?