here you go this will work for you
Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Reset"
#define VERSION "1.0"
#define AUTHOR "The Specialist"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
set_task(20.0,"amx_reset");
register_srvcmd("amx_reloadadmins","amx_reset");
}
public amx_reset()
{
server_cmd("amx_reloadadmins");
server_exec();
}
hope this helped . alo make sure i spelt the command right lol (havnt slept yet)