22.03.2010, 12:28
I hope this is what you mean:
At TOP:
To OnPlayerText
At The Bottom of your script:
Hope it works, cause i didnt test it. 
I hope this helps you.
Jeffry
At TOP:
pawn Код:
new IsRed[MAX_PLAYERS];
pawn Код:
if (strcmp("/show", cmdtext, true, 10) == 0)
{
GameTextForPlayer(playerid,"~r~Lorenc",2000,3);
SetTimerEx("Flashing",1000, 1, "d", playerid);
IsRed[playerid]=1;
return 1;
}
pawn Код:
forward Flashing(playerid);
public Flashing(playerid)
{
if(IsRed[playerid]==1)
{
GameTextForPlayer(playerid,"~p~Lorenc",2000,3);
IsRed[playerid]=0;
}
else
{
GameTextForPlayer(playerid,"~r~Lorenc",2000,3);
IsRed[playerid]=1;
}
return 1;
}

I hope this helps you.

Jeffry

