To disable it:
Code:
public client_PreThink(id)
{
if(get_user_button(id)&IN_USE)
{
entity_set_int(id,EV_INT_button,entity_get_int(id,EV_INT_button)&~IN_USE)
}
}
Or something..
Hooking it normally:
Code:
public client_PreThink(id)
{
if(get_user_button(id)&IN_USE)
{
// ...
}
}
__________________