Hey guys, I've tried with three ways.
First is using Fakemeta:
PHP Code:
public client_PreThink(id)
{
if(is_user_alive(id))
{
if(pev(id, pev_button) & IN_RUN)
{
client_print(id, print_chat, "run")
}
}
}
Second engine:
PHP Code:
public client_PreThink(id)
{
if(is_user_alive(id))
{
if(entity_get_int(id, EV_INT_button) & IN_RUN)
{
client_print(id, print_chat, "run")
}
}
}
Third:
Use his way:
https://forums.alliedmods.net/showpo...34&postcount=3
No one worked.