Hi all, need some help with this one. In earlier versions of amx, 9.6 area, I could catch cl_ commands in the client_infochanged():
Code:
public client_infochanged(id)
{
new counter = read_argc()
new cmd[128]
for(new i = 0; i < counter; i++)
{
read_argv(i,cmd,127)
log_amx("[AMXX] Trace: client_infochanged: read_argv: %s", cmd)
}
read_args(cmd,127)
log_amx("[AMXX] Trace: client_infochanged: read_args: %s", cmd)
return PLUGIN_CONTINUE
}
Now it seems that you can't? Anyone know how this is done or if it has been yanked outa the code for amxmodx? Have I the wrong forward? Not sure, but I have a trace program I run to see about what commands are sent for different things, I only use it on my development server to trace problems....any help in this regards would be much appreciated!
Cheers!