PHP Code:
// Make a help.txt and put wat ever into it and place it in ur cstrike folder
#include <amxmodx>
#include <amxmisc>
new const VERSION[] = "1.0";
public plugin_init()
{
register_plugin("Help Motd", VERSION, "Shuttle_Wave")
register_clcmd("say /xhelp", "XHelp")
register_clcmd("say_team /xhelp", "XHelp")
}
public XHelp (id)
{
show_motd(id,"help.txt")
}
__________________