Hi Guys, i got idea but i can't do it ( cuz i am only can edit ;v ) so i hope someone help me SUPER VIP its based on ZM VIP but with other futures on the menu you got 500 ammo packs every round other guns i will add it by myself but can someone show me how to make it on menu ( important change the main to other inc cuz i use normal zm vip on my server means you need to change idk to don't that item shown on normal zm vip menu only on super vip menu ) + invisible for 5 seconds with cost 10 ammo pack and you can use it only once every round
public event_round_start() { for (new i = 1; i <= g_iMaxPlayers; i++) { if (g_HasAmmo[i]) { g_HasAmmo[i] = false } if (g_HasInvisible[i]) { g_HasInvisible[i] = false } } }
public zp_extra_item_selected(Player, itemid) { if (itemid == item_humanmenu) newmenu(Player) }
public newmenu(id) { if (!(get_user_flags(id) & ADMIN_LEVEL_H)) { set_hudmessage(0, 128, 255, -1.0, 0.43, 2, 0.02, 6.0, 0.01, 0.1, 2) ShowSyncHudMsg(id, g_MsgSync, "Need Access") return PLUGIN_HANDLED } else { new menu = menu_create("\wSuper VIP Menu \r[Humans]", "menu_handler")
if (g_HasAmmo[id]) menu_additem(menu, "\d500 Ammo Packs \y[\rUsed\y]", "", 0) else menu_additem(menu, "\w500 Ammo Packs \y[\r1 time every round\y]", "", 0)
if (g_HasInvisible[id]) menu_additem(menu, "\dInvisible \y[\rUsed\y]", "", 0) else menu_additem(menu, "\wInvisible \r15 second \y10-AP", "", 0)