Alelluja

Untitled

Jul 2nd, 2020
493
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #include <amxmodx>
  2.  
  3. #define PLUGIN "saykonkurs"
  4. #define VERSION "1.0"
  5. #define AUTHOR "PiKe"
  6.  
  7. public plugin_init()
  8. {
  9. register_plugin(PLUGIN, VERSION, AUTHOR);
  10.  
  11. register_clcmd("say /konkurs", "showMotd");
  12. register_clcmd("say_team /konkurs", "showMotd");
  13. }
  14.  
  15. public showMotd(index)
  16. {
  17. show_motd(index, "konkurs.txt", "Konkurs");
  18.  
  19. return PLUGIN_HANDLED;
  20. }
Add Comment
Please, Sign In to add comment