Hey All,
Im in the process of writing a plugin that will track the rate value that clients are using in a CS game.
The plugin will basically allow the admin to view all of the client rate values and automatically inform the admin if a users rates are below a specified value.
Im trying to use the get_user_info function to fetch:
rate
cl_rate
cl_cmdrate
cl_updaterate
similar to this code...
Code:
get_user_info(id, "rate", rate, 31)
get_user_info(id, "cl_rate", rate, 31)
get_user_info(id, "cl_cmdrate", rate, 31)
The only problem is the code fetches no values for cl_rate and cl_cmdrate
I can get rate and cl_updaterate, but the other two dont return a value. Ive tried a number of things and nothing works, can anyone give me some code which would return these values ??? Or tell me where im going wrong
Thanks in advance for any help
Damocles.