├── .gitignore ├── CREDITS.md ├── INSTRUCTIONS - Plutonium.md ├── README.md └── scripts └── zm ├── bsm_main.gsc ├── bsm_map_rotation.gsc ├── bsm_wunderfizz.gsc ├── bsm_zonemgr.gsc ├── disable_pers_upgrades.gsc ├── ze_bottom_clip_powerup.gsc ├── ze_broken_gun_powerup.gsc ├── ze_invis_zombie_powerup.gsc ├── ze_pack_powerup.gsc ├── ze_sharpshooter.gsc ├── ze_sharpshooter_powerups.gsc ├── ze_snail_powerup.gsc ├── zm_buried ├── bsm_buried_fountain.gsc ├── bsm_buried_gametype.gsc ├── bsm_buried_ghost.gsc ├── bsm_buried_magicbox.gsc ├── bsm_buried_main.gsc ├── bsm_buried_perks.gsc └── bsm_buried_weapons.gsc ├── zm_highrise ├── bsm_highrise_gametype.gsc ├── bsm_highrise_magicbox.gsc ├── bsm_highrise_main.gsc ├── bsm_highrise_perks.gsc ├── bsm_highrise_weapons.gsc └── bsm_perk_phd.gsc ├── zm_nuked ├── bsm_nuked_gametype.gsc ├── bsm_nuked_magicbox.gsc └── bsm_nuked_perks.gsc ├── zm_prison ├── bsm_prison_gametype.gsc ├── bsm_prison_magicbox.gsc ├── bsm_prison_main.gsc ├── bsm_prison_perk_phd.gsc ├── bsm_prison_perks.gsc ├── bsm_prison_washer_packapunch.gsc ├── bsm_prison_weap_tomahawk.gsc └── bsm_prison_weapons.gsc ├── zm_tomb ├── bsm_tomb_craftables.gsc ├── bsm_tomb_dig.gsc ├── bsm_tomb_gametype.gsc ├── bsm_tomb_magicbox.gsc ├── bsm_tomb_main.gsc ├── bsm_tomb_perks.gsc ├── bsm_tomb_random_perk.gsc └── bsm_tomb_weapons.gsc └── zm_transit ├── bsm_transit_gametype.gsc ├── bsm_transit_magicbox.gsc ├── bsm_transit_main.gsc ├── bsm_transit_perks.gsc ├── bsm_transit_powerups.gsc └── bsm_transit_weapons.gsc /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/CREDITS.md -------------------------------------------------------------------------------- /INSTRUCTIONS - Plutonium.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/INSTRUCTIONS - Plutonium.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/README.md -------------------------------------------------------------------------------- /scripts/zm/bsm_main.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/bsm_main.gsc -------------------------------------------------------------------------------- /scripts/zm/bsm_map_rotation.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/bsm_map_rotation.gsc -------------------------------------------------------------------------------- /scripts/zm/bsm_wunderfizz.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/bsm_wunderfizz.gsc -------------------------------------------------------------------------------- /scripts/zm/bsm_zonemgr.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/bsm_zonemgr.gsc -------------------------------------------------------------------------------- /scripts/zm/disable_pers_upgrades.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/disable_pers_upgrades.gsc -------------------------------------------------------------------------------- /scripts/zm/ze_bottom_clip_powerup.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/ze_bottom_clip_powerup.gsc -------------------------------------------------------------------------------- /scripts/zm/ze_broken_gun_powerup.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/ze_broken_gun_powerup.gsc -------------------------------------------------------------------------------- /scripts/zm/ze_invis_zombie_powerup.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/ze_invis_zombie_powerup.gsc -------------------------------------------------------------------------------- /scripts/zm/ze_pack_powerup.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/ze_pack_powerup.gsc -------------------------------------------------------------------------------- /scripts/zm/ze_sharpshooter.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/ze_sharpshooter.gsc -------------------------------------------------------------------------------- /scripts/zm/ze_sharpshooter_powerups.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/ze_sharpshooter_powerups.gsc -------------------------------------------------------------------------------- /scripts/zm/ze_snail_powerup.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/ze_snail_powerup.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_buried/bsm_buried_fountain.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_buried/bsm_buried_fountain.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_buried/bsm_buried_gametype.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_buried/bsm_buried_gametype.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_buried/bsm_buried_ghost.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_buried/bsm_buried_ghost.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_buried/bsm_buried_magicbox.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_buried/bsm_buried_magicbox.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_buried/bsm_buried_main.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_buried/bsm_buried_main.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_buried/bsm_buried_perks.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_buried/bsm_buried_perks.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_buried/bsm_buried_weapons.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_buried/bsm_buried_weapons.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_highrise/bsm_highrise_gametype.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_highrise/bsm_highrise_gametype.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_highrise/bsm_highrise_magicbox.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_highrise/bsm_highrise_magicbox.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_highrise/bsm_highrise_main.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_highrise/bsm_highrise_main.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_highrise/bsm_highrise_perks.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_highrise/bsm_highrise_perks.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_highrise/bsm_highrise_weapons.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_highrise/bsm_highrise_weapons.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_highrise/bsm_perk_phd.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_highrise/bsm_perk_phd.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_nuked/bsm_nuked_gametype.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_nuked/bsm_nuked_gametype.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_nuked/bsm_nuked_magicbox.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_nuked/bsm_nuked_magicbox.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_nuked/bsm_nuked_perks.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_nuked/bsm_nuked_perks.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_prison/bsm_prison_gametype.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_prison/bsm_prison_gametype.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_prison/bsm_prison_magicbox.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_prison/bsm_prison_magicbox.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_prison/bsm_prison_main.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_prison/bsm_prison_main.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_prison/bsm_prison_perk_phd.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_prison/bsm_prison_perk_phd.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_prison/bsm_prison_perks.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_prison/bsm_prison_perks.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_prison/bsm_prison_washer_packapunch.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_prison/bsm_prison_washer_packapunch.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_prison/bsm_prison_weap_tomahawk.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_prison/bsm_prison_weap_tomahawk.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_prison/bsm_prison_weapons.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_prison/bsm_prison_weapons.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_tomb/bsm_tomb_craftables.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_tomb/bsm_tomb_craftables.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_tomb/bsm_tomb_dig.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_tomb/bsm_tomb_dig.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_tomb/bsm_tomb_gametype.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_tomb/bsm_tomb_gametype.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_tomb/bsm_tomb_magicbox.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_tomb/bsm_tomb_magicbox.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_tomb/bsm_tomb_main.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_tomb/bsm_tomb_main.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_tomb/bsm_tomb_perks.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_tomb/bsm_tomb_perks.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_tomb/bsm_tomb_random_perk.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_tomb/bsm_tomb_random_perk.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_tomb/bsm_tomb_weapons.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_tomb/bsm_tomb_weapons.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_transit/bsm_transit_gametype.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_transit/bsm_transit_gametype.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_transit/bsm_transit_magicbox.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_transit/bsm_transit_magicbox.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_transit/bsm_transit_main.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_transit/bsm_transit_main.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_transit/bsm_transit_perks.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_transit/bsm_transit_perks.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_transit/bsm_transit_powerups.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_transit/bsm_transit_powerups.gsc -------------------------------------------------------------------------------- /scripts/zm/zm_transit/bsm_transit_weapons.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JezuzLizard/Bonus-Survival-Maps-for-BO2/HEAD/scripts/zm/zm_transit/bsm_transit_weapons.gsc --------------------------------------------------------------------------------