Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. //MENSAGEM AUTOMATICA ADM
  2. forward MSGAutomatica();
  3.  
  4.  
  5.  
  6.  
  7. public MSGAutomatica()
  8. {
  9. new string[156];
  10. foreach(new i: Player)
  11. {
  12. format(string, sizeof string, "[ADMIN AVISO] Olá {FFFFFF}%s{ff3399}, está precisando de ajuda? Utilize o comando: {FFFFFF}/relatorio {ff3399}para que possamos ajuda-lo.", PlayerName(i));
  13. SendClientMessage(i, 0x2641FEFF, "|___________[Aviso da Administração]___________|");
  14. SendClientMessage(i, COR_ADMIN, string);
  15. }
  16. }
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23. SetTimer("MSGAutomatica", 1000*60*10, true);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement