Change the flag from this line:
PHP Code:
#define FLAG ADMIN_KICK
The code:
PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <fun>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
#define FLAG ADMIN_KICK
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /100le","can")
}
public can(player) {
if(is_user_alive( player ) && get_user_team(player) == 1 && get_user_flags(player) & FLAG)
set_user_health(player, 100)
}
Just have to add a check for the flag via "get_user_flags(player)"
__________________