-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmonster_c4.as
127 lines (103 loc) · 3.75 KB
/
monster_c4.as
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
class monster_c4 : ScriptBaseEntity
{
float life = 10.0f;
int beepTime = 0;
EHandle h_attachEnt;
Vector attachEntOrigin;
bool KeyValue( const string& in szKey, const string& in szValue )
{
return BaseClass.KeyValue( szKey, szValue );
}
void Spawn()
{
pev.movetype = MOVETYPE_FLY;
pev.solid = SOLID_NOT;
g_EntityFuncs.SetModel(self, "models/rust/w_c4.mdl");
g_EntityFuncs.SetSize(self.pev, Vector( -8, -8, -8), Vector(8, 8, 8));
// attach to surface
pev.angles.x *= -1;
g_EngineFuncs.MakeVectors(self.pev.angles);
pev.angles.x *= -1;
TraceResult tr;
g_Utility.TraceLine( self.pev.origin, self.pev.origin - g_Engine.v_forward*16, dont_ignore_monsters, self.edict(), tr );
h_attachEnt = g_EntityFuncs.Instance( tr.pHit );
if (h_attachEnt)
attachEntOrigin = h_attachEnt.GetEntity().pev.origin;
g_EntityFuncs.SetOrigin( self, tr.vecEndPos);
SetThink( ThinkFunction( Think ) );
pev.nextthink = g_Engine.time + 1;
pev.takedamage = DAMAGE_NO;
pev.health = 1;
}
void Think()
{
life -= 0.1f;
beepTime -= 1;
float delta = h_attachEnt.IsValid() ? (attachEntOrigin - h_attachEnt.GetEntity().pev.origin).Length() : 9999;
if (life <= 0 or delta > 4)
{
CBaseEntity@ phit = h_attachEnt;
if (phit !is null and phit.pev.classname != "worldspawn" and (!phit.IsPlayer() or g_friendly_fire))
phit.TakeDamage(self.pev, self.pev, 185.0f, DMG_BLAST);
g_EntityFuncs.CreateExplosion(self.pev.origin, self.pev.angles, g_friendly_fire ? self.edict() : @self.pev.owner, 150, true);
//g_SoundSystem.PlaySound(self.edict(), CHAN_WEAPON, "rust/c4_explode1.wav", 1.0f, 1.0f, 0, 100);
g_EntityFuncs.Remove(self);
return;
}
else if (beepTime <= 0)
{
g_SoundSystem.PlaySound(self.edict(), CHAN_WEAPON, "rust/c4_beep.wav", 1.0f, 1.0f, 0, 100);
beepTime = 10;
}
pev.nextthink = g_Engine.time + 0.1f;
}
};
class monster_satchel_charge : ScriptBaseEntity
{
float deathTime = 0;
Vector sparkPos;
EHandle h_attachEnt;
Vector attachEntOrigin;
bool KeyValue( const string& in szKey, const string& in szValue )
{
return BaseClass.KeyValue( szKey, szValue );
}
void Spawn()
{
pev.movetype = MOVETYPE_FLY;
pev.solid = SOLID_NOT;
g_EntityFuncs.SetModel(self, "models/w_satchel.mdl");
g_EntityFuncs.SetSize(self.pev, Vector( -8, -8, -8), Vector(8, 8, 8));
g_EntityFuncs.SetOrigin( self, pev.origin);
// attach to surface
pev.angles.x *= -1;
g_EngineFuncs.MakeVectors(self.pev.angles);
pev.angles.x *= -1;
TraceResult tr;
g_Utility.TraceLine( self.pev.origin, self.pev.origin - g_Engine.v_forward*16, dont_ignore_monsters, self.edict(), tr );
h_attachEnt = g_EntityFuncs.Instance( tr.pHit );
if (h_attachEnt)
attachEntOrigin = h_attachEnt.GetEntity().pev.origin;
g_EntityFuncs.SetOrigin( self, tr.vecEndPos);
g_SoundSystem.PlaySound(self.edict(), CHAN_WEAPON, "rust/fuse.ogg", 1.0f, 1.0f, 0, 100);
sparkPos = pev.origin + g_Engine.v_up*18 + g_Engine.v_right*-4 + g_Engine.v_forward*3;
deathTime = g_Engine.time + Math.RandomFloat(4, 20);
SetThink( ThinkFunction( Think ) );
pev.nextthink = g_Engine.time + 0.1;
pev.takedamage = DAMAGE_NO;
pev.health = 1;
}
void Think()
{
float delta = h_attachEnt.IsValid() ? (attachEntOrigin - h_attachEnt.GetEntity().pev.origin).Length() : 9999;
if (g_Engine.time > deathTime or delta > 4)
{
g_SoundSystem.StopSound(self.edict(), CHAN_WEAPON, "rust/fuse.ogg");
g_EntityFuncs.CreateExplosion(self.pev.origin, self.pev.angles, g_friendly_fire ? self.edict() : @self.pev.owner, 126, true);
g_EntityFuncs.Remove(self);
}
else
te_sparks(sparkPos);
pev.nextthink = g_Engine.time + 0.1;
}
};