1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-09 23:02:53 -05:00
Files
BO2-Reimagined/scripts/zm/zm_prison/zm_prison_reimagined.csc
Jbleezy 6e0510c081 Cell Block: fix players taking damage from the key spawn positions
Survival on Cell Block: fix key showing
2024-02-20 00:20:10 -08:00

18 lines
744 B
Plaintext

#include clientscripts\mp\_utility;
#include clientscripts\mp\zombies\_zm_utility;
main()
{
replaceFunc(clientscripts\mp\zm_prison::init_gamemodes, scripts\zm\replaced\zm_prison::init_gamemodes);
replaceFunc(clientscripts\mp\zm_prison::entityspawned_alcatraz, scripts\zm\replaced\zm_prison::entityspawned_alcatraz);
replaceFunc(clientscripts\mp\zombies\_zm_ai_brutus::brutusfootstepcbfunc, scripts\zm\replaced\_zm_ai_brutus::brutusfootstepcbfunc);
level thread clientscripts\mp\_sticky_grenade::main();
if (is_gametype_active("zstandard"))
{
level.zombiemode_using_additionalprimaryweapon_perk = 1;
level.zombiemode_using_divetonuke_perk = 1;
clientscripts\mp\zombies\_zm_perk_divetonuke::enable_divetonuke_perk_for_level();
}
}