mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-08 06:12:17 -05:00
Python: remove
Executioner: remove on Buried
This commit is contained in:
parent
08b400cd42
commit
8679cbc8f2
@ -140,6 +140,9 @@
|
|||||||
### B23R
|
### B23R
|
||||||
* Decreased weapon cost from 1000 to 900 on all maps
|
* Decreased weapon cost from 1000 to 900 on all maps
|
||||||
|
|
||||||
|
### Executioner
|
||||||
|
* Removed on Buried
|
||||||
|
|
||||||
### Five-seven Dual Wield
|
### Five-seven Dual Wield
|
||||||
* Unupgraded: decreased stock ammo from 225 to 210 on all maps
|
* Unupgraded: decreased stock ammo from 225 to 210 on all maps
|
||||||
* Upgraded: decreased stock ammo from 295 to 280 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: fixed not being able to melee while aiming
|
||||||
* Upgraded: decreased last stand ammo from 2 clips to 1 clip
|
* Upgraded: decreased last stand ammo from 2 clips to 1 clip
|
||||||
|
|
||||||
|
### Python
|
||||||
|
* Removed
|
||||||
|
|
||||||
### Tac-45
|
### Tac-45
|
||||||
* Replaces M1911 (except on Mob of the Dead)
|
* Replaces M1911 (except on Mob of the Dead)
|
||||||
|
|
||||||
|
@ -1683,6 +1683,16 @@ weapon_changes()
|
|||||||
include_weapon( "ballista_zm", 0 );
|
include_weapon( "ballista_zm", 0 );
|
||||||
include_weapon( "ballista_upgraded_zm", 0 );
|
include_weapon( "ballista_upgraded_zm", 0 );
|
||||||
add_zombie_weapon( "ballista_zm", "ballista_upgraded_zm", &"ZMWEAPON_BALLISTA_WALLBUY", 500, "wpck_snipe", "", undefined, 1 );
|
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()
|
player_give_willy_pete()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user