05.05.2012, 16:28
pawn Код:
forward TextProcu();
SetTimer("TextProcu", 1000, true);
public TextProcu()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
new string[256];
if(GetPlayerWantedLevel(i))
{
format(string,256,"**PROCURADO[%d]**",GetPlayerWantedLevel(i));
SetPlayerChatBubble(i,string, 0x87413BFF, 100.0, 10000);
}
}
}