Hey!
I've got a big problem. I try to find all people with "ADMIN_LEVEL_H" flag.
And to input them. Well i kinda have my own private jailbreak vip plugin so, ill just put the NEEDED parts of the code
PHP Code:
public plugin_init() {
register_clcmd("say /vips", "print_vips");
register_clcmd("say_team /vips", "print_vips");
}
public print_vips(id) {
new vipnames[31][31];
new plid,vipcount,x;
for (plid = 1; plid <= get_maxplayers() ; plid++;) {
if (is_user_connected(plid)) {
if(get_user_flags(plid) & ADMIN_LEVEL_H) {
get_user_name(plid, vipnames[vipcount++], 31);
if (vipcount > 0) {
for (x = 0; x < count; x++) {
ColorChat(id, TEAM_COLOR, "^x04[FRUKTAI.NET] ^x03Online VIP players: ^x04%%s", vipnames[x], x < (vipcount-1));
}
} else {
ColorChat(id. TEAM_COLOR, "^x04[FRUKTAI.NET] ^x03No admins online");
}
}
}
}
}
I just dont understand how to get them, if anyone could help me in CLEAR code so i could understand it and i really want to learn how to get them

Thanks