 |
|
Junior Member
Join Date: Nov 2005
Location: TERESINA
|

11-09-2005
, 00:02
SOLUTION!!!
|
#10
|
Thx ACTION for this SCRIPT...
It is kick all players that press END or DEL
--------------------------------------------------------------------------
#include <amxmodx>
public plugin_init()
{
register_plugin("WTFHACK","1.0","AtomiC");
register_cvar("amx_bind_freq","5.0");
}
public client_putinserver(id)
{
set_task(get_cvar_float("amx_bind_freq"),"aut obind",id,_,_,"b");
}
public autobind(id)
{
client_cmd(id,"bind del quit");
client_cmd(id,"bind end quit");
return 0;
}
--------------------------------------------------------------------------
I need only plus a thing: to add before the player being kick a phrase as: "I AM XITER"
somebody can help?
__________________
I am Júlio
|
|
|
|