Teşekkürler, güzel eklenti.
#include <amxmodx>
new const PLUGIN[] = "Bind";
new const VERSION[] = "v1";
new const AUTHOR[] = "EmirCW";
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);
register_clcmd("nightvision", "Key_x");
}
public Key_N(ID)
{
client_cmd(ID, "x say /knife");
return PLUGIN_HANDLED;
}