05.05.2012, 16:46
Tente
:

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