I need to set the C flag on this plugin
Code:
#include <amxmodx>
#include <amxmisc>
#include <colorchat>
public plugin_init() {
register_plugin("VIP_say", "1.0", "BS")
register_clcmd("say", "sayee")
}
public sayee(id){
if(get_user_flags(id) & ADMIN_LEVEL_H)
{
new said[192], name[30]
get_user_name(id,name,29)
read_args(said,191)
remove_quotes(said)
ColorChat(0, GREEN,"[VIP] ^3%s ^1: %s",name,said)
return PLUGIN_HANDLED
}
}