Will This work
#1

Solved
Reply
#2

pawn Код:
if(GetPlayerSkin(playerid) == 286)
{
SendClientMessageToAll(COLOR_RED,"The President has been killed");
SetTimer("NewRound",5000,true);
}
i know the death part but not sure about the timer
Reply
#3

actually

pawn Код:
if(GetPlayerSkin(playerid) == 286)
{
    for(new i=0; i < MAX_PLAYERS; i++)
    {
        SendClientMessageToAll(COLOR_RED,"The President has been killed");
        SetTimerEx("NewRound", 5000, false, "i", i);
    }
}
Reply
#4

:0 500 timers even if the player not connected not very efficient. (no isplayerconnected check) and i think one timer would do. Put any loops inside the timer. Thats what id do anway.
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)