05.04.2019, 15:04
(
Last edited by Kaliber; 05/04/2019 at 03:48 PM.
)
//Edit: My bad hahaha xD
Wanted to say, there are a lot of ways
Wanted to say, there are a lot of ways
PHP Code:
new Cig[MAX_PLAYERS];
forward Test(playerid,x);
CMD:tests(playerid, params[])
{
SetTimerEx("Test", 1000, false, "dd", playerid,0);
return 1;
}
public Test(playerid,x)
{
switch(x)
{
case 0: SetTimerEx("Test", 1000, 0, "dd", playerid,1);
case 1: SetTimerEx("Test", 1000, 0, "dd", playerid,2);
case 2: Cig[playerid]--;
}
return 1;
}