What's the use of this function ?
The ones that can reset the player " rank" ?
For example:
#include <amxmodx>
#include <amxmisc>
#include <csstats>
#define PLUGIN "New Plugin"
#define VERSION "1.0"
#define AUTHOR "Author"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /reset","reset",0)
}
public reset(id)
{
reset_user_wstats(id)
}
but,It seems that there is not response!
Another question ,Reset the player's RANK data with PLUGINS, OK?
I do not want to use "csstats _ Reset" orders,I need, reset csstats.dat after changing the map, that is to say that map just begin when,What to do to realize this function? thanks,please give me some idea ......