21.10.2009, 10:29
Just do what the previous post said..
Create a timer by forwarding a public..
e.g.
You can put stuff in the brackets like, playerid, etc.
then anywhere on the script
and anywhere else in the script, I guess OnGameModeInit
Create a timer by forwarding a public..
e.g.
pawn Код:
forward ThisTimer()
then anywhere on the script
pawn Код:
public ThisTimer()
{
//enter code here
}
pawn Код:
SetTimer("ThisTimer", //Time amount(remove this comment and put the time here), //True or false? Does it rerun or not? make sure to put code here);