i'm not sure,but i have this...im going to try it out now,
Code:
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#define PLUGIN "New Plugin"
#define VERSION "1.0"
#define AUTHOR "Author"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("+sshp_restore", "MB", ADMIN_LEVEL_F,"- gives an admin there 16000 money back")
}
public MB(id)
{
if (!(get_user_flags(id)&ADMIN_LEVEL_F)) {
}else{
cs_set_user_money(id, 16000)
}
}