could you do this?
Code:
register_cvar("test_cvar", "1")
public client_PreThink(id) {
if(get_cvar_num("test_cvar") != 1) {
log_amx("CVAR HAS CHANGED")
}
else {
log_amx("CVAR HASN'T CHANGED")
}
}
just using pre_think as an example so it is continuously checked but this may not be what he means...
__________________