Just to clarify thought in case ive missed something (first time doing pawn)
Code:
public cmdrate_result_func(id,const cvar[],const value[])
{
copy(cmdrate[id],31,value)
}
Thats the function that gets called by query_client_cvar and copies that cvar value into a global function.
Theres no way to get that cvar value (const value[]) back into the main function without using a global variable?