1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-23 13:40:22 -05:00

Maxis Drone: kills on any round

This commit is contained in:
Jbleezy
2023-04-02 20:39:05 -07:00
parent eea3aabc6c
commit 5b15ec6eb5
2 changed files with 15 additions and 0 deletions

View File

@ -191,6 +191,20 @@ actor_damage_override( inflictor, attacker, damage, flags, meansofdeath, weapon,
}
}
if ( weapon == "quadrotorturret_zm" && meansofdeath == "MOD_PISTOL_BULLET" )
{
if (!is_true(self.is_mechz))
{
damage_scalar = damage / 6000;
min_damage = int( damage_scalar * level.zombie_health ) + 1;
if ( damage < min_damage )
{
damage = min_damage;
}
}
}
if ( isSubStr( weapon, "tower_trap" ) )
{
if (!is_true(self.is_brutus))