1.What is the event line for "game will restart in x seconds" ?
- can it be changed to "The game is LIVE" (i don't need how) -
2.
PHP Code:
#include <amxmodx>
#include <amxmisc>
public plugin_init()
{
register_plugin("Say /cmds", "1.0", "AmoneL")
register_clcmd("say /cmds", "test")}
public test(id)
{
static name[32];
get_user_name(id, name, 31);
client_print(0, print_chat, "%s said /cmds", name);
}
OK, when i will type in chat /cmds, i will get in chat 2 lines
1st line will be: AmoneL: /cmds
2nd line will be: AmoneL said /cmds
How can i get rid off the 1st line?
i need something like.. remove_say or .. don't know