From 8679cbc8f2a14a000a166ef5b5ddb5a4f751b683 Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Sat, 30 Dec 2023 22:53:39 -0800 Subject: [PATCH] Python: remove Executioner: remove on Buried --- README.md | 6 ++++++ scripts/zm/_zm_reimagined.gsc | 10 ++++++++++ 2 files changed, 16 insertions(+) diff --git a/README.md b/README.md index 5a88d92c..f5e8d296 100644 --- a/README.md +++ b/README.md @@ -140,6 +140,9 @@ ### B23R * Decreased weapon cost from 1000 to 900 on all maps +### Executioner +* Removed on Buried + ### Five-seven Dual Wield * Unupgraded: decreased stock ammo from 225 to 210 on all maps * Upgraded: decreased stock ammo from 295 to 280 on all maps @@ -161,6 +164,9 @@ * Upgraded: fixed not being able to melee while aiming * Upgraded: decreased last stand ammo from 2 clips to 1 clip +### Python +* Removed + ### Tac-45 * Replaces M1911 (except on Mob of the Dead) diff --git a/scripts/zm/_zm_reimagined.gsc b/scripts/zm/_zm_reimagined.gsc index b9758826..5b503979 100644 --- a/scripts/zm/_zm_reimagined.gsc +++ b/scripts/zm/_zm_reimagined.gsc @@ -1683,6 +1683,16 @@ weapon_changes() include_weapon( "ballista_zm", 0 ); include_weapon( "ballista_upgraded_zm", 0 ); add_zombie_weapon( "ballista_zm", "ballista_upgraded_zm", &"ZMWEAPON_BALLISTA_WALLBUY", 500, "wpck_snipe", "", undefined, 1 ); + + if (isdefined(level.zombie_weapons["python_zm"])) + { + level.zombie_weapons["python_zm"].is_in_box = 0; + } + + if (level.script == "zm_buried") + { + level.zombie_weapons["judge_zm"].is_in_box = 0; + } } player_give_willy_pete()