1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 15:17:57 -05:00

M27 and SCAR-H: add on all maps

Galil: remove
This commit is contained in:
Jbleezy
2023-12-31 20:28:01 -08:00
parent 98d48564cc
commit 683c78ef5b
6 changed files with 204 additions and 0 deletions

View File

@ -1697,6 +1697,25 @@ weapon_changes()
{
level.zombie_weapons["judge_zm"].is_in_box = 0;
}
if (isdefined(level.zombie_weapons["galil_zm"]))
{
level.zombie_weapons["galil_zm"].is_in_box = 0;
}
if (!isdefined(level.zombie_weapons["hk416_zm"]))
{
include_weapon( "hk416_zm" );
include_weapon( "hk416_upgraded_zm", 0 );
add_zombie_weapon( "hk416_zm", "hk416_upgraded_zm", &"ZOMBIE_WEAPON_HK416", 100, "", "", undefined );
}
if (!isdefined(level.zombie_weapons["scar_zm"]))
{
include_weapon( "scar_zm" );
include_weapon( "scar_upgraded_zm", 0 );
add_zombie_weapon( "scar_zm", "scar_upgraded_zm", &"ZOMBIE_WEAPON_SCAR", 50, "wpck_rifle", "", undefined, 1 );
}
}
player_give_willy_pete()