2 REGISTER_WEAPON(ELECTRO, w_electro, IT_CELLS, 5, WEP_FLAG_NORMAL | WEP_TYPE_SPLASH, BOT_PICKUP_RATING_MID, "electro", "electro", "Electro");
6 .float electro_secondarytime;
8 void W_Plasma_Explode_Combo (void);
10 void W_Plasma_TriggerCombo(vector org, float rad, entity own)
13 e = WarpZone_FindRadius(org, rad, TRUE);
16 if (e.classname == "plasma")
18 // change owner to whoever caused the combo explosion
20 e.takedamage = DAMAGE_NO;
21 e.classname = "plasma_chain";
22 e.think = W_Plasma_Explode_Combo;
23 e.nextthink = time + vlen(e.WarpZone_findradius_dist) / cvar("g_balance_electro_combo_speed"); // delay combo chains, looks cooler
29 void W_Plasma_Explode (void)
31 if(other.takedamage == DAMAGE_AIM)
32 if(other.classname == "player")
33 if(IsDifferentTeam(self.owner, other))
34 if(other.deadflag == DEAD_NO)
36 AnnounceTo(self.owner, "electrobitch");
38 self.event_damage = SUB_Null;
39 self.takedamage = DAMAGE_NO;
40 if (self.movetype == MOVETYPE_BOUNCE)
42 RadiusDamage (self, self.owner, cvar("g_balance_electro_secondary_damage"), cvar("g_balance_electro_secondary_edgedamage"), cvar("g_balance_electro_secondary_radius"), world, cvar("g_balance_electro_secondary_force"), self.projectiledeathtype, other);
46 W_Plasma_TriggerCombo(self.origin, cvar("g_balance_electro_primary_comboradius"), self.owner);
47 RadiusDamage (self, self.owner, cvar("g_balance_electro_primary_damage"), cvar("g_balance_electro_primary_edgedamage"), cvar("g_balance_electro_primary_radius"), world, cvar("g_balance_electro_primary_force"), self.projectiledeathtype, other);
53 void W_Plasma_Explode_Combo (void)
55 W_Plasma_TriggerCombo(self.origin, cvar("g_balance_electro_combo_comboradius"), self.owner);
57 self.event_damage = SUB_Null;
58 RadiusDamage (self, self.owner, cvar("g_balance_electro_combo_damage"), cvar("g_balance_electro_combo_edgedamage"), cvar("g_balance_electro_combo_radius"), world, cvar("g_balance_electro_combo_force"), WEP_ELECTRO | HITTYPE_BOUNCE, world); // use THIS type for a combo because primary can't bounce
62 void W_Plasma_Touch (void)
65 if (other.takedamage == DAMAGE_AIM) {
68 spamsound (self, CHAN_PROJECTILE, "weapons/electro_bounce.wav", VOL_BASE, ATTN_NORM);
69 self.projectiledeathtype |= HITTYPE_BOUNCE;
73 void W_Plasma_TouchExplode (void)
79 void W_Plasma_Damage (entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force)
83 // note: combos are usually triggered by W_Plasma_TriggerCombo, not damage
84 self.health = self.health - damage;
87 self.takedamage = DAMAGE_NO;
88 self.nextthink = time;
89 if (inflictor.classname == "plasma_chain" || inflictor.classname == "plasma_prim")
91 // change owner to whoever caused the combo explosion
92 self.owner = inflictor.owner;
93 self.classname = "plasma_chain";
94 self.think = W_Plasma_Explode_Combo;
95 self.nextthink = time + min(cvar("g_balance_electro_combo_radius"), vlen(self.origin - inflictor.origin)) / cvar("g_balance_electro_combo_speed"); // delay combo chains, looks cooler
96 // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bounding the length, because inflictor may be in a galaxy far far away (warpzones)
100 self.use = W_Plasma_Explode;
101 self.think = adaptor_think2use; // not _hittype_splash, as this runs "immediately"
106 void W_Electro_Attack()
110 W_SetupShot_ProjectileSize (self, '0 0 -3', '0 0 -3', FALSE, 2, "weapons/electro_fire.wav", cvar("g_balance_electro_primary_damage"));
112 pointparticles(particleeffectnum("electro_muzzleflash"), w_shotorg, w_shotdir * 1000, 1);
115 proj.classname = "plasma_prim";
117 proj.bot_dodge = TRUE;
118 proj.bot_dodgerating = cvar("g_balance_electro_primary_damage");
119 proj.use = W_Plasma_Explode;
120 proj.think = adaptor_think2use_hittype_splash;
121 proj.nextthink = time + cvar("g_balance_electro_primary_lifetime");
122 PROJECTILE_MAKETRIGGER(proj);
123 proj.projectiledeathtype = WEP_ELECTRO;
124 setorigin(proj, w_shotorg);
126 if not(self.items & IT_UNLIMITED_WEAPON_AMMO)
127 self.ammo_cells = self.ammo_cells - cvar("g_balance_electro_primary_ammo");
128 proj.movetype = MOVETYPE_FLY;
129 W_SETUPPROJECTILEVELOCITY(proj, g_balance_electro_primary);
130 proj.angles = vectoangles(proj.velocity);
131 proj.touch = W_Plasma_TouchExplode;
132 setsize(proj, '0 0 -3', '0 0 -3');
133 proj.flags = FL_PROJECTILE;
135 //sound (proj, CHAN_PAIN, "weapons/electro_fly.wav", VOL_BASE, ATTN_NORM);
138 CSQCProjectile(proj, TRUE, PROJECTILE_ELECTRO_BEAM, TRUE);
141 void W_Electro_Attack2()
145 W_SetupShot_ProjectileSize (self, '0 0 -4', '0 0 -4', FALSE, 2, "weapons/electro_fire2.wav", cvar("g_balance_electro_secondary_damage"));
146 w_shotdir = v_forward; // no TrueAim for grenades please
148 pointparticles(particleeffectnum("electro_muzzleflash"), w_shotorg, w_shotdir * 1000, 1);
151 proj.classname = "plasma";
153 proj.use = W_Plasma_Explode;
154 proj.think = adaptor_think2use_hittype_splash;
155 proj.bot_dodge = TRUE;
156 proj.bot_dodgerating = cvar("g_balance_electro_secondary_damage");
157 proj.nextthink = time + cvar("g_balance_electro_secondary_lifetime");
158 PROJECTILE_MAKETRIGGER(proj);
159 proj.projectiledeathtype = WEP_ELECTRO | HITTYPE_SECONDARY;
160 setorigin(proj, w_shotorg);
162 if not(self.items & IT_UNLIMITED_WEAPON_AMMO)
163 self.ammo_cells = self.ammo_cells - cvar("g_balance_electro_secondary_ammo");
164 //proj.glow_size = 50;
165 //proj.glow_color = 45;
166 proj.movetype = MOVETYPE_BOUNCE;
167 W_SETUPPROJECTILEVELOCITY_UP(proj, g_balance_electro_secondary);
168 proj.touch = W_Plasma_Touch;
169 setsize(proj, '0 0 -4', '0 0 -4');
170 proj.takedamage = DAMAGE_YES;
171 proj.damageforcescale = cvar("g_balance_electro_secondary_damageforcescale");
172 proj.health = cvar("g_balance_electro_secondary_health");
173 proj.event_damage = W_Plasma_Damage;
174 proj.flags = FL_PROJECTILE;
179 copyentity(proj, p2);
180 setmodel(p2, "models/ebomb.mdl");
181 setsize(p2, proj.mins, proj.maxs);
184 CSQCProjectile(proj, TRUE, PROJECTILE_ELECTRO, FALSE); // no culling, it has sound
187 .vector hook_start, hook_end;
188 float lgbeam_send(entity to, float sf)
190 WriteByte(MSG_ENTITY, ENT_CLIENT_LGBEAM);
192 if(sound_allowed(MSG_BROADCAST, self.owner))
194 WriteByte(MSG_ENTITY, sf);
197 WriteByte(MSG_ENTITY, num_for_edict(self.owner));
198 WriteCoord(MSG_ENTITY, cvar("g_balance_electro_primary_range"));
202 WriteCoord(MSG_ENTITY, self.hook_start_x);
203 WriteCoord(MSG_ENTITY, self.hook_start_y);
204 WriteCoord(MSG_ENTITY, self.hook_start_z);
208 WriteCoord(MSG_ENTITY, self.hook_end_x);
209 WriteCoord(MSG_ENTITY, self.hook_end_y);
210 WriteCoord(MSG_ENTITY, self.hook_end_z);
218 self.owner.prevlgfire = time;
219 if (self.owner.weaponentity.state != WS_INUSE || (self.owner.ammo_cells <= 0 && !(self.owner.items & IT_UNLIMITED_WEAPON_AMMO)) || self != self.owner.lgbeam || self.owner.deadflag != DEAD_NO || !self.owner.BUTTON_ATCK)
225 self.nextthink = time;
227 makevectors(self.owner.v_angle);
231 if not(self.owner.items & IT_UNLIMITED_WEAPON_AMMO)
233 if(cvar("g_balance_electro_primary_ammo"))
234 dt = min(frametime, self.owner.ammo_cells / cvar("g_balance_electro_primary_ammo"));
235 self.owner.ammo_cells = max(0, self.owner.ammo_cells - cvar("g_balance_electro_primary_ammo") * frametime);
238 W_SetupShot_Range(self.owner, TRUE, 0, "", cvar("g_balance_electro_primary_damage") * dt, cvar("g_balance_electro_primary_range"));
239 WarpZone_traceline_antilag(self.owner, w_shotorg, w_shotend, MOVE_NORMAL, self.owner, ANTILAG_LATENCY(self.owner));
245 force = w_shotdir * cvar("g_balance_electro_primary_force") + '0 0 1' * cvar("g_balance_electro_primary_force_up");
247 f = ExponentialFalloff(cvar("g_balance_electro_primary_falloff_mindist"), cvar("g_balance_electro_primary_falloff_maxdist"), cvar("g_balance_electro_primary_falloff_halflifedist"), vlen(WarpZone_UnTransformOrigin(WarpZone_trace_transform, trace_endpos) - w_shotorg));
249 Damage (trace_ent, self.owner, self.owner, cvar("g_balance_electro_primary_damage") * dt * f, WEP_ELECTRO, trace_endpos, force * dt);
250 Damage_RecordDamage(self.owner, WEP_ELECTRO, cvar("g_balance_electro_primary_damage") * dt * f);
252 W_Plasma_TriggerCombo(trace_endpos, cvar("g_balance_electro_primary_comboradius"), self.owner);
255 if(w_shotorg != self.hook_start)
258 self.hook_start = w_shotorg;
260 if(w_shotend != self.hook_end)
263 self.hook_end = w_shotend;
267 // experimental lightning gun
268 void W_Electro_Attack3 (void)
270 // only play fire sound if 0.5 sec has passed since player let go the fire button
271 if(time - self.prevlgfire > 0.5)
273 sound (self, CHAN_WEAPON, "weapons/lgbeam_fire.wav", VOL_BASE, ATTN_NORM);
276 entity beam, oldself;
278 self.lgbeam = beam = spawn();
279 beam.solid = SOLID_NOT;
280 beam.think = lgbeam_think;
282 beam.movetype = MOVETYPE_NONE;
283 beam.shot_spread = 0;
284 beam.bot_dodge = TRUE;
285 beam.bot_dodgerating = cvar("g_balance_electro_primary_damage");
286 Net_LinkEntity(beam, FALSE, 0, lgbeam_send);
296 weapon_action(WEP_ELECTRO, WR_PRECACHE);
297 electro_shotorigin[0] = shotorg_adjust_values(CL_Weapon_GetShotOrg(WEP_ELECTRO), FALSE, FALSE, 1);
298 electro_shotorigin[1] = shotorg_adjust_values(CL_Weapon_GetShotOrg(WEP_ELECTRO), FALSE, FALSE, 2);
299 electro_shotorigin[2] = shotorg_adjust_values(CL_Weapon_GetShotOrg(WEP_ELECTRO), FALSE, FALSE, 3);
300 electro_shotorigin[3] = shotorg_adjust_values(CL_Weapon_GetShotOrg(WEP_ELECTRO), FALSE, FALSE, 4);
303 void spawnfunc_weapon_electro (void)
305 weapon_defaultspawnfunc(WEP_ELECTRO);
308 void w_electro_checkattack()
310 if(self.electro_count > 1)
311 if(self.BUTTON_ATCK2)
312 if(weapon_prepareattack(1, -1))
315 self.electro_count -= 1;
316 weapon_thinkf(WFRAME_FIRE2, cvar("g_balance_electro_secondary_animtime"), w_electro_checkattack);
323 .float bot_secondary_electromooth;
324 .float BUTTON_ATCK_prev;
325 float w_electro(float req)
329 self.BUTTON_ATCK=FALSE;
330 self.BUTTON_ATCK2=FALSE;
331 if(vlen(self.origin-self.enemy.origin) > 1000)
332 self.bot_secondary_electromooth = 0;
333 if(self.bot_secondary_electromooth == 0)
335 if(bot_aim(cvar("g_balance_electro_primary_speed"), 0, cvar("g_balance_electro_primary_lifetime"), FALSE))
337 self.BUTTON_ATCK = TRUE;
338 if(random() < 0.01) self.bot_secondary_electromooth = 1;
343 if(bot_aim(cvar("g_balance_electro_secondary_speed"), cvar("g_balance_grenadelauncher_secondary_speed_up"), cvar("g_balance_electro_secondary_lifetime"), TRUE))
345 self.BUTTON_ATCK2 = TRUE;
346 if(random() < 0.03) self.bot_secondary_electromooth = 0;
350 else if (req == WR_THINK)
352 if (self.BUTTON_ATCK)
354 if (weapon_prepareattack(0, (cvar("g_balance_electro_lightning") ? 0 : cvar("g_balance_electro_primary_refire"))))
356 if(cvar("g_balance_electro_lightning"))
358 if ((!self.lgbeam) || wasfreed(self.lgbeam))
362 self.BUTTON_ATCK_prev = 1;
368 weapon_thinkf(WFRAME_FIRE1, cvar("g_balance_electro_primary_animtime"), w_ready);
371 if(cvar("g_balance_electro_lightning"))
373 if (self.BUTTON_ATCK_prev != 0)
375 ATTACK_FINISHED(self) = time + cvar("g_balance_electro_primary_refire") * W_WeaponRateFactor();
377 self.BUTTON_ATCK_prev = 0;
381 if (self.BUTTON_ATCK2)
382 if (time >= self.electro_secondarytime)
383 if (weapon_prepareattack(1, cvar("g_balance_electro_secondary_refire")))
386 self.electro_count = cvar("g_balance_electro_secondary_count");
387 weapon_thinkf(WFRAME_FIRE2, cvar("g_balance_electro_secondary_animtime"), w_electro_checkattack);
388 self.electro_secondarytime = time + cvar("g_balance_electro_secondary_refire2");
391 else if (req == WR_PRECACHE)
393 precache_model ("models/weapons/g_electro.md3");
394 precache_model ("models/weapons/v_electro.md3");
395 precache_model ("models/weapons/h_electro.iqm");
396 precache_sound ("weapons/electro_bounce.wav");
397 precache_sound ("weapons/electro_fire.wav");
398 precache_sound ("weapons/electro_fire2.wav");
399 precache_sound ("weapons/electro_impact.wav");
400 precache_sound ("weapons/electro_impact_combo.wav");
401 if(cvar("g_balance_electro_lightning"))
403 precache_sound ("weapons/lgbeam_fire.wav");
406 else if (req == WR_SETUP)
407 weapon_setup(WEP_ELECTRO);
408 else if (req == WR_CHECKAMMO1)
410 if(cvar("g_balance_electro_lightning"))
411 return !cvar("g_balance_electro_primary_ammo") || (self.ammo_cells > 0);
413 return self.ammo_cells >= cvar("g_balance_electro_primary_ammo");
415 else if (req == WR_CHECKAMMO2)
416 return self.ammo_cells >= cvar("g_balance_electro_secondary_ammo");
417 else if (req == WR_RESETPLAYER)
419 self.electro_secondarytime = time;
425 float w_electro(float req)
427 if(req == WR_IMPACTEFFECT)
430 org2 = w_org + w_backoff * 6;
431 if(w_deathtype & HITTYPE_SECONDARY)
433 pointparticles(particleeffectnum("electro_ballexplode"), org2, '0 0 0', 1);
435 sound(self, CHAN_PROJECTILE, "weapons/electro_impact.wav", VOL_BASE, ATTN_NORM);
439 if(w_deathtype & HITTYPE_BOUNCE)
441 // this is sent as "primary (w_deathtype & HITTYPE_BOUNCE)" to distinguish it from (w_deathtype & HITTYPE_SECONDARY) bounced balls
442 pointparticles(particleeffectnum("electro_combo"), org2, '0 0 0', 1);
444 sound(self, CHAN_PROJECTILE, "weapons/electro_impact_combo.wav", VOL_BASE, ATTN_NORM);
448 pointparticles(particleeffectnum("electro_impact"), org2, '0 0 0', 1);
450 sound(self, CHAN_PROJECTILE, "weapons/electro_impact.wav", VOL_BASE, ATTN_NORM);
454 else if(req == WR_PRECACHE)
456 precache_sound("weapons/electro_impact.wav");
457 precache_sound("weapons/electro_impact_combo.wav");
459 else if (req == WR_SUICIDEMESSAGE)
461 if(w_deathtype & HITTYPE_SECONDARY)
462 w_deathtypestring = "%s could not remember where they put plasma";
464 w_deathtypestring = "%s played with plasma";
466 else if (req == WR_KILLMESSAGE)
468 if(w_deathtype & HITTYPE_SECONDARY)
470 if(w_deathtype & HITTYPE_SPLASH) // unchecked: BOUNCE
471 w_deathtypestring = "%s just noticed %s's blue ball";
472 else // unchecked: BOUNCE
473 w_deathtypestring = "%s got in touch with %s's blue ball";
477 if(w_deathtype & HITTYPE_BOUNCE) // combo
478 w_deathtypestring = "%s felt the electrifying air of %s's combo";
479 else if(w_deathtype & HITTYPE_SPLASH)
480 w_deathtypestring = "%s got too close to %s's blue beam";
482 w_deathtypestring = "%s was blasted by %s's blue beam";