25.10.2009, 21:50
Make a callback with a timer
pawn Код:
forward Fireworks(playerid);
public Fireworks(playerid)
{
// The content (Like SendClientMessage, etc)
return 1;
}
// In a command or where you want the timer to start
SetTimerEx("Fireworks",100,false, "d", playerid); // 100 = The time that will take to load the callback -- false = The timer wont repeat (true for repeating) playerid = Just dont change this.
