-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhookDoor.uc
74 lines (64 loc) · 2.35 KB
/
hookDoor.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
* Author : Shtoyan
* Home Repo : https://github.com/InsultingPros/KFPatcher
* License : https://www.gnu.org/licenses/gpl-3.0.en.html
*/
class hookDoor extends KFDoorMover;
// https://github.com/InsultingPros/KillingFloor/blob/main/KFMod/Classes/KFDoorMover.uc#L286
// Forces zeds to actually ignore doors instead of just standing at them if bZombiesIgnore is true
function Tick(float Delta)
{
if (DoorPathNode != none && PathUdpTimer < Level.TimeSeconds)
{
PathUdpTimer = Level.TimeSeconds + 0.5;
DoorPathNode.ExtraCost = InitExtraCost;
if (bSealed && MyTrigger != none)
{
// Zeds will always ignore the path node associated with this door.
if (bZombiesIgnore)
DoorPathNode.ExtraCost = 9999999;
else
DoorPathNode.ExtraCost += 500 + MyTrigger.WeldStrength * 6;
}
}
}
// https://github.com/InsultingPros/KillingFloor/blob/main/KFMod/Classes/KFDoorMover.uc#L234
// Breaks all doors with the same use trigger. Fixes the single welded door exploit.
simulated function GoBang(pawn instigatedBy, vector hitlocation,Vector momentum, class<DamageType> damageType)
{
local int i;
local KFDoorMover kfdm;
for (i = 0; i < myTrigger.doorOwners.length; i++)
{
kfdm = myTrigger.doorOwners[i];
if (kfdm == none)
{
continue;
}
// The usual GoBang() code.
kfdm.SetCollision(false, false, false);
kfdm.bHidden = true;
kfdm.bDoorIsDead = true;
kfdm.NetUpdateTime = level.timeSeconds - 1;
if (level.netMode != NM_DedicatedServer)
{
if (kfdm.surfaceType == EST_Metal)
{
if ((level.timeSeconds - kfdm.lastRenderTime) < 5)
{
Spawn(kfdm.metalDoorExplodeEffectClass,,, kfdm.location, Rotator(vect(0,0,1)));
}
PlaySound(kfdm.metalBreakSound, SLOT_None, 2.0, false, 5000,,false);
}
else
{
if ((level.timeSeconds - kfdm.lastRenderTime) < 5)
{
Spawn(kfdm.woodDoorExplodeEffectClass,,, kfdm.location, Rotator(vect(0,0,1)));
}
PlaySound(kfdm.woodBreakSound, SLOT_None, 2.0, false, 5000,,false);
}
}
}
}
defaultproperties{}