11.08.2013, 19:52
pawn Код:
forward TextProcu();
public TextProcu()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
new string[256];
if(GetPlayerWantedLevel(i) > 0)
{
format(string,256,"Procurado(%d)",GetPlayerWantedLevel(i));
SetPlayerChatBubble(i,string, Verde, 100.0, 1000);
}
}
}