// [ZPSp Addon] VIP System // // * Plugin Description: // - Enables a VIP System for Zombie Plague Special // // * Requirements: // - Zombie Plague Special 4.5 [Patch 1] or higher // // * Functions: // - Free armor for normal and vip players // - Free multijump for normal and vip players // - Happy Hour for Multiple Ammo packs and Free Vip // - VIP prefix in score // - Increase VIP Damage // - VIP Itens menu // // * Change Log: // - 1.0: // - First Version // - 1.1: // - Separating HH Privileges Acess by flags // - Fixed multiple ammo packs in happy hour // - Added CFG File // - Added Cvar: "zp_vip_flag_acess" // - Added Native: "zv_is_in_happyhour" // - Added Native: "zv_happyhour_flags" // - Added Native: "zv_is_player_vip" // - Added Forward: "zv_happyhour_start" // - Added Forward: "zv_happyhour_end" // // * Credits: // - [P]erfect [S]crash: For Zombie plague special Vip system. // - aaarnas: Part of code of Zombie VIP System // Global Config zp_allow_zm_multijump "1" // Zombies have multijump [0-No | 1-Yes] // Free Privilegies config zp_free_jumps "1" // Jumps in air (Free) [0-Disable] zp_user_free_armor "10" // Free Armor amount for non vip players [0-Disable] // VIP Privilegies config zp_vip_flag_acess "b" // VIP flag Acess (b = reservation + VIP perks) zp_vip_armor "100" // VIP Free Armor Amount zp_vip_damage_reward "500" // Damage require for reward zp_vip_damage_increase "1.2" // Vip Damage increase zp_vip_ammo_dmg_rwd_quantity "1" // Reward Quantity for ammopack damage zp_vip_jumps "2" // Jumps in air (VIP) zp_vip_free_lasermine "1" // VIP gets free lasermine each round [0-No | 1-Yes] zp_vip_first_infect_nade "1" // VIP gets bonus infection grenade on first zombie [0-No | 1-Yes] // Happyhour zp_vip_happy_hour_enable "1" // Enable happy hour [0-No | 1-Yes] zp_vip_happy_hour_start "23" // Happy Hour Start hour zp_vip_happy_hour_end "10" // Happy Hour End hour zp_vip_happy_hour_hud "1" // Enable Happy hour status hud [0-No | 1-Yes] // Happy Hour Free Vip Acess content // Flag "a" - Vip Multijump // Flag "b" - Vip Armor // Flag "c" - Damage increase // Flag "d" - Vip Extra item // Flag "e" - Multiple ammo packs // Flag "f" - VIP Prefix in score // Flag "g" .. "z" - Custom Acess for external plugins zp_vip_happy_hour_flags "abcdef" // Ammo rewards — VIP earns 30% faster than base zp_dmg_reward_base "700" // Base damage threshold for 1 ammo (everyone) zp_dmg_reward_vip_mult "0.7" // VIP multiplier (700 * 0.7 = 490 dmg per ammo)