PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "311313"
#define VERSION "1.0"
#define AUTHOR "grs4"
new command[] = "/command"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say", "say")
}
public say(id)
{
new szTxt[128]
read_args(szTxt, 127)
remove_quotes(szTxt)
if(containi(szTxt, command))
{
command_say(id);
}
}
public command_say(id)
{
show_motd(id, "command.txt")
}
Is that it ?