17.06.2018, 17:28
SetTimerEx(funcname[], interval, repeating, const format[], {Float,_}:...)
PHP код:
CMD:kill(playerid)
{
SendClientMessage(playerid, 0xFF0000FF, "wait 10 seconds to suicide");
SetTimerEx("KILLPLAYER", 10000, false, "i", playerid);
return 1;
}
forward KILLPLAYER(playerid);
public KILLPLAYER(playerid)
{
SetPlayerHealth(playerid, 0.0);
}