[Help] Zombie (admin only)
Hello ,, i have a basebuilder server and when i open zm classes whatever admin access it be it will show behind zombie name (Admin Only) ,, and i was wondering if you could make for an certain acc it shows an certain message for example acc: H = (VIP Only) or acc: A = (Head Only) Like Photo in the link: http://imgur.com/jRDa3oW
Tnx,, here is the part of bb plugin:
PHP Code:
public show_zclass_menu(id,offset) { if(offset<0) offset = 0
new keys, curnum, menu[512], szCache1[32], szCache2[32], iCache3 for(new i=offset;i<g_iZClasses;i++) { ArrayGetString(g_zclass_name, i, szCache1, charsmax(szCache1)) ArrayGetString(g_zclass_info, i, szCache2, charsmax(szCache2)) iCache3 = ArrayGetCell(g_zclass_admin, i) // Add to menu if (i == g_iZombieClass[id]) format(menu,511,"%s^n\d%d. %s %s \r%s", menu, curnum+1, szCache1, szCache2, iCache3 == ADMIN_ALL ? "" : "(Admin Only)") else format(menu,511,"%s^n\w%d. %s \y%s \r%s", menu, curnum+1, szCache1, szCache2, iCache3 == ADMIN_ALL ? "" : "(Admin Only)") g_iMenuOptions[id][curnum] = i keys += (1<<curnum) curnum++ if(curnum==8) break; }
format(menu,511,"\ySelect Your Class:^n\w%s^n", menu) if(curnum==8 && offset<12) { keys += (1<<8) format(menu,511,"%s^n\w9. Next",menu) } if(offset) { keys += (1<<9) format(menu,511,"%s^n\w0. Back",menu) }
show_menu(id,keys,menu,-1,"ZClassSelect") }
|