03.03.2012, 02:15
pawn Код:
//Perto das forwards
forward TextProcu();
//OnGameModeInit
SetTimer("TextProcu", 1000, true);
//Fim Gm
public TextProcu()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
new string[256];
if(GetPlayerWantedLevel(i) > 1)
{
format(string,256,"**PROCURADO[%d]**",GetPlayerWantedLevel(i));
SetPlayerChatBubble(i,string, Vermelho, 100.0, 10000);
}
}
}