Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. forward ChatDouble();
  2. public ChatDouble()
  3. {
  4. foreach(Player,i)
  5. {
  6. if(PlayerInfo[i][pAdmin] == 1)
  7. {
  8. SetPlayerChatBubble(i, "[ ADMIN ]", CRNA, 30.0,60000);
  9. }
  10. if(PlayerInfo[i][pAdmin] == 2)
  11. {
  12. SetPlayerChatBubble(i, "[ ADMIN ]", CRNA, 30.0,60000);
  13. }
  14. if(PlayerInfo[i][pAdmin] == 3)
  15. {
  16. SetPlayerChatBubble(i, "[ ADMIN ]", CRNA, 30.0,60000);
  17. }
  18. if(PlayerInfo[i][pAdmin] == 4)
  19. {
  20. SetPlayerChatBubble(i, "[ ADMIN ]", CRNA, 30.0,60000);
  21. }
  22. if(PlayerInfo[i][pAdmin] == 5)
  23. {
  24. SetPlayerChatBubble(i, "[ DIREKTOR ]", CRNA, 30.0,60000);
  25. }
  26. if(PlayerInfo[i][pAdmin] == 6)
  27. {
  28. SetPlayerChatBubble(i, "[ OWNER ]", CRNA, 30.0,60000);
  29. }
  30. if(PlayerInfo[i][pGM] == 1)
  31. {
  32. SetPlayerChatBubble(i, "[ HELPER ]", CRNA, 30.0,60000);
  33. }
  34. if(PlayerInfo[i][pGM] == 2)
  35. {
  36. SetPlayerChatBubble(i, "[ HELPER ]", CRNA, 30.0,60000);
  37. }
  38. if(PlayerInfo[i][pGM] == 3)
  39. {
  40. SetPlayerChatBubble(i, "[ VODJA HELPERA ]", CRNA, 30.0,60000);
  41. }
  42. else if(PlayerInfo[i][pLevel] == 1)
  43. {
  44. SetPlayerChatBubble(i, "[ NOVAJLIJA ]", COLOR_BLUE, 30.0,60000);
  45. }
  46. }
  47. return 1;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement