-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhookZ_Bloat.uc
55 lines (47 loc) · 1.86 KB
/
hookZ_Bloat.uc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* Author : Shtoyan
* Home Repo : https://github.com/InsultingPros/KFPatcher
* License : https://www.gnu.org/licenses/gpl-3.0.en.html
*/
class hookZ_Bloat extends ZombieBloat;
// https://github.com/InsultingPros/KillingFloor/blob/main/KFChar/Classes/ZombieBloat.uc#L207
// ZombieBloat.SpawnTwoShots
function SpawnTwoShots()
{
local vector X,Y,Z, FireStart;
local rotator FireRotation;
// check this from the very start to prevent any log spam
if (Controller == none || IsInState('ZombieDying'))
return;
if (KFDoorMover(Controller.Target) != none)
{
Controller.Target.TakeDamage(22, self, Location, vect(0,0,0), class'DamTypeVomit');
return;
}
GetAxes(Rotation,X,Y,Z);
FireStart = Location+(vect(30,0,64) >> Rotation)*DrawScale;
if (!SavedFireProperties.bInitialized)
{
SavedFireProperties.AmmoClass = class'SkaarjAmmo';
SavedFireProperties.ProjectileClass = class'KFBloatVomit';
SavedFireProperties.WarnTargetPct = 1;
SavedFireProperties.MaxRange = 500;
SavedFireProperties.bTossed = false;
SavedFireProperties.bTrySplash = false;
SavedFireProperties.bLeadTarget = true;
SavedFireProperties.bInstantHit = true;
SavedFireProperties.bInitialized = true;
}
// Turn off extra collision before spawning vomit, otherwise spawn fails
ToggleAuxCollision(false);
FireRotation = Controller.AdjustAim(SavedFireProperties,FireStart,600);
Spawn(class'KFBloatVomit',self,,FireStart,FireRotation);
FireStart -= (0.5*CollisionRadius*Y);
FireRotation.Yaw -= 1200;
spawn(class'KFBloatVomit',self,,FireStart, FireRotation);
FireStart += (CollisionRadius*Y);
FireRotation.Yaw += 2400;
spawn(class'KFBloatVomit', self,, FireStart, FireRotation);
// Turn extra collision back on
ToggleAuxCollision(true);
}