Code:
#include <amxmodx>
#define PLUGIN "My first motd"
#define VERSION "0.1"
#define AUTHOR "Me"
public plugin_init()
{
register_plugin( PLUGIN , VERSION , AUTHOR )
register_clcmd( "say /motd" , "function_motd" )
}
public function_motd( id )
{
show_motd("motd.txt", "my first motd")
}