Nice job on the plugin, but you can change:
Code:
public set_cd_device(id) {
if(!(get_user_flags(id)&ACCESS_LEVEL)) {
client_print(id,print_console,"[AMXX] You Do Not Have Access To This Command");
return PLUGIN_HANDLED;
}
To:
Code:
public set_cd_device(id,cid,level) {
if(!cmd_access(id,cid,level,2))
return PLUGIN_HANDLED
cmd_access automaticly prints "You have no access to this command"
And if the cloaking isn't working, try messing around with the alpha level you use.