Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #include <amxmodx>
  2.  
  3. #define PLUGIN_NAME "Mensagem Info"
  4. #define PLUGIN_VERSION "0.1"
  5. #define PLUGIN_AUTHOR "Fudencio"
  6.  
  7. public plugin_init()
  8. {
  9. register_plugin("mensagem Info", "0.1", "Fudencio")
  10. }
  11.  
  12. public cliente_putinserver(id)
  13. {
  14. set_task(8.0, "mensagem_info", id)
  15. }
  16.  
  17. public mensagem_info(id)
  18. {
  19. new name[32]
  20. get_user_name(id,name,31);
  21. client_print(id,print_chat,"%s: Digite no say /models para desativar models de amd, skins de armas e sons de fim de round",name);
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement