Код:
#include <amxmodx>
public plugin_init()
{
register_plugin("No Radio Flood", "1.0 Beta", "Ololoshka");
// Message hooks
register_message(get_user_msgid("TextMsg"), "Message_Textmsg");
}
public Message_Textmsg(msg_id, msg_dest, id)
{
static string[18];
// CS
if (get_msg_args() == 5) {
get_msg_arg_string(5, string, charsmax(string));
} else {
// CZ
if (get_msg_args() == 6)
get_msg_arg_string(6, string, charsmax(string));
else
return PLUGIN_CONTINUE;
}
return (equal(string, "#Fire_in_the_hole")) ? PLUGIN_HANDLED : PLUGIN_CONTINUE;
}
Отредактировал: iShot, - 27.5.2016, 3:16