Hello I need your help in this code :
This is the code of autobinding plugin :
PHP Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Antihackbind"
#define VERSION "1.0"
#define AUTHOR "AtomiC"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
}
public client_connect( id )
{
client_cmd(id, "bind F12 quit");
client_cmd(id, "bind ins quit");
}
Firstly I wanted here to add more keys to quit, such as :
Code:
"F7-F12, Insert, Home, Delete, End, PageUp/Down"
And secondary, before quiting the game I want players to say text in chat :
Code:
{cs.matrica.lv}##{Anticheat}~~KICKED!
Can anyone help me , please?