Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. forward bubble();
  2. public bubble()
  3. {
  4. for(new i=0;i<MAX_PLAYERS;i++)
  5. {
  6. if(PlayerInfo[i][pSupporter] == 1) { SetPlayerChatBubble(i, "[ SUPPORTER 1 ]", 0xFF0000FF, 100.0, 10000); }
  7. else if(PlayerInfo[i][pSupporter] == 2) { SetPlayerChatBubble(i, "[ SUPPORTER 2 ]", 0xFF0000FF, 100.0, 10000); }
  8. else if(PlayerInfo[i][pSupporter] == 3) { SetPlayerChatBubble(i, "[ SUPPORTER 3 ]", 0xFF0000FF, 100.0, 10000); }
  9. else if(IsPlayerAdmin(i)) { SetPlayerChatBubble(i, "[ ADMIN ]", 0xFF0000FF, 100.0, 10000); }
  10. }
  11. return 1;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement