how will i let it work
if anyone says /commands and /command
or /commandaaaaa
now it only works if anyone says /command
PHP Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN ""
#define VERSION ""
#define AUTHOR ""
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /command", "command_say");
}
public command_say(id)
{
show_motd(id, "command.txt")
}
__________________