Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public TextProcu()
  2. {
  3.     for(new i=0; i<MAX_PLAYERS; i++)
  4.     {
  5.         new string[256];
  6.         if(GetPlayerWantedLevel(i) > 0)
  7.         {
  8.             format(string,256,"||-||PROCURADO||[%d]",GetPlayerWantedLevel(i));
  9.             SetPlayerChatBubble(i,string, COLOR_RED, 100.0, 1000);
  10.         }
  11.     }
  12. }