]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/mutators/mutator/nades/nades.qc
Merge branch 'master' into terencehill/translate_colors_2
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / mutators / mutator / nades / nades.qc
1 #include "nades.qh"
2
3 #ifdef IMPLEMENTATION
4
5 #ifdef SVQC
6 bool autocvar_g_nades_nade_small;
7 #endif
8
9 REGISTER_STAT(NADES_SMALL, int, autocvar_g_nades_nade_small)
10
11 #ifndef MENUQC
12 entity Nade_TrailEffect(int proj, int nade_team)
13 {
14     switch (proj)
15     {
16         case PROJECTILE_NADE:       return EFFECT_NADE_TRAIL(nade_team);
17         case PROJECTILE_NADE_BURN:  return EFFECT_NADE_TRAIL_BURN(nade_team);
18     }
19
20     FOREACH(Nades, true, LAMBDA(
21         for (int j = 0; j < 2; j++)
22         {
23             if (it.m_projectile[j] == proj)
24             {
25                 string trail = it.m_trail[j].eent_eff_name;
26                 if (trail) return it.m_trail[j];
27                 break;
28             }
29         }
30     ));
31
32     return EFFECT_Null;
33 }
34 #endif
35
36 #ifdef CSQC
37 REGISTER_MUTATOR(cl_nades, true);
38 MUTATOR_HOOKFUNCTION(cl_nades, HUD_Draw_overlay)
39 {
40         if (STAT(HEALING_ORB) <= time) return false;
41         MUTATOR_ARGV(0, vector) = NADE_TYPE_HEAL.m_color;
42         MUTATOR_ARGV(0, float) = STAT(HEALING_ORB_ALPHA);
43         return true;
44 }
45 MUTATOR_HOOKFUNCTION(cl_nades, Ent_Projectile)
46 {
47         if (self.cnt == PROJECTILE_NAPALM_FOUNTAIN)
48         {
49                 self.modelindex = 0;
50                 self.traileffect = EFFECT_FIREBALL.m_id;
51                 return true;
52         }
53         if (Nade_FromProjectile(self.cnt) != NADE_TYPE_Null)
54         {
55                 setmodel(self, MDL_PROJECTILE_NADE);
56                 entity trail = Nade_TrailEffect(self.cnt, self.team);
57                 if (trail.eent_eff_name) self.traileffect = trail.m_id;
58                 return true;
59         }
60 }
61 MUTATOR_HOOKFUNCTION(cl_nades, EditProjectile)
62 {
63         if (self.cnt == PROJECTILE_NAPALM_FOUNTAIN)
64         {
65                 loopsound(self, CH_SHOTS_SINGLE, SND(FIREBALL_FLY2), VOL_BASE, ATTEN_NORM);
66                 self.mins = '-16 -16 -16';
67                 self.maxs = '16 16 16';
68         }
69
70         entity nade_type = Nade_FromProjectile(self.cnt);
71         if (nade_type == NADE_TYPE_Null) return;
72         if(STAT(NADES_SMALL, NULL))
73         {
74                 self.mins = '-8 -8 -8';
75                 self.maxs = '8 8 8';
76         }
77         else
78         {
79                 self.mins = '-16 -16 -16';
80                 self.maxs = '16 16 16';
81         }
82         self.colormod = nade_type.m_color;
83         self.move_movetype = MOVETYPE_BOUNCE;
84         self.move_touch = func_null;
85         self.scale = 1.5;
86         self.avelocity = randomvec() * 720;
87
88         if (nade_type == NADE_TYPE_TRANSLOCATE || nade_type == NADE_TYPE_SPAWN)
89                 self.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_PLAYERCLIP | DPCONTENTS_BOTCLIP;
90         else
91                 self.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY;
92 }
93 bool Projectile_isnade(int p)
94 {
95         return Nade_FromProjectile(p) != NADE_TYPE_Null;
96 }
97 void DrawAmmoNades(vector myPos, vector mySize, bool draw_expanding, float expand_time)
98 {
99         float bonusNades    = STAT(NADE_BONUS);
100         float bonusProgress = STAT(NADE_BONUS_SCORE);
101         float bonusType     = STAT(NADE_BONUS_TYPE);
102         Nade def = Nades_from(bonusType);
103         vector nadeColor    = def.m_color;
104         string nadeIcon     = def.m_icon;
105
106         vector iconPos, textPos;
107
108         if(autocvar_hud_panel_ammo_iconalign)
109         {
110                 iconPos = myPos + eX * 2 * mySize.y;
111                 textPos = myPos;
112         }
113         else
114         {
115                 iconPos = myPos;
116                 textPos = myPos + eX * mySize.y;
117         }
118
119         if(bonusNades > 0 || bonusProgress > 0)
120         {
121                 DrawNadeProgressBar(myPos, mySize, bonusProgress, nadeColor);
122
123                 if(autocvar_hud_panel_ammo_text)
124                         drawstring_aspect(textPos, ftos(bonusNades), eX * (2/3) * mySize.x + eY * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
125
126                 if(draw_expanding)
127                         drawpic_aspect_skin_expanding(iconPos, nadeIcon, '1 1 0' * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, expand_time);
128
129                 drawpic_aspect_skin(iconPos, nadeIcon, '1 1 0' * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
130         }
131 }
132 #endif
133
134 #ifdef SVQC
135
136 #include <common/gamemodes/all.qh>
137 #include <common/monsters/spawn.qh>
138 #include <common/monsters/sv_monsters.qh>
139 #include <server/g_subs.qh>
140
141 REGISTER_MUTATOR(nades, cvar("g_nades"));
142
143 .float nade_time_primed;
144
145 .entity nade_spawnloc;
146
147 void nade_timer_think()
148 {SELFPARAM();
149         self.skin = 8 - (self.owner.wait - time) / (autocvar_g_nades_nade_lifetime / 10);
150         self.nextthink = time;
151         if(!self.owner || wasfreed(self.owner))
152                 remove(self);
153 }
154
155 void nade_burn_spawn(entity _nade)
156 {
157         CSQCProjectile(_nade, true, Nades_from(_nade.nade_type).m_projectile[true], true);
158 }
159
160 void nade_spawn(entity _nade)
161 {
162         entity timer = new(nade_timer);
163         setmodel(timer, MDL_NADE_TIMER);
164         setattachment(timer, _nade, "");
165         timer.colormap = _nade.colormap;
166         timer.glowmod = _nade.glowmod;
167         timer.think = nade_timer_think;
168         timer.nextthink = time;
169         timer.wait = _nade.wait;
170         timer.owner = _nade;
171         timer.skin = 10;
172
173         _nade.effects |= EF_LOWPRECISION;
174
175         CSQCProjectile(_nade, true, Nades_from(_nade.nade_type).m_projectile[false], true);
176 }
177
178 void napalm_damage(float dist, float damage, float edgedamage, float burntime)
179 {SELFPARAM();
180         entity e;
181         float d;
182         vector p;
183
184         if ( damage < 0 )
185                 return;
186
187         RandomSelection_Init();
188         for(e = WarpZone_FindRadius(self.origin, dist, true); e; e = e.chain)
189                 if(e.takedamage == DAMAGE_AIM)
190                 if(self.realowner != e || autocvar_g_nades_napalm_selfdamage)
191                 if(!IS_PLAYER(e) || !self.realowner || DIFF_TEAM(e, self))
192                 if(!STAT(FROZEN, e))
193                 {
194                         p = e.origin;
195                         p.x += e.mins.x + random() * (e.maxs.x - e.mins.x);
196                         p.y += e.mins.y + random() * (e.maxs.y - e.mins.y);
197                         p.z += e.mins.z + random() * (e.maxs.z - e.mins.z);
198                         d = vlen(WarpZone_UnTransformOrigin(e, self.origin) - p);
199                         if(d < dist)
200                         {
201                                 e.fireball_impactvec = p;
202                                 RandomSelection_Add(e, 0, string_null, 1 / (1 + d), !Fire_IsBurning(e));
203                         }
204                 }
205         if(RandomSelection_chosen_ent)
206         {
207                 d = vlen(WarpZone_UnTransformOrigin(RandomSelection_chosen_ent, self.origin) - RandomSelection_chosen_ent.fireball_impactvec);
208                 d = damage + (edgedamage - damage) * (d / dist);
209                 Fire_AddDamage(RandomSelection_chosen_ent, self.realowner, d * burntime, burntime, self.projectiledeathtype | HITTYPE_BOUNCE);
210                 //trailparticles(self, particleeffectnum(EFFECT_FIREBALL_LASER), self.origin, RandomSelection_chosen_ent.fireball_impactvec);
211                 Send_Effect(EFFECT_FIREBALL_LASER, self.origin, RandomSelection_chosen_ent.fireball_impactvec - self.origin, 1);
212         }
213 }
214
215
216 void napalm_ball_think()
217 {SELFPARAM();
218         if(round_handler_IsActive())
219         if(!round_handler_IsRoundStarted())
220         {
221                 remove(self);
222                 return;
223         }
224
225         if(time > self.pushltime)
226         {
227                 remove(self);
228                 return;
229         }
230
231         vector midpoint = ((self.absmin + self.absmax) * 0.5);
232         if(pointcontents(midpoint) == CONTENT_WATER)
233         {
234                 self.velocity = self.velocity * 0.5;
235
236                 if(pointcontents(midpoint + '0 0 16') == CONTENT_WATER)
237                         { self.velocity_z = 200; }
238         }
239
240         self.angles = vectoangles(self.velocity);
241
242         napalm_damage(autocvar_g_nades_napalm_ball_radius,autocvar_g_nades_napalm_ball_damage,
243                                   autocvar_g_nades_napalm_ball_damage,autocvar_g_nades_napalm_burntime);
244
245         self.nextthink = time + 0.1;
246 }
247
248
249 void nade_napalm_ball()
250 {SELFPARAM();
251         entity proj;
252         vector kick;
253
254         spamsound(self, CH_SHOTS, SND(FIREBALL_FIRE), VOL_BASE, ATTEN_NORM);
255
256         proj = new(grenade);
257         proj.owner = self.owner;
258         proj.realowner = self.realowner;
259         proj.team = self.team;
260         proj.bot_dodge = true;
261         proj.bot_dodgerating = autocvar_g_nades_napalm_ball_damage;
262         proj.movetype = MOVETYPE_BOUNCE;
263         proj.projectiledeathtype = DEATH_NADE_NAPALM.m_id;
264         PROJECTILE_MAKETRIGGER(proj);
265         setmodel(proj, MDL_Null);
266         proj.scale = 1;//0.5;
267         setsize(proj, '-4 -4 -4', '4 4 4');
268         setorigin(proj, self.origin);
269         proj.think = napalm_ball_think;
270         proj.nextthink = time;
271         proj.damageforcescale = autocvar_g_nades_napalm_ball_damageforcescale;
272         proj.effects = EF_LOWPRECISION | EF_FLAME;
273
274         kick.x =(random() - 0.5) * 2 * autocvar_g_nades_napalm_ball_spread;
275         kick.y = (random() - 0.5) * 2 * autocvar_g_nades_napalm_ball_spread;
276         kick.z = (random()/2+0.5) * autocvar_g_nades_napalm_ball_spread;
277         proj.velocity = kick;
278
279         proj.pushltime = time + autocvar_g_nades_napalm_ball_lifetime;
280
281         proj.angles = vectoangles(proj.velocity);
282         proj.flags = FL_PROJECTILE;
283         proj.missile_flags = MIF_SPLASH | MIF_PROXY | MIF_ARC;
284
285         //CSQCProjectile(proj, true, PROJECTILE_NAPALM_FIRE, true);
286 }
287
288
289 void napalm_fountain_think()
290 {SELFPARAM();
291
292         if(round_handler_IsActive())
293         if(!round_handler_IsRoundStarted())
294         {
295                 remove(self);
296                 return;
297         }
298
299         if(time >= self.ltime)
300         {
301                 remove(self);
302                 return;
303         }
304
305         vector midpoint = ((self.absmin + self.absmax) * 0.5);
306         if(pointcontents(midpoint) == CONTENT_WATER)
307         {
308                 self.velocity = self.velocity * 0.5;
309
310                 if(pointcontents(midpoint + '0 0 16') == CONTENT_WATER)
311                         { self.velocity_z = 200; }
312
313                 UpdateCSQCProjectile(self);
314         }
315
316         napalm_damage(autocvar_g_nades_napalm_fountain_radius, autocvar_g_nades_napalm_fountain_damage,
317                 autocvar_g_nades_napalm_fountain_edgedamage, autocvar_g_nades_napalm_burntime);
318
319         self.nextthink = time + 0.1;
320         if(time >= self.nade_special_time)
321         {
322                 self.nade_special_time = time + autocvar_g_nades_napalm_fountain_delay;
323                 nade_napalm_ball();
324         }
325 }
326
327 void nade_napalm_boom()
328 {SELFPARAM();
329         entity fountain;
330         int c;
331         for (c = 0; c < autocvar_g_nades_napalm_ball_count; c++)
332                 nade_napalm_ball();
333
334
335         fountain = spawn();
336         fountain.owner = self.owner;
337         fountain.realowner = self.realowner;
338         fountain.origin = self.origin;
339         setorigin(fountain, fountain.origin);
340         fountain.think = napalm_fountain_think;
341         fountain.nextthink = time;
342         fountain.ltime = time + autocvar_g_nades_napalm_fountain_lifetime;
343         fountain.pushltime = fountain.ltime;
344         fountain.team = self.team;
345         fountain.movetype = MOVETYPE_TOSS;
346         fountain.projectiledeathtype = DEATH_NADE_NAPALM.m_id;
347         fountain.bot_dodge = true;
348         fountain.bot_dodgerating = autocvar_g_nades_napalm_fountain_damage;
349         fountain.nade_special_time = time;
350         setsize(fountain, '-16 -16 -16', '16 16 16');
351         CSQCProjectile(fountain, true, PROJECTILE_NAPALM_FOUNTAIN, true);
352 }
353
354 void nade_ice_freeze(entity freezefield, entity frost_target, float freeze_time)
355 {
356         frost_target.frozen_by = freezefield.realowner;
357         Send_Effect(EFFECT_ELECTRO_IMPACT, frost_target.origin, '0 0 0', 1);
358         Freeze(frost_target, 1/freeze_time, 3, false);
359
360         Drop_Special_Items(frost_target);
361 }
362
363 void nade_ice_think()
364 {SELFPARAM();
365
366         if(round_handler_IsActive())
367         if(!round_handler_IsRoundStarted())
368         {
369                 remove(self);
370                 return;
371         }
372
373         if(time >= self.ltime)
374         {
375                 if ( autocvar_g_nades_ice_explode )
376                 {
377                         entity expef = EFFECT_NADE_EXPLODE(self.team);
378                         Send_Effect(expef, self.origin + '0 0 1', '0 0 0', 1);
379                         sound(self, CH_SHOTS, SND_ROCKET_IMPACT, VOL_BASE, ATTEN_NORM);
380
381                         RadiusDamage(self, self.realowner, autocvar_g_nades_nade_damage, autocvar_g_nades_nade_edgedamage,
382                                 autocvar_g_nades_nade_radius, self, world, autocvar_g_nades_nade_force, self.projectiledeathtype, self.enemy);
383                         Damage_DamageInfo(self.origin, autocvar_g_nades_nade_damage, autocvar_g_nades_nade_edgedamage,
384                                 autocvar_g_nades_nade_radius, '1 1 1' * autocvar_g_nades_nade_force, self.projectiledeathtype, 0, self);
385                 }
386                 remove(self);
387                 return;
388         }
389
390
391         self.nextthink = time+0.1;
392
393         // gaussian
394         float randomr;
395         randomr = random();
396         randomr = exp(-5*randomr*randomr)*autocvar_g_nades_nade_radius;
397         float randomw;
398         randomw = random()*M_PI*2;
399         vector randomp;
400         randomp.x = randomr*cos(randomw);
401         randomp.y = randomr*sin(randomw);
402         randomp.z = 1;
403         Send_Effect(EFFECT_ELECTRO_MUZZLEFLASH, self.origin + randomp, '0 0 0', 1);
404
405         if(time >= self.nade_special_time)
406         {
407                 self.nade_special_time = time+0.7;
408
409                 Send_Effect(EFFECT_ELECTRO_IMPACT, self.origin, '0 0 0', 1);
410                 Send_Effect(EFFECT_ICEFIELD, self.origin, '0 0 0', 1);
411         }
412
413
414         float current_freeze_time = self.ltime - time - 0.1;
415
416         entity e;
417         for(e = findradius(self.origin, autocvar_g_nades_nade_radius); e; e = e.chain)
418         if(e != self)
419         if(!autocvar_g_nades_ice_teamcheck || (DIFF_TEAM(e, self.realowner) || e == self.realowner))
420         if(e.takedamage && !IS_DEAD(e))
421         if(e.health > 0)
422         if(!e.revival_time || ((time - e.revival_time) >= 1.5))
423         if(!STAT(FROZEN, e))
424         if(current_freeze_time > 0)
425                 nade_ice_freeze(self, e, current_freeze_time);
426 }
427
428 void nade_ice_boom()
429 {SELFPARAM();
430         entity fountain;
431         fountain = spawn();
432         fountain.owner = self.owner;
433         fountain.realowner = self.realowner;
434         fountain.origin = self.origin;
435         setorigin(fountain, fountain.origin);
436         fountain.think = nade_ice_think;
437         fountain.nextthink = time;
438         fountain.ltime = time + autocvar_g_nades_ice_freeze_time;
439         fountain.pushltime = fountain.wait = fountain.ltime;
440         fountain.team = self.team;
441         fountain.movetype = MOVETYPE_TOSS;
442         fountain.projectiledeathtype = DEATH_NADE_ICE.m_id;
443         fountain.bot_dodge = false;
444         setsize(fountain, '-16 -16 -16', '16 16 16');
445         fountain.nade_special_time = time+0.3;
446         fountain.angles = self.angles;
447
448         if ( autocvar_g_nades_ice_explode )
449         {
450                 setmodel(fountain, MDL_PROJECTILE_GRENADE);
451                 entity timer = new(nade_timer);
452                 setmodel(timer, MDL_NADE_TIMER);
453                 setattachment(timer, fountain, "");
454                 timer.colormap = self.colormap;
455                 timer.glowmod = self.glowmod;
456                 timer.think = nade_timer_think;
457                 timer.nextthink = time;
458                 timer.wait = fountain.ltime;
459                 timer.owner = fountain;
460                 timer.skin = 10;
461         }
462         else
463                 setmodel(fountain, MDL_Null);
464 }
465
466 void nade_translocate_boom()
467 {SELFPARAM();
468         if(self.realowner.vehicle)
469                 return;
470
471         vector locout = self.origin + '0 0 1' * (1 - self.realowner.mins.z - 24);
472         tracebox(locout, self.realowner.mins, self.realowner.maxs, locout, MOVE_NOMONSTERS, self.realowner);
473         locout = trace_endpos;
474
475         makevectors(self.realowner.angles);
476
477         MUTATOR_CALLHOOK(PortalTeleport, self.realowner);
478
479         TeleportPlayer(self, self.realowner, locout, self.realowner.angles, v_forward * vlen(self.realowner.velocity), '0 0 0', '0 0 0', TELEPORT_FLAGS_TELEPORTER);
480 }
481
482 void nade_spawn_boom()
483 {SELFPARAM();
484         entity spawnloc = spawn();
485         setorigin(spawnloc, self.origin);
486         setsize(spawnloc, self.realowner.mins, self.realowner.maxs);
487         spawnloc.movetype = MOVETYPE_NONE;
488         spawnloc.solid = SOLID_NOT;
489         spawnloc.drawonlytoclient = self.realowner;
490         spawnloc.effects = EF_STARDUST;
491         spawnloc.cnt = autocvar_g_nades_spawn_count;
492
493         if(self.realowner.nade_spawnloc)
494         {
495                 remove(self.realowner.nade_spawnloc);
496                 self.realowner.nade_spawnloc = world;
497         }
498
499         self.realowner.nade_spawnloc = spawnloc;
500 }
501
502 void nade_heal_think()
503 {SELFPARAM();
504         if(time >= self.ltime)
505         {
506                 remove(self);
507                 return;
508         }
509
510         self.nextthink = time;
511
512         if(time >= self.nade_special_time)
513         {
514                 self.nade_special_time = time+0.25;
515                 self.nade_show_particles = 1;
516         }
517         else
518                 self.nade_show_particles = 0;
519 }
520
521 void nade_heal_touch()
522 {SELFPARAM();
523         float maxhealth;
524         float health_factor;
525         if(IS_PLAYER(other) || IS_MONSTER(other))
526         if(!IS_DEAD(other))
527         if(!STAT(FROZEN, other))
528         {
529                 health_factor = autocvar_g_nades_heal_rate*frametime/2;
530                 if ( other != self.realowner )
531                 {
532                         if ( SAME_TEAM(other,self) )
533                                 health_factor *= autocvar_g_nades_heal_friend;
534                         else
535                                 health_factor *= autocvar_g_nades_heal_foe;
536                 }
537                 if ( health_factor > 0 )
538                 {
539                         maxhealth = (IS_MONSTER(other)) ? other.max_health : g_pickup_healthmega_max;
540                         if ( other.health < maxhealth )
541                         {
542                                 if ( self.nade_show_particles )
543                                         Send_Effect(EFFECT_HEALING, other.origin, '0 0 0', 1);
544                                 other.health = min(other.health+health_factor, maxhealth);
545                         }
546                         other.pauserothealth_finished = max(other.pauserothealth_finished, time + autocvar_g_balance_pause_health_rot);
547                 }
548                 else if ( health_factor < 0 )
549                 {
550                         Damage(other,self,self.realowner,-health_factor,DEATH_NADE_HEAL.m_id,other.origin,'0 0 0');
551                 }
552
553         }
554
555         if ( IS_REAL_CLIENT(other) || IS_VEHICLE(other) )
556         {
557                 entity show_red = (IS_VEHICLE(other)) ? other.owner : other;
558                 show_red.stat_healing_orb = time+0.1;
559                 show_red.stat_healing_orb_alpha = 0.75 * (self.ltime - time) / self.healer_lifetime;
560         }
561 }
562
563 void nade_heal_boom()
564 {SELFPARAM();
565         entity healer;
566         healer = spawn();
567         healer.owner = self.owner;
568         healer.realowner = self.realowner;
569         setorigin(healer, self.origin);
570         healer.healer_lifetime = autocvar_g_nades_heal_time; // save the cvar
571         healer.ltime = time + healer.healer_lifetime;
572         healer.team = self.team;
573         healer.bot_dodge = false;
574         healer.solid = SOLID_TRIGGER;
575         healer.touch = nade_heal_touch;
576
577         setmodel(healer, MDL_NADE_HEAL);
578         healer.healer_radius = autocvar_g_nades_nade_radius;
579         vector size = '1 1 1' * healer.healer_radius / 2;
580         setsize(healer,-size,size);
581
582         Net_LinkEntity(healer, true, 0, healer_send);
583
584         healer.think = nade_heal_think;
585         healer.nextthink = time;
586         healer.SendFlags |= 1;
587 }
588
589 void nade_monster_boom()
590 {SELFPARAM();
591         entity e = spawnmonster(self.pokenade_type, 0, self.realowner, self.realowner, self.origin, false, false, 1);
592
593         if(autocvar_g_nades_pokenade_monster_lifetime > 0)
594                 e.monster_lifetime = time + autocvar_g_nades_pokenade_monster_lifetime;
595         e.monster_skill = MONSTER_SKILL_INSANE;
596 }
597
598 void nade_boom()
599 {SELFPARAM();
600         entity expef = NULL;
601         bool nade_blast = true;
602
603         switch ( Nades_from(self.nade_type) )
604         {
605                 case NADE_TYPE_NAPALM:
606                         nade_blast = autocvar_g_nades_napalm_blast;
607                         expef = EFFECT_EXPLOSION_MEDIUM;
608                         break;
609                 case NADE_TYPE_ICE:
610                         nade_blast = false;
611                         expef = EFFECT_ELECTRO_COMBO; // hookbomb_explode electro_combo bigplasma_impact
612                         break;
613                 case NADE_TYPE_TRANSLOCATE:
614                         nade_blast = false;
615                         break;
616                 case NADE_TYPE_MONSTER:
617                 case NADE_TYPE_SPAWN:
618                         nade_blast = false;
619                         switch(self.team)
620                         {
621                                 case NUM_TEAM_1: expef = EFFECT_SPAWN_RED; break;
622                                 case NUM_TEAM_2: expef = EFFECT_SPAWN_BLUE; break;
623                                 case NUM_TEAM_3: expef = EFFECT_SPAWN_YELLOW; break;
624                                 case NUM_TEAM_4: expef = EFFECT_SPAWN_PINK; break;
625                                 default: expef = EFFECT_SPAWN_NEUTRAL; break;
626                         }
627                         break;
628                 case NADE_TYPE_HEAL:
629                         nade_blast = false;
630                         expef = EFFECT_SPAWN_RED;
631                         break;
632
633                 default:
634                 case NADE_TYPE_NORMAL:
635                         expef = EFFECT_NADE_EXPLODE(self.team);
636                         break;
637         }
638
639         if(expef)
640                 Send_Effect(expef, findbetterlocation(self.origin, 8), '0 0 0', 1);
641
642         sound(self, CH_SHOTS_SINGLE, SND_Null, VOL_BASE, ATTEN_NORM);
643         sound(self, CH_SHOTS, SND_ROCKET_IMPACT, VOL_BASE, ATTEN_NORM);
644
645         self.event_damage = func_null; // prevent somehow calling damage in the next call
646
647         if(nade_blast)
648         {
649                 RadiusDamage(self, self.realowner, autocvar_g_nades_nade_damage, autocvar_g_nades_nade_edgedamage,
650                                  autocvar_g_nades_nade_radius, self, world, autocvar_g_nades_nade_force, self.projectiledeathtype, self.enemy);
651                 Damage_DamageInfo(self.origin, autocvar_g_nades_nade_damage, autocvar_g_nades_nade_edgedamage, autocvar_g_nades_nade_radius, '1 1 1' * autocvar_g_nades_nade_force, self.projectiledeathtype, 0, self);
652         }
653
654         if(self.takedamage)
655         switch ( Nades_from(self.nade_type) )
656         {
657                 case NADE_TYPE_NAPALM: nade_napalm_boom(); break;
658                 case NADE_TYPE_ICE: nade_ice_boom(); break;
659                 case NADE_TYPE_TRANSLOCATE: nade_translocate_boom(); break;
660                 case NADE_TYPE_SPAWN: nade_spawn_boom(); break;
661                 case NADE_TYPE_HEAL: nade_heal_boom(); break;
662                 case NADE_TYPE_MONSTER: nade_monster_boom(); break;
663         }
664
665         FOREACH_ENTITY_ENT(aiment, self,
666         {
667                 if(it.classname == "grapplinghook")
668                         RemoveGrapplingHook(it.realowner);
669         });
670
671         remove(self);
672 }
673
674 void spawn_held_nade(entity player, entity nowner, float ntime, int ntype, string pntype);
675 void nade_pickup(entity this, entity thenade)
676 {
677         spawn_held_nade(this, thenade.realowner, autocvar_g_nades_pickup_time, thenade.nade_type, thenade.pokenade_type);
678
679         // set refire so player can't even
680         this.nade_refire = time + autocvar_g_nades_nade_refire;
681         this.nade_timer = 0;
682
683         if(this.nade)
684                 this.nade.nade_time_primed = thenade.nade_time_primed;
685 }
686
687 bool CanThrowNade(entity this);
688 void nade_touch()
689 {SELFPARAM();
690         if(other)
691                 UpdateCSQCProjectile(self);
692
693         if(other == self.realowner)
694                 return; // no self impacts
695
696         if(autocvar_g_nades_pickup)
697         if(time >= self.spawnshieldtime)
698         if(!other.nade && self.health == self.max_health) // no boosted shot pickups, thank you very much
699         if(!other.frozen)
700         if(CanThrowNade(other)) // prevent some obvious things, like dead players
701         if(IS_REAL_CLIENT(other)) // above checks for IS_PLAYER, don't need to do it here
702         {
703                 nade_pickup(other, self);
704                 sound(self, CH_SHOTS_SINGLE, SND_Null, VOL_BASE, 0.5 *(ATTEN_LARGE + ATTEN_MAX));
705                 remove(self);
706                 return;
707         }
708         /*float is_weapclip = 0;
709         if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NODRAW)
710         if (!(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NONSOLID))
711         if (!(trace_dphitcontents & DPCONTENTS_OPAQUE))
712                 is_weapclip = 1;*/
713         if(ITEM_TOUCH_NEEDKILL()) // || is_weapclip)
714         {
715                 FOREACH_ENTITY_ENT(aiment, self,
716                 {
717                         if(it.classname == "grapplinghook")
718                                 RemoveGrapplingHook(it.realowner);
719                 });
720                 remove(self);
721                 return;
722         }
723
724         PROJECTILE_TOUCH;
725
726         //setsize(self, '-2 -2 -2', '2 2 2');
727         //UpdateCSQCProjectile(self);
728         if(self.health == self.max_health)
729         {
730                 spamsound(self, CH_SHOTS, SND(GRENADE_BOUNCE_RANDOM()), VOL_BASE, ATTEN_NORM);
731                 return;
732         }
733
734         self.enemy = other;
735         nade_boom();
736 }
737
738 void nade_beep()
739 {SELFPARAM();
740         sound(self, CH_SHOTS_SINGLE, SND_NADE_BEEP, VOL_BASE, 0.5 *(ATTEN_LARGE + ATTEN_MAX));
741         self.think = nade_boom;
742         self.nextthink = max(self.wait, time);
743 }
744
745 void nade_damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)
746 {
747         if(ITEM_DAMAGE_NEEDKILL(deathtype))
748         {
749                 this.takedamage = DAMAGE_NO;
750                 WITH(entity, self, this, nade_boom());
751                 return;
752         }
753
754         if(this.nade_type == NADE_TYPE_TRANSLOCATE.m_id || this.nade_type == NADE_TYPE_SPAWN.m_id)
755                 return;
756
757         if (MUTATOR_CALLHOOK(Nade_Damage, DEATH_WEAPONOF(deathtype), force, damage)) {}
758         else if(DEATH_ISWEAPON(deathtype, WEP_BLASTER))
759         {
760                 force *= 1.5;
761                 damage = 0;
762         }
763         else if(DEATH_ISWEAPON(deathtype, WEP_VAPORIZER) && (deathtype & HITTYPE_SECONDARY))
764         {
765                 force *= 0.5; // too much
766                 damage = 0;
767         }
768         else if(DEATH_ISWEAPON(deathtype, WEP_VORTEX) || DEATH_ISWEAPON(deathtype, WEP_VAPORIZER))
769         {
770                 force *= 6;
771                 damage = this.max_health * 0.55;
772         }
773         else if(DEATH_ISWEAPON(deathtype, WEP_MACHINEGUN))
774                 damage = this.max_health * 0.1;
775         else if(DEATH_ISWEAPON(deathtype, WEP_SHOCKWAVE) || DEATH_ISWEAPON(deathtype, WEP_SHOTGUN)) // WEAPONTODO
776         {
777                 if(deathtype & HITTYPE_SECONDARY)
778                 {
779                         damage = this.max_health * 0.1;
780                         force *= 10;
781                 }
782                 else
783                         damage = this.max_health * 1.15;
784         }
785
786         this.velocity += force;
787         UpdateCSQCProjectile(this);
788
789         if(damage <= 0 || ((IS_ONGROUND(this)) && IS_PLAYER(attacker)))
790                 return;
791
792         if(this.health == this.max_health)
793         {
794                 sound(this, CH_SHOTS_SINGLE, SND_Null, VOL_BASE, 0.5 *(ATTEN_LARGE + ATTEN_MAX));
795                 this.nextthink = max(time + autocvar_g_nades_nade_lifetime, time);
796                 this.think = nade_beep;
797         }
798
799         this.health -= damage;
800
801         if ( this.nade_type != NADE_TYPE_HEAL.m_id || IS_PLAYER(attacker) )
802         {
803                 this.team = attacker.team;
804                 this.realowner = attacker;
805         }
806
807         if(this.health <= 0)
808                 WITH(entity, self, this, W_PrepareExplosionByDamage(attacker, nade_boom));
809         else
810                 nade_burn_spawn(this);
811 }
812
813 void toss_nade(entity e, bool set_owner, vector _velocity, float _time)
814 {SELFPARAM();
815         if(e.nade == world)
816                 return;
817
818         entity _nade = e.nade;
819         e.nade = world;
820
821         remove(e.fake_nade);
822         e.fake_nade = world;
823
824         makevectors(e.v_angle);
825
826         W_SetupShot(e, false, false, "", CH_WEAPON_A, 0);
827
828         Kill_Notification(NOTIF_ONE_ONLY, e, MSG_CENTER, CPID_NADES);
829
830         vector offset = (v_forward * autocvar_g_nades_throw_offset.x)
831                                   + (v_right * autocvar_g_nades_throw_offset.y)
832                                   + (v_up * autocvar_g_nades_throw_offset.z);
833         if(autocvar_g_nades_throw_offset == '0 0 0')
834                 offset = '0 0 0';
835
836         setorigin(_nade, w_shotorg + offset + (v_right * 25) * -1);
837         //setmodel(_nade, MDL_PROJECTILE_NADE);
838         //setattachment(_nade, world, "");
839         PROJECTILE_MAKETRIGGER(_nade);
840         if(STAT(NADES_SMALL, e))
841                 setsize(_nade, '-8 -8 -8', '8 8 8');
842         else
843                 setsize(_nade, '-16 -16 -16', '16 16 16');
844         _nade.movetype = MOVETYPE_BOUNCE;
845
846         tracebox(_nade.origin, _nade.mins, _nade.maxs, _nade.origin, false, _nade);
847         if (trace_startsolid)
848                 setorigin(_nade, e.origin);
849
850         if(self.v_angle.x >= 70 && self.v_angle.x <= 110 && PHYS_INPUT_BUTTON_CROUCH(self))
851                 _nade.velocity = '0 0 100';
852         else if(autocvar_g_nades_nade_newton_style == 1)
853                 _nade.velocity = e.velocity + _velocity;
854         else if(autocvar_g_nades_nade_newton_style == 2)
855                 _nade.velocity = _velocity;
856         else
857                 _nade.velocity = W_CalculateProjectileVelocity(e.velocity, _velocity, true);
858
859         if(set_owner)
860                 _nade.realowner = e;
861
862         _nade.touch = nade_touch;
863         _nade.spawnshieldtime = time + 0.1; // prevent instantly picking up again
864         _nade.health = autocvar_g_nades_nade_health;
865         _nade.max_health = _nade.health;
866         _nade.takedamage = DAMAGE_AIM;
867         _nade.event_damage = nade_damage;
868         _nade.customizeentityforclient = func_null;
869         _nade.exteriormodeltoclient = world;
870         _nade.traileffectnum = 0;
871         _nade.teleportable = true;
872         _nade.pushable = true;
873         _nade.gravity = 1;
874         _nade.missile_flags = MIF_SPLASH | MIF_ARC;
875         _nade.damagedbycontents = true;
876         _nade.angles = vectoangles(_nade.velocity);
877         _nade.flags = FL_PROJECTILE;
878         _nade.projectiledeathtype = DEATH_NADE.m_id;
879         _nade.toss_time = time;
880         _nade.solid = SOLID_CORPSE; //((_nade.nade_type == NADE_TYPE_TRANSLOCATE) ? SOLID_CORPSE : SOLID_BBOX);
881
882         if(_nade.nade_type == NADE_TYPE_TRANSLOCATE.m_id || _nade.nade_type == NADE_TYPE_SPAWN.m_id)
883                 _nade.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_PLAYERCLIP | DPCONTENTS_BOTCLIP;
884         else
885                 _nade.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY;
886
887         nade_spawn(_nade);
888
889         if(_time)
890         {
891                 _nade.think = nade_boom;
892                 _nade.nextthink = _time;
893         }
894
895         e.nade_refire = time + autocvar_g_nades_nade_refire;
896         e.nade_timer = 0;
897 }
898
899 void nades_GiveBonus(entity player, float score)
900 {
901         if (autocvar_g_nades)
902         if (autocvar_g_nades_bonus)
903         if (IS_REAL_CLIENT(player))
904         if (IS_PLAYER(player) && player.bonus_nades < autocvar_g_nades_bonus_max)
905         if (STAT(FROZEN, player) == 0)
906         if (!IS_DEAD(player))
907         {
908                 if ( player.bonus_nade_score < 1 )
909                         player.bonus_nade_score += score/autocvar_g_nades_bonus_score_max;
910
911                 if ( player.bonus_nade_score >= 1 )
912                 {
913                         Send_Notification(NOTIF_ONE, player, MSG_CENTER, CENTER_NADE_BONUS);
914                         play2(player, SND(KH_ALARM));
915                         player.bonus_nades++;
916                         player.bonus_nade_score -= 1;
917                 }
918         }
919 }
920
921 /** Remove all bonus nades from a player */
922 void nades_RemoveBonus(entity player)
923 {
924         player.bonus_nades = player.bonus_nade_score = 0;
925 }
926
927 MUTATOR_HOOKFUNCTION(nades, PutClientInServer)
928 {
929         nades_RemoveBonus(self);
930 }
931
932 float nade_customize()
933 {SELFPARAM();
934         //if(IS_SPEC(other)) { return false; }
935         if(other == self.exteriormodeltoclient || (IS_SPEC(other) && other.enemy == self.exteriormodeltoclient))
936         {
937                 // somewhat hide the model, but keep the glow
938                 //self.effects = 0;
939                 if(self.traileffectnum)
940                         self.traileffectnum = 0;
941                 self.alpha = -1;
942         }
943         else
944         {
945                 //self.effects = EF_ADDITIVE | EF_FULLBRIGHT | EF_LOWPRECISION;
946                 if(!self.traileffectnum)
947                         self.traileffectnum = _particleeffectnum(Nade_TrailEffect(Nades_from(self.nade_type).m_projectile[false], self.team).eent_eff_name);
948                 self.alpha = 1;
949         }
950
951         return true;
952 }
953
954 void spawn_held_nade(entity player, entity nowner, float ntime, int ntype, string pntype)
955 {
956         entity n = new(nade), fn = new(fake_nade);
957
958         n.nade_type = bound(1, ntype, Nades_COUNT);
959         n.pokenade_type = pntype;
960
961         setmodel(n, MDL_PROJECTILE_NADE);
962         //setattachment(n, player, "bip01 l hand");
963         n.exteriormodeltoclient = player;
964         n.customizeentityforclient = nade_customize;
965         n.team = player.team;
966         n.traileffectnum = _particleeffectnum(Nade_TrailEffect(Nades_from(n.nade_type).m_projectile[false], n.team).eent_eff_name);
967         n.colormod = Nades_from(n.nade_type).m_color;
968         n.realowner = nowner;
969         n.colormap = player.colormap;
970         n.glowmod = player.glowmod;
971         n.wait = time + max(0, ntime);
972         n.nade_time_primed = time;
973         n.think = nade_beep;
974         n.nextthink = max(n.wait - 3, time);
975         n.projectiledeathtype = DEATH_NADE.m_id;
976
977         setmodel(fn, MDL_NADE_VIEW);
978         .entity weaponentity = weaponentities[0]; // TODO: unhardcode
979         setattachment(fn, player.(weaponentity), "");
980         fn.realowner = fn.owner = player;
981         fn.colormod = Nades_from(n.nade_type).m_color;
982         fn.colormap = player.colormap;
983         fn.glowmod = player.glowmod;
984         fn.think = SUB_Remove_self;
985         fn.nextthink = n.wait;
986
987         player.nade = n;
988         player.fake_nade = fn;
989 }
990
991 void nade_prime()
992 {SELFPARAM();
993         if(autocvar_g_nades_bonus_only)
994         if(!self.bonus_nades)
995                 return; // only allow bonus nades
996
997         if(self.nade)
998                 remove(self.nade);
999
1000         if(self.fake_nade)
1001                 remove(self.fake_nade);
1002
1003         int ntype;
1004         string pntype = self.pokenade_type;
1005
1006         if(self.items & ITEM_Strength.m_itemid && autocvar_g_nades_bonus_onstrength)
1007                 ntype = self.nade_type;
1008         else if (self.bonus_nades >= 1)
1009         {
1010                 ntype = self.nade_type;
1011                 pntype = self.pokenade_type;
1012                 self.bonus_nades -= 1;
1013         }
1014         else
1015         {
1016                 ntype = ((autocvar_g_nades_client_select) ? self.cvar_cl_nade_type : autocvar_g_nades_nade_type);
1017                 pntype = ((autocvar_g_nades_client_select) ? self.cvar_cl_pokenade_type : autocvar_g_nades_pokenade_monster_type);
1018         }
1019
1020         spawn_held_nade(self, self, autocvar_g_nades_nade_lifetime, ntype, pntype);
1021 }
1022
1023 bool CanThrowNade(entity this)
1024 {
1025         if(this.vehicle)
1026                 return false;
1027
1028         if(gameover)
1029                 return false;
1030
1031         if(IS_DEAD(this))
1032                 return false;
1033
1034         if (!autocvar_g_nades)
1035                 return false; // allow turning them off mid match
1036
1037         if(forbidWeaponUse(this))
1038                 return false;
1039
1040         if (!IS_PLAYER(this))
1041                 return false;
1042
1043         return true;
1044 }
1045
1046 .bool nade_altbutton;
1047
1048 void nades_CheckThrow()
1049 {SELFPARAM();
1050         if(!CanThrowNade(self))
1051                 return;
1052
1053         entity held_nade = self.nade;
1054         if (!held_nade)
1055         {
1056                 self.nade_altbutton = true;
1057                 if(time > self.nade_refire)
1058                 {
1059                         Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_NADE_THROW);
1060                         nade_prime();
1061                         self.nade_refire = time + autocvar_g_nades_nade_refire;
1062                 }
1063         }
1064         else
1065         {
1066                 self.nade_altbutton = false;
1067                 if (time >= held_nade.nade_time_primed + 1) {
1068                         makevectors(self.v_angle);
1069                         float _force = time - held_nade.nade_time_primed;
1070                         _force /= autocvar_g_nades_nade_lifetime;
1071                         _force = autocvar_g_nades_nade_minforce + (_force * (autocvar_g_nades_nade_maxforce - autocvar_g_nades_nade_minforce));
1072                         toss_nade(self, true, (v_forward * 0.75 + v_up * 0.2 + v_right * 0.05) * _force, 0);
1073                 }
1074         }
1075 }
1076
1077 void nades_Clear(entity player)
1078 {
1079         if(player.nade)
1080                 remove(player.nade);
1081         if(player.fake_nade)
1082                 remove(player.fake_nade);
1083
1084         player.nade = player.fake_nade = world;
1085         player.nade_timer = 0;
1086 }
1087
1088 MUTATOR_HOOKFUNCTION(nades, VehicleEnter)
1089 {
1090         if(vh_player.nade)
1091                 toss_nade(vh_player, true, '0 0 100', max(vh_player.nade.wait, time + 0.05));
1092
1093         return false;
1094 }
1095
1096 CLASS(NadeOffhand, OffhandWeapon)
1097     METHOD(NadeOffhand, offhand_think, void(NadeOffhand this, entity player, bool key_pressed))
1098     {
1099         entity held_nade = player.nade;
1100                 if (held_nade)
1101                 {
1102                         player.nade_timer = bound(0, (time - held_nade.nade_time_primed) / autocvar_g_nades_nade_lifetime, 1);
1103                         // LOG_TRACEF("%d %d\n", player.nade_timer, time - held_nade.nade_time_primed);
1104                         makevectors(player.angles);
1105                         held_nade.velocity = player.velocity;
1106                         setorigin(held_nade, player.origin + player.view_ofs + v_forward * 8 + v_right * -8 + v_up * 0);
1107                         held_nade.angles_y = player.angles.y;
1108
1109                         if (time + 0.1 >= held_nade.wait)
1110                                 toss_nade(player, false, '0 0 0', time + 0.05);
1111                 }
1112
1113         if (!CanThrowNade(player)) return;
1114         if (!(time > player.nade_refire)) return;
1115                 if (key_pressed) {
1116                         if (!held_nade) {
1117                                 nade_prime();
1118                                 held_nade = player.nade;
1119                         }
1120                 } else if (time >= held_nade.nade_time_primed + 1) {
1121                         if (held_nade) {
1122                                 makevectors(player.v_angle);
1123                                 float _force = time - held_nade.nade_time_primed;
1124                                 _force /= autocvar_g_nades_nade_lifetime;
1125                                 _force = autocvar_g_nades_nade_minforce + (_force * (autocvar_g_nades_nade_maxforce - autocvar_g_nades_nade_minforce));
1126                                 toss_nade(player, false, (v_forward * 0.7 + v_up * 0.2 + v_right * 0.1) * _force, 0);
1127                         }
1128                 }
1129     }
1130 ENDCLASS(NadeOffhand)
1131 NadeOffhand OFFHAND_NADE; STATIC_INIT(OFFHAND_NADE) { OFFHAND_NADE = NEW(NadeOffhand); }
1132
1133 MUTATOR_HOOKFUNCTION(nades, ForbidThrowCurrentWeapon, CBC_ORDER_LAST)
1134 {
1135         if (self.offhand != OFFHAND_NADE || (self.weapons & WEPSET(HOOK)) || autocvar_g_nades_override_dropweapon) {
1136                 nades_CheckThrow();
1137                 return true;
1138         }
1139         return false;
1140 }
1141
1142 MUTATOR_HOOKFUNCTION(nades, PlayerPreThink)
1143 {SELFPARAM();
1144         if (!IS_PLAYER(self)) { return false; }
1145
1146         if (self.nade && (self.offhand != OFFHAND_NADE || (self.weapons & WEPSET(HOOK)))) OFFHAND_NADE.offhand_think(OFFHAND_NADE, self, self.nade_altbutton);
1147
1148         if(IS_PLAYER(self))
1149         {
1150                 if ( autocvar_g_nades_bonus && autocvar_g_nades )
1151                 {
1152                         entity key;
1153                         float key_count = 0;
1154                         FOR_EACH_KH_KEY(key) if(key.owner == self) { ++key_count; }
1155
1156                         float time_score;
1157                         if(self.flagcarried || self.ballcarried) // this player is important
1158                                 time_score = autocvar_g_nades_bonus_score_time_flagcarrier;
1159                         else
1160                                 time_score = autocvar_g_nades_bonus_score_time;
1161
1162                         if(key_count)
1163                                 time_score = autocvar_g_nades_bonus_score_time_flagcarrier * key_count; // multiply by the number of keys the player is holding
1164
1165                         if(autocvar_g_nades_bonus_client_select)
1166                         {
1167                                 self.nade_type = self.cvar_cl_nade_type;
1168                                 self.pokenade_type = self.cvar_cl_pokenade_type;
1169                         }
1170                         else
1171                         {
1172                                 self.nade_type = autocvar_g_nades_bonus_type;
1173                                 self.pokenade_type = autocvar_g_nades_pokenade_monster_type;
1174                         }
1175
1176                         self.nade_type = bound(1, self.nade_type, Nades_COUNT);
1177
1178                         if(self.bonus_nade_score >= 0 && autocvar_g_nades_bonus_score_max)
1179                                 nades_GiveBonus(self, time_score / autocvar_g_nades_bonus_score_max);
1180                 }
1181                 else
1182                 {
1183                         self.bonus_nades = self.bonus_nade_score = 0;
1184                 }
1185         }
1186
1187         float n = 0;
1188         entity o = world;
1189         if(self.freezetag_frozen_timeout > 0 && time >= self.freezetag_frozen_timeout)
1190                 n = -1;
1191         else
1192         {
1193                 vector revive_extra_size = '1 1 1' * autocvar_g_freezetag_revive_extra_size;
1194                 n = 0;
1195                 FOREACH_CLIENT(IS_PLAYER(it) && it != self, LAMBDA(
1196                         if(!IS_DEAD(it))
1197                         if(STAT(FROZEN, it) == 0)
1198                         if(SAME_TEAM(it, self))
1199                         if(boxesoverlap(self.absmin - revive_extra_size, self.absmax + revive_extra_size, it.absmin, it.absmax))
1200                         {
1201                                 if(!o)
1202                                         o = it;
1203                                 if(STAT(FROZEN, self) == 1)
1204                                         it.reviving = true;
1205                                 ++n;
1206                         }
1207                 ));
1208         }
1209
1210         if(n && STAT(FROZEN, self) == 3) // OK, there is at least one teammate reviving us
1211         {
1212                 self.revive_progress = bound(0, self.revive_progress + frametime * max(1/60, autocvar_g_freezetag_revive_speed), 1);
1213                 self.health = max(1, self.revive_progress * start_health);
1214
1215                 if(self.revive_progress >= 1)
1216                 {
1217                         Unfreeze(self);
1218
1219                         Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_FREEZETAG_REVIVED, o.netname);
1220                         Send_Notification(NOTIF_ONE, o, MSG_CENTER, CENTER_FREEZETAG_REVIVE, self.netname);
1221                 }
1222
1223                 FOREACH_CLIENT(IS_PLAYER(it) && it.reviving, LAMBDA(
1224                         other.revive_progress = self.revive_progress;
1225                         other.reviving = false;
1226                 ));
1227         }
1228
1229         return false;
1230 }
1231
1232 MUTATOR_HOOKFUNCTION(nades, PlayerSpawn)
1233 {SELFPARAM();
1234         if(autocvar_g_nades_spawn)
1235                 self.nade_refire = time + autocvar_g_spawnshieldtime;
1236         else
1237                 self.nade_refire  = time + autocvar_g_nades_nade_refire;
1238
1239         if(autocvar_g_nades_bonus_client_select)
1240                 self.nade_type = self.cvar_cl_nade_type;
1241
1242         self.nade_timer = 0;
1243
1244         if (!self.offhand) self.offhand = OFFHAND_NADE;
1245
1246         if(self.nade_spawnloc)
1247         {
1248                 setorigin(self, self.nade_spawnloc.origin);
1249                 self.nade_spawnloc.cnt -= 1;
1250
1251                 if(self.nade_spawnloc.cnt <= 0)
1252                 {
1253                         remove(self.nade_spawnloc);
1254                         self.nade_spawnloc = world;
1255                 }
1256         }
1257
1258         return false;
1259 }
1260
1261 MUTATOR_HOOKFUNCTION(nades, PlayerDies, CBC_ORDER_LAST)
1262 {
1263         if(frag_target.nade)
1264         if(!STAT(FROZEN, frag_target) || !autocvar_g_freezetag_revive_nade)
1265                 toss_nade(frag_target, true, '0 0 100', max(frag_target.nade.wait, time + 0.05));
1266
1267         float killcount_bonus = ((frag_attacker.killcount >= 1) ? bound(0, autocvar_g_nades_bonus_score_minor * frag_attacker.killcount, autocvar_g_nades_bonus_score_medium) : autocvar_g_nades_bonus_score_minor);
1268
1269         if(IS_PLAYER(frag_attacker))
1270         {
1271                 if (SAME_TEAM(frag_attacker, frag_target) || frag_attacker == frag_target)
1272                         nades_RemoveBonus(frag_attacker);
1273                 else if(frag_target.flagcarried)
1274                         nades_GiveBonus(frag_attacker, autocvar_g_nades_bonus_score_medium);
1275                 else if(autocvar_g_nades_bonus_score_spree && frag_attacker.killcount > 1)
1276                 {
1277                         #define SPREE_ITEM(counta,countb,center,normal,gentle) \
1278                                 case counta: { nades_GiveBonus(frag_attacker, autocvar_g_nades_bonus_score_spree); break; }
1279                         switch(frag_attacker.killcount)
1280                         {
1281                                 KILL_SPREE_LIST
1282                                 default: nades_GiveBonus(frag_attacker, autocvar_g_nades_bonus_score_minor); break;
1283                         }
1284                         #undef SPREE_ITEM
1285                 }
1286                 else
1287                         nades_GiveBonus(frag_attacker, killcount_bonus);
1288         }
1289
1290         nades_RemoveBonus(frag_target);
1291
1292         return false;
1293 }
1294
1295 MUTATOR_HOOKFUNCTION(nades, PlayerDamage_Calculate)
1296 {
1297         if(STAT(FROZEN, frag_target))
1298         if(autocvar_g_freezetag_revive_nade)
1299         if(frag_attacker == frag_target)
1300         if(frag_deathtype == DEATH_NADE.m_id)
1301         if(time - frag_inflictor.toss_time <= 0.1)
1302         {
1303                 Unfreeze(frag_target);
1304                 frag_target.health = autocvar_g_freezetag_revive_nade_health;
1305                 Send_Effect(EFFECT_ICEORGLASS, frag_target.origin, '0 0 0', 3);
1306                 frag_damage = 0;
1307                 frag_force = '0 0 0';
1308                 Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_FREEZETAG_REVIVED_NADE, frag_target.netname);
1309                 Send_Notification(NOTIF_ONE, frag_target, MSG_CENTER, CENTER_FREEZETAG_REVIVE_SELF);
1310         }
1311
1312         return false;
1313 }
1314
1315 MUTATOR_HOOKFUNCTION(nades, MonsterDies)
1316 {
1317         if(IS_PLAYER(frag_attacker))
1318         if(DIFF_TEAM(frag_attacker, frag_target))
1319         if(!(frag_target.spawnflags & MONSTERFLAG_SPAWNED))
1320                 nades_GiveBonus(frag_attacker, autocvar_g_nades_bonus_score_minor);
1321
1322         return false;
1323 }
1324
1325 MUTATOR_HOOKFUNCTION(nades, DropSpecialItems)
1326 {
1327         if(frag_target.nade)
1328                 toss_nade(frag_target, true, '0 0 0', time + 0.05);
1329
1330         return false;
1331 }
1332
1333 bool nades_RemovePlayer()
1334 {SELFPARAM();
1335         nades_Clear(self);
1336         nades_RemoveBonus(self);
1337         return false;
1338 }
1339
1340 MUTATOR_HOOKFUNCTION(nades, MakePlayerObserver) { nades_RemovePlayer(); }
1341 MUTATOR_HOOKFUNCTION(nades, ClientDisconnect) { nades_RemovePlayer(); }
1342 MUTATOR_HOOKFUNCTION(nades, reset_map_global) { nades_RemovePlayer(); }
1343
1344 MUTATOR_HOOKFUNCTION(nades, SpectateCopy)
1345 {SELFPARAM();
1346         self.nade_timer = other.nade_timer;
1347         self.nade_type = other.nade_type;
1348         self.pokenade_type = other.pokenade_type;
1349         self.bonus_nades = other.bonus_nades;
1350         self.bonus_nade_score = other.bonus_nade_score;
1351         self.stat_healing_orb = other.stat_healing_orb;
1352         self.stat_healing_orb_alpha = other.stat_healing_orb_alpha;
1353         return false;
1354 }
1355
1356 REPLICATE(cvar_cl_nade_type, int, "cl_nade_type");
1357 REPLICATE(cvar_cl_pokenade_type, string, "cl_pokenade_type");
1358
1359 MUTATOR_HOOKFUNCTION(nades, BuildMutatorsString)
1360 {
1361         ret_string = strcat(ret_string, ":Nades");
1362         return false;
1363 }
1364
1365 MUTATOR_HOOKFUNCTION(nades, BuildMutatorsPrettyString)
1366 {
1367         ret_string = strcat(ret_string, ", Nades");
1368         return false;
1369 }
1370
1371 MUTATOR_HOOKFUNCTION(nades, BuildGameplayTipsString)
1372 {
1373         ret_string = strcat(ret_string, "\n\n^3nades^8 are enabled, press 'g' to use them\n");
1374         return false;
1375 }
1376
1377 #endif
1378 #endif