1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-07 21:59:49 -05:00

Acidgat: fire all projectiles at once

Acidgat: make weapon stats consistent with Blundergat
Acidgat (upgraded): fix not being counted as upgraded
This commit is contained in:
Jbleezy 2024-04-17 21:49:53 -07:00
parent 0d6dce9fbf
commit 856cc28624
4 changed files with 7 additions and 8 deletions

View File

@ -554,9 +554,10 @@
#### Acidgat
* Kills on any round in 1-2 bursts
* Changed fire type from 3 round burst to 4 round burst
* Increased clip ammo from 3 to 4
* Increased player damage from 10 to 15
* Increased move speed while aiming from 100% to 200% (same as Blundergat)
* Fires all projectiles at once
* Projectiles fire in a straight line
* Projectiles no longer seek toward zombies
* Deadshot improves accuracy

View File

@ -19,12 +19,11 @@ wait_for_blundersplat_fired()
if (str_weapon == "blundersplat_zm")
{
fire_time = weaponfiretime(str_weapon);
self setweaponammoclip(str_weapon, 0);
for (i = 0; i < weaponclipsize(str_weapon); i++)
{
_titus_locate_target(1, i);
wait fire_time;
}
}
}
@ -42,12 +41,11 @@ wait_for_blundersplat_upgraded_fired()
if (str_weapon == "blundersplat_upgraded_zm")
{
fire_time = weaponfiretime(str_weapon);
self setweaponammoclip(str_weapon, 0);
for (i = 0; i < weaponclipsize(str_weapon); i++)
{
_titus_locate_target(1, i);
wait fire_time;
_titus_locate_target(0, i);
}
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long