15.02.2012, 14:46
First,you have to add a variable for timer in this format:
Than,add a timer in a command,or somewhere else:
After that,just add 0
At last,you have to add new public at end of your script:
Код:
forward TimersName (playerid);
Код:
SetTimer("TimersName",10000,0); // 10000 is number of miliseconds,after that timer is active (1000ms -10 seconds)
At last,you have to add new public at end of your script:
Код:
public TimersName(playerid) { // Do something here,what will happen,after 10 seconds.. return 1; }