Quote:
Originally Posted by Torge
Well, I tested it and it works fine... Did you forgot to create command.txt in your cstrike folder ?
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");
register_clcmd("say /commands", "command_say");
}
public command_say(id)
{
show_motd(id, "command.txt")
}
|
That is still not what he asked for. I don't understand why he said thanks. The closest one to the correct code according to the actual request was posted by grs4.
__________________