27.07.2012, 09:44
I want to make a 1minute countdown that shows somewhere on the screen.
CMD:countdown(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] >= 3)
{
SetTimer("Three", 1000, 0);
SetTimer("Two", 2000, 0);
SetTimer("One", 3000, 0);
SetTimer("GoGoGo", 4000, 0);
}
return 1;
}