20.11.2013, 12:29
return 1;
This forum requires that you wait 240 seconds between posts. Please try again in 165 seconds. Faq it
Second Post of urs:
This forum requires that you wait 240 seconds between posts. Please try again in 165 seconds. Faq it
Second Post of urs:
pawn Код:
public OnPlayerText(playerid, text[])
{
new playertext[128];
if(Rank /* replace Rank with the enum or smthing u saved with */ == the number) // then use else { if or if.
{
format(playertext, sizeof(playertext), "[%d]%s: {FFFFFF}%s", playerid, name, text);
}
if(Rank == 5)
{
format(playertext, sizeof(playertext), "[%d]%s: {FFFFFF}%s", playerid, name, text); // change the HEX code to the color u want
}
SendClientMessageToAll(playerid, playertext);
return 1;
}