HLMOD.HU Forrás Megtekintés - www.hlmod.hu
  1. /*Show Motd
  2. * __ __ _ __ __
  3. * |__ | | \ / |_ |_||__ |__
  4. * __| | |__ \/ |_ | \ __| __|
  5. */
  6. #include < amxmodx >
  7.  
  8. public plugin_init()
  9. {
  10. register_plugin("Show Motd","2.0","^^Silverss#")
  11. register_clcmd( "say /motd", "CmdMotd" );
  12. }
  13.  
  14. public CmdMotd( id )
  15. {
  16. show_motd( id,"motd.txt");
  17.  
  18. return PLUGIN_CONTINUE
  19. }
  20.