Making player's color blinking
#5

pawn Код:
SetTimerEx("Highlight", 2000, false, "dd", playerid,1);

forward Highlight(playerid,type);
public Highlight(playerid,type)
{
switch(type)
{
    case 1:
    {
        SetPlayerColor(playerid, 0xFF0000FF);
        SetTimerEx("Highlight", 2000, false, "dd", playerid,2);
    }
    case 2:
    {
        SetPlayerColor(playerid, 0xFF9900FF);
        SetTimerEx("Highlight", 2000, false, "dd", playerid,1);
    }
}
}
Reply


Messages In This Thread
Making player's color blinking - by xGoldenx - 22.12.2011, 15:52
Re: Making player's color blinking - by Tee - 22.12.2011, 15:54
Re: Making player's color blinking - by xGoldenx - 22.12.2011, 16:05
Re: Making player's color blinking - by Tee - 22.12.2011, 16:08
Re: Making player's color blinking - by wildcookie007 - 22.12.2011, 16:12
Re: Making player's color blinking - by xGoldenx - 22.12.2011, 16:16

Forum Jump:


Users browsing this thread: 3 Guest(s)