01.10.2012, 22:51
pawn Code:
public Procurado()
{
new str[128];
for(new x=0; x < MAX_PLAYERS; x++)
{
if(IsPlayerConnected(x) && GetPlayerWantedLevel(x) > 1)
{
format(str,sizeof(str),"Procurado[%d]",GetPlayerWantedLevel(x));
SetPlayerChatBubble(x, str, 0xFF0000AA, 100.0, 10000);
}
}
}