Thread: [Subplugin Submission] [ZP] Zombie VIP 1.9.1
View Single Post
MeliMeli
Senior Member
Join Date: Apr 2022
Location: Brazil
Old 08-20-2022 , 20:52   Re: [ZP] Zombie VIP 1.9.1
Reply With Quote #1606

The plugin has problem in version ZP 5.0 in a line of code

Quote:
#if MODE & (1<<1)
public zp_extra_item_selected(id, item_id)
if(item_id == g_zp_extra_item_number)
menu_open(id)
Even if the cvar "zp_vip_register_in_zp_extra" is turned off the plugin continues to open the menu, even if the VIP extra items linked in the menu does not appear, the first extra item from the list you buy will open the extra vip items menu.

So I had to do this:

Quote:
#if MODE & (1<<1)
public zp_extra_item_selected(id, item_id)
if(get_pcvar_num(g_register_in_zp_extra))
{
if(item_id == g_zp_extra_item_number)
menu_open(id)
}
It is the best vip plugin for ZP servers that is available without sales. The current version is full of bugs, so it can be useful for those who use the zm vip version 1.7.2 & ZP 5.0+

Last edited by MeliMeli; 08-20-2022 at 20:53.
MeliMeli is offline