home *** CD-ROM | disk | FTP | other *** search
/ Quaaake Level & Editor 2 / Quaaake_2.iso / Quake / guid / SOURCE / WEAPONS.QC < prev    next >
Encoding:
Text File  |  1996-10-03  |  33.2 KB  |  1,463 lines

  1. /*
  2. */
  3. void (entity targ, entity inflictor, entity attacker, float damage) T_Damage;
  4. void () player_run;
  5. void(entity bomb, entity attacker, float rad, entity ignore) T_RadiusDamage;
  6. void(vector org, vector vel, float damage) SpawnBlood;
  7. void() SuperDamageSound;
  8.  
  9.  
  10. // called by worldspawn
  11. void() W_Precache =
  12. {
  13.     precache_sound ("weapons/r_exp3.wav");    // new rocket explosion
  14.     precache_sound ("weapons/rocket1i.wav");    // spike gun
  15.     precache_sound ("weapons/sgun1.wav");
  16.     precache_sound ("weapons/guncock.wav");    // player shotgun
  17.     precache_sound ("weapons/ric1.wav");    // ricochet (used in c code)
  18.     precache_sound ("weapons/ric2.wav");    // ricochet (used in c code)
  19.     precache_sound ("weapons/ric3.wav");    // ricochet (used in c code)
  20.     precache_sound ("weapons/spike2.wav");    // super spikes
  21.     precache_sound ("weapons/tink1.wav");    // spikes tink (used in c code)
  22.     precache_sound ("weapons/grenade.wav");    // grenade launcher
  23.     precache_sound ("weapons/bounce.wav");        // grenade bounce
  24.     precache_sound ("weapons/shotgn2.wav");    // super shotgun
  25. };
  26.  
  27. void(entity me, entity camera)     SetViewPoint;
  28. void(entity me, vector viewangles) SetViewAngle;
  29.  
  30. float SVC_SETVIEWPORT = 5;    // Net.Protocol 0x05
  31. float SVC_SETVIEWANGLES = 10; // Net.Protocol 0x0A
  32. float SVC_UPDATEENTITY = 128; // Net.Protocol 0x80
  33.  
  34. void(entity me, entity camera) SetViewPoint =
  35. {
  36.   msg_entity = me;                         // target of message
  37.   WriteByte (MSG_ONE, SVC_SETVIEWPORT);    // 5 = SVC_SETVIEWPORT;  
  38.   WriteEntity (MSG_ONE, camera);           // view port
  39.   WriteByte (MSG_ONE, SVC_SETVIEWANGLES);  // 10 = SVC_SETVIEWANGLES
  40.   WriteAngle(MSG_ONE, camera.angles_x);    // tilt 
  41.   WriteAngle(MSG_ONE, camera.angles_y);    // yaw
  42.   WriteAngle(MSG_ONE, camera.angles_z);    // flip
  43. };
  44.  
  45. void(entity me, vector viewangles) SetViewAngle =
  46. {
  47.   msg_entity = me;                         // target of message
  48.   WriteByte(MSG_ONE, SVC_SETVIEWANGLES);   // 10 = SVC_SETVIEWANGLES
  49.   WriteAngle(MSG_ONE, viewangles_x);       // tilt 
  50.   WriteAngle(MSG_ONE, viewangles_y);       // yaw
  51.   WriteAngle(MSG_ONE, viewangles_z);       // flip
  52. };
  53.  
  54.  
  55. float() crandom =
  56. {
  57.     return 2*(random() - 0.5);
  58. };
  59.  
  60. /*
  61. ================
  62. W_FireAxe
  63. ================
  64. */
  65. void() W_FireAxe =
  66. {
  67.     local    vector    source;
  68.     local    vector    org;
  69.  
  70.     source = self.origin + '0 0 16';
  71.         traceline (source, source + v_forward*64, FALSE, self);
  72.     if (trace_fraction == 1.0)
  73.         return;
  74.     
  75.     org = trace_endpos - v_forward*4;
  76.  
  77.     if (trace_ent.takedamage)
  78.     {
  79.         trace_ent.axhitme = 1;
  80.         SpawnBlood (org, '0 0 0', 20);
  81.         T_Damage (trace_ent, self, self, 20);
  82.     }
  83.     else
  84.     {    // hit wall
  85.         sound (self, CHAN_WEAPON, "player/axhit2.wav", 1, ATTN_NORM);
  86.         WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  87.         WriteByte (MSG_BROADCAST, TE_GUNSHOT);
  88.         WriteCoord (MSG_BROADCAST, org_x);
  89.         WriteCoord (MSG_BROADCAST, org_y);
  90.         WriteCoord (MSG_BROADCAST, org_z);
  91.     }
  92. };
  93.  
  94.  
  95. //============================================================================
  96.  
  97.  
  98. vector() wall_velocity =
  99. {
  100.     local vector    vel;
  101.     
  102.     vel = normalize (self.velocity);
  103.     vel = normalize(vel + v_up*(random()- 0.5) + v_right*(random()- 0.5));
  104.     vel = vel + 2*trace_plane_normal;
  105.     vel = vel * 200;
  106.     
  107.     return vel;
  108. };
  109.  
  110.  
  111. /*
  112. ================
  113. SpawnMeatSpray
  114. ================
  115. */
  116. void(vector org, vector vel) SpawnMeatSpray =
  117. {
  118.     local    entity missile, mpuff;
  119.     local    vector    org;
  120.  
  121.     missile = spawn ();
  122.     missile.owner = self;
  123.     missile.movetype = MOVETYPE_BOUNCE;
  124.     missile.solid = SOLID_NOT;
  125.  
  126.     makevectors (self.angles);
  127.  
  128.     missile.velocity = vel;
  129.     missile.velocity_z = missile.velocity_z + 250 + 50*random();
  130.  
  131.     missile.avelocity = '3000 1000 2000';
  132.     
  133. // set missile duration
  134.     missile.nextthink = time + 1;
  135.     missile.think = SUB_Remove;
  136.  
  137.     setmodel (missile, "progs/zom_gib.mdl");
  138.     setsize (missile, '0 0 0', '0 0 0');        
  139.     setorigin (missile, org);
  140. };
  141.  
  142. /*
  143. ================
  144. SpawnBlood
  145. ================
  146. */
  147. void(vector org, vector vel, float damage) SpawnBlood =
  148. {
  149.     particle (org, vel*0.1, 73, damage*2);
  150. };
  151.  
  152. /*
  153. ================
  154. spawn_touchblood
  155. ================
  156. */
  157. void(float damage) spawn_touchblood =
  158. {
  159.     local vector    vel;
  160.  
  161.     vel = wall_velocity () * 0.2;
  162.     SpawnBlood (self.origin + vel*0.01, vel, damage);
  163. };
  164.  
  165.  
  166. /*
  167. ================
  168. SpawnChunk
  169. ================
  170. */
  171. void(vector org, vector vel) SpawnChunk =
  172. {
  173.     particle (org, vel*0.02, 0, 10);
  174. };
  175.  
  176. /*
  177. ==============================================================================
  178.  
  179. MULTI-DAMAGE
  180.  
  181. Collects multiple small damages into a single damage
  182.  
  183. ==============================================================================
  184. */
  185.  
  186. entity    multi_ent;
  187. float    multi_damage;
  188.  
  189. void() ClearMultiDamage =
  190. {
  191.     multi_ent = world;
  192.     multi_damage = 0;
  193. };
  194.  
  195. void() ApplyMultiDamage =
  196. {
  197.     if (!multi_ent)
  198.         return;
  199.     T_Damage (multi_ent, self, self, multi_damage);
  200. };
  201.  
  202. void(entity hit, float damage) AddMultiDamage =
  203. {
  204.     if (!hit)
  205.         return;
  206.     
  207.     if (hit != multi_ent)
  208.     {
  209.         ApplyMultiDamage ();
  210.         multi_damage = damage;
  211.         multi_ent = hit;
  212.     }
  213.     else
  214.         multi_damage = multi_damage + damage;
  215. };
  216.  
  217. /*
  218. ==============================================================================
  219.  
  220. BULLETS
  221.  
  222. ==============================================================================
  223. */
  224.  
  225. /*
  226. ================
  227. TraceAttack
  228. ================
  229. */
  230. void(float damage, vector dir) TraceAttack =
  231. {
  232.     local    vector    vel, org;
  233.     
  234.     vel = normalize(dir + v_up*crandom() + v_right*crandom());
  235.     vel = vel + 2*trace_plane_normal;
  236.     vel = vel * 200;
  237.  
  238.     org = trace_endpos - dir*4;
  239.  
  240.     if (trace_ent.takedamage)
  241.     {
  242.         SpawnBlood (org, vel*0.2, damage);
  243.         AddMultiDamage (trace_ent, damage);
  244.     }
  245.     else
  246.     {
  247.         WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  248.         WriteByte (MSG_BROADCAST, TE_GUNSHOT);
  249.         WriteCoord (MSG_BROADCAST, org_x);
  250.         WriteCoord (MSG_BROADCAST, org_y);
  251.         WriteCoord (MSG_BROADCAST, org_z);
  252.     }
  253. };
  254.  
  255. /*
  256. ================
  257. FireBullets
  258.  
  259. Used by shotgun, super shotgun, and enemy soldier firing
  260. Go to the trouble of combining multiple pellets into a single damage call.
  261. ================
  262. */
  263. void(float shotcount, vector dir, vector spread) FireBullets =
  264. {
  265.     local    vector direction;
  266.     local    vector    src;
  267.     
  268.     makevectors(self.v_angle);
  269.  
  270.     src = self.origin + v_forward*10;
  271.     src_z = self.absmin_z + self.size_z * 0.7;
  272.  
  273.     ClearMultiDamage ();
  274.     while (shotcount > 0)
  275.     {
  276.         direction = dir + crandom()*spread_x*v_right + crandom()*spread_y*v_up;
  277.  
  278.         traceline (src, src + direction*2048, FALSE, self);
  279.         if (trace_fraction != 1.0)
  280.             TraceAttack (4, direction);
  281.  
  282.         shotcount = shotcount - 1;
  283.     }
  284.     ApplyMultiDamage ();
  285. };
  286.  
  287. /*
  288. ================
  289. W_FireShotgun
  290. ================
  291. */
  292. void() W_FireShotgun =
  293. {
  294.     local vector dir;
  295.  
  296.     sound (self, CHAN_WEAPON, "weapons/guncock.wav", 1, ATTN_NORM);    
  297.  
  298.     self.punchangle_x = -2;
  299.     
  300.     self.currentammo = self.ammo_shells = self.ammo_shells - 1;
  301.     dir = aim (self, 100000);
  302.     FireBullets (6, dir, '0.04 0.04 0');
  303. };
  304.  
  305.  
  306. /*
  307. ================
  308. W_FireSuperShotgun
  309. ================
  310. */
  311. void() W_FireSuperShotgun =
  312. {
  313.     local vector dir;
  314.  
  315.     if (self.currentammo == 1)
  316.     {
  317.         W_FireShotgun ();
  318.         return;
  319.     }
  320.         
  321.     sound (self ,CHAN_WEAPON, "weapons/shotgn2.wav", 1, ATTN_NORM);    
  322.  
  323.     self.punchangle_x = -4;
  324.     
  325.     self.currentammo = self.ammo_shells = self.ammo_shells - 2;
  326.     dir = aim (self, 100000);
  327.     FireBullets (14, dir, '0.14 0.08 0');
  328. };
  329.  
  330.  
  331. /*
  332. ==============================================================================
  333.  
  334. ROCKETS
  335.  
  336. ==============================================================================
  337. */
  338.  
  339. void()    s_explode1    =    [0,        s_explode2] {};
  340. void()    s_explode2    =    [1,        s_explode3] {};
  341. void()    s_explode3    =    [2,        s_explode4] {};
  342. void()    s_explode4    =    [3,        s_explode5] {};
  343. void()    s_explode5    =    [4,        s_explode6] {};
  344. void()    s_explode6    =    [5,        SUB_Remove] {};
  345.  
  346. void() BecomeExplosion =
  347. {
  348.     self.movetype = MOVETYPE_NONE;
  349.     self.velocity = '0 0 0';
  350.     self.touch = SUB_Null;
  351.     setmodel (self, "progs/s_explod.spr");
  352.     self.solid = SOLID_NOT;
  353.     s_explode1 ();
  354. };
  355.  
  356. void() T_MissileTouch =
  357. {
  358.     local float    damg;
  359.  
  360.     if (other == self.owner)
  361.         return;        // don't explode on owner
  362.  
  363.     if (pointcontents(self.origin) == CONTENT_SKY)
  364.     {
  365.         remove(self);
  366.         return;
  367.     }
  368.  
  369.     damg = 100 + random()*20;
  370.     
  371.     if (other.health)
  372.     {
  373.         if (other.classname == "monster_shambler")
  374.             damg = damg * 0.5;    // mostly immune
  375.         T_Damage (other, self, self.owner, damg );
  376.     }
  377.  
  378.     // don't do radius damage to the other, because all the damage
  379.     // was done in the impact
  380.     T_RadiusDamage (self, self.owner, 120, other);
  381.  
  382. //    sound (self, CHAN_WEAPON, "weapons/r_exp3.wav", 1, ATTN_NORM);
  383.     self.origin = self.origin - 8*normalize(self.velocity);
  384.  
  385.     WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  386.     WriteByte (MSG_BROADCAST, TE_EXPLOSION);
  387.     WriteCoord (MSG_BROADCAST, self.origin_x);
  388.     WriteCoord (MSG_BROADCAST, self.origin_y);
  389.     WriteCoord (MSG_BROADCAST, self.origin_z);
  390.  
  391.     BecomeExplosion ();
  392. };
  393.  
  394.  
  395.  
  396. /*
  397. ================
  398. W_FireRocket
  399. ================
  400. */
  401. void() W_FireRocket =
  402. {
  403.     local    entity missile, mpuff;
  404.     
  405.     self.currentammo = self.ammo_rockets = self.ammo_rockets - 1;
  406.     
  407.     sound (self, CHAN_WEAPON, "weapons/sgun1.wav", 1, ATTN_NORM);
  408.  
  409.     self.punchangle_x = -2;
  410.  
  411.     missile = spawn ();
  412.     missile.owner = self;
  413.     missile.movetype = MOVETYPE_FLYMISSILE;
  414.     missile.solid = SOLID_BBOX;
  415.         
  416. // set missile speed    
  417.  
  418.     makevectors (self.v_angle);
  419.     missile.velocity = aim(self, 1000);
  420.     missile.velocity = missile.velocity * 1000;
  421.     missile.angles = vectoangles(missile.velocity);
  422.     
  423.     missile.touch = T_MissileTouch;
  424.     
  425. // set missile duration
  426.     missile.nextthink = time + 5;
  427.     missile.think = SUB_Remove;
  428.  
  429.     setmodel (missile, "progs/missile.mdl");
  430.     setsize (missile, '0 0 0', '0 0 0');        
  431.     setorigin (missile, self.origin + v_forward*8 + '0 0 16');
  432. };
  433.  
  434.  
  435. void() PlayerDie;
  436. void() T_GMissileTouch;
  437. void() player_pain;
  438.  
  439. void() clone_pain =
  440. {
  441. T_Damage(self.owner,self,self,0);
  442. self.owner.dmg_take = self.dmg_take;
  443. self.owner.dmg_save = self.dmg_save;
  444. self.owner.dmg_inflictor = self.dmg_inflictor;
  445. self.owner.health = self.health;
  446. self.owner.armorvalue = self.armorvalue;
  447. self.owner.armortype = self.armortype;
  448. player_pain();
  449. };
  450.  
  451. void() CloneDie =
  452. {
  453. local entity    play;
  454.         play = self.owner;
  455.         self = play.mymissile;
  456.         other = world;
  457.         sprint(play,"about to touch ");
  458.         sprint(play,play.classname);
  459.         sprint(play,"\n");
  460.         if (play.classname != "player") T_GMissileTouch();
  461.  
  462.         self = play;
  463.  
  464.         PlayerDie();
  465. };
  466.  
  467. void() T_GMissileTouch =
  468. {
  469. local float    damg;
  470.         if ((other == self.owner) /*|| (other == self.owner.clone)*/)
  471.         return;
  472.         if (other == self.owner.clone) other = self.owner;
  473. //        sprint(self.owner,self.classname);
  474. //        sprint(self.owner," touch ");
  475. //        sprint(self.owner,other.classname);
  476. //        sprint(self.owner,"\n");
  477.         self.owner.classname = "player";
  478.         self.owner.weaponmodel = self.owner.clone.weaponmodel;
  479.         self.owner.weaponframe = 0;
  480.         setmodel(self.owner, self.owner.clone.model);
  481.         self.owner.frame = self.owner.clone.frame;
  482.         self.owner.takedamage = DAMAGE_AIM;
  483.         self.owner.solid = SOLID_SLIDEBOX;
  484.         self.owner.view_ofs = '0 0 22';
  485.         setsize (self.owner, VEC_HULL_MIN, VEC_HULL_MAX);
  486.         self.owner.origin = self.owner.clone.origin;
  487.         self.owner.velocity = self.owner.clone.velocity;
  488.         self.owner.armorvalue = self.owner.clone.armorvalue;
  489.         self.owner.armortype = self.owner.clone.armortype;
  490.         self.owner.flags = self.owner.flags - self.owner.flags && FL_NOTARGET;
  491.         self.owner.v_angle = self.owner.clone.v_angle;
  492.         self.owner.angles = self.owner.clone.angles;
  493.         self.owner.health = self.owner.clone.health;
  494.         self.owner.flags = self.owner.clone.flags;
  495.         self.owner.invisible_time = self.owner.clone.invisible_time;
  496.         self.owner.invisible_finished = self.owner.clone.invisible_finished;
  497.         self.owner.invincible_time = self.owner.clone.invincible_time;
  498.         self.owner.invincible_finished = self.owner.clone.invincible_finished;
  499.         self.owner.super_time = self.owner.clone.super_time;
  500.         self.owner.super_damage_finished = self.owner.clone.super_damage_finished;
  501.         self.owner.rad_time = self.owner.clone.rad_time;
  502.         self.owner.radsuit_finished = self.owner.clone.radsuit_finished;
  503.         self.owner.waterlevel = 0;
  504.         self.owner.watertype = self.owner.clone.watertype;
  505.         SetViewAngle(self.owner,self.owner.clone.v_angle);
  506.         setmodel(self.owner.clone,"");
  507.         self.owner.clone.solid = SOLID_NOT;
  508.         self.owner.clone.takedamage = DAMAGE_NO;
  509.         damg = 50 + random()*50;
  510.     if (other.health)
  511.     {
  512.         if (other.classname == "monster_shambler")
  513.             damg = damg * 0.5;    // mostly immune
  514.     }
  515.     T_Damage (other, self, self.owner, damg );
  516.         T_RadiusDamage (self, self.owner, 90, other);
  517.  
  518.     if (pointcontents(self.origin) == CONTENT_SKY)
  519.     {
  520.         remove(self);
  521.         return;
  522.     }
  523.     
  524.  
  525.         sound (self, CHAN_WEAPON, "weapons/r_exp3.wav", 1, ATTN_NORM);
  526.     self.origin = self.origin - 8*normalize(self.velocity);
  527.  
  528.         BecomeExplosion ();
  529.  
  530. };
  531.  
  532.  
  533.  
  534. /*
  535. ================
  536. W_FireRocket
  537. ================
  538. */
  539. void() GuideThink;
  540.  
  541. void() W_FireMissile =
  542. {
  543.     local    entity missile, mpuff;
  544.     
  545.     self.currentammo = self.ammo_rockets = self.ammo_rockets - 1;
  546.     
  547.     sound (self, CHAN_WEAPON, "weapons/sgun1.wav", 1, ATTN_NORM);
  548.  
  549.     self.punchangle_x = -2;
  550.  
  551.     missile = spawn ();
  552.     missile.owner = self;
  553.     missile.movetype = MOVETYPE_FLYMISSILE;
  554.     missile.solid = SOLID_BBOX;
  555.         
  556. // set missile speed    
  557.  
  558.     makevectors (self.v_angle);
  559.     missile.velocity = aim(self, 1000);
  560.         missile.velocity = missile.velocity * 350;
  561.     missile.angles = vectoangles(missile.velocity);
  562.     
  563.         missile.touch = T_GMissileTouch;
  564.     
  565.         missile.nextthink = time + 0.01;
  566.         missile.think = GuideThink; 
  567.         self.clone.armorvalue = self.armorvalue;
  568.         self.clone.armortype = self.armortype;
  569.         self.clone.health = 100;
  570.         self.flags = self.flags || FL_NOTARGET;
  571.         self.clone.origin = self.origin;
  572.         self.clone.angles = self.angles;
  573.         self.clone.v_angle = self.v_angle;
  574.         setmodel(self.clone,self.model);
  575.         self.clone.frame = self.frame;
  576.         self.clone.takedamage = DAMAGE_AIM;
  577.         self.clone.health = self.health;
  578.         self.clone.max_health = self.max_health;
  579.         self.clone.solid = SOLID_SLIDEBOX;
  580.         self.clone.weaponmodel = self.weaponmodel;
  581.         self.clone.th_pain = clone_pain;
  582.         self.clone.th_die = CloneDie;
  583.         self.clone.colormap = self.colormap;
  584.         self.clone.weapon = self.weapon;
  585.         self.clone.movetype = MOVETYPE_STEP;
  586.         self.clone.velocity = self.velocity;
  587.         self.clone.nextthink = self.nextthink;
  588.         self.clone.think = self.think;
  589.         self.clone.effects = self.effects | EF_DIMLIGHT;
  590.         self.clone.flags = self.flags;
  591.         self.clone.waterlevel = self.waterlevel;
  592.         self.clone.watertype = self.watertype;
  593.         self.clone.invisible_time = self.invisible_time;
  594.         self.clone.invisible_finished = self.invisible_finished;
  595.         self.clone.invincible_time = self.invincible_time;
  596.         self.clone.invincible_finished = self.invincible_finished;
  597.         self.clone.super_time = self.super_time;
  598.         self.clone.super_damage_finished = self.super_damage_finished;
  599.         self.clone.rad_time = self.rad_time;
  600.         self.clone.radsuit_finished = self.radsuit_finished;
  601.         setsize (self.clone, VEC_HULL_MIN, VEC_HULL_MAX);
  602.         setmodel (missile, "progs/missile.mdl");
  603.     setsize (missile, '0 0 0', '0 0 0');        
  604.         setorigin (missile, self.origin + v_forward*24 + '0 0 16');
  605.         setmodel(self, "");
  606.         setsize(self, '0 0 0', '0 0 0');
  607.         self.solid = SOLID_NOT;
  608.         self.view_ofs = '0 0 0';
  609.         self.weaponmodel = "";
  610.         missile.classname = "gmissile";
  611.         self.classname = "gplayer";
  612.         self.mymissile = missile;
  613.         setorigin(self,self.origin +v_forward*1000);
  614. };
  615.  
  616. void() CheckPowerups;
  617.  
  618. void() GuideThink =
  619. {
  620.         local entity temp;
  621.         temp = self;
  622.         self = self.owner.clone;
  623.         droptofloor();
  624.         self = temp;
  625.         self.angles = self.owner.v_angle;
  626.         makevectors(self.angles);
  627.         self.velocity = normalize(v_forward) * (300);
  628.         self.angles_x = 0-self.angles_x;
  629.         makevectors(self.angles);
  630.         self.owner.origin = self.origin - normalize(self.velocity)*5;
  631.         self.nextthink = time + 0.01;
  632.         self.think = GuideThink;
  633.         if ( !(self.owner.flags & FL_JUMPRELEASED) )
  634.         return;        // don't pogo stick
  635.         if (self.owner.button2) {
  636.                 self.owner.flags = self.owner.flags-self.owner.flags|FL_JUMPRELEASED;
  637.                 other = world;
  638.                 T_GMissileTouch();
  639.                 }
  640. };
  641.  
  642. /*
  643. ===============================================================================
  644.  
  645. LIGHTNING
  646.  
  647. ===============================================================================
  648. */
  649.  
  650. /*
  651. =================
  652. LightningDamage
  653. =================
  654. */
  655. void(vector p1, vector p2, entity from, float damage) LightningDamage =
  656. {
  657.     local entity        e1, e2;
  658.     local vector        f;
  659.     
  660.     f = p2 - p1;
  661.     normalize (f);
  662.     f_x = 0 - f_y;
  663.     f_y = f_x;
  664.     f_z = 0;
  665.     f = f*16;
  666.  
  667.     e1 = e2 = world;
  668.  
  669.     traceline (p1, p2, FALSE, self);
  670.     if (trace_ent.takedamage)
  671.     {
  672.         particle (trace_endpos, '0 0 100', 225, damage*4);
  673.         T_Damage (trace_ent, from, from, damage);
  674.         if (self.classname == "player")
  675.         {
  676.             if (other.classname == "player")
  677.                 trace_ent.velocity_z = trace_ent.velocity_z + 400;
  678.         }
  679.     }
  680.     e1 = trace_ent;
  681.  
  682.     traceline (p1 + f, p2 + f, FALSE, self);
  683.     if (trace_ent != e1 && trace_ent.takedamage)
  684.     {
  685.         particle (trace_endpos, '0 0 100', 225, damage*4);
  686.         T_Damage (trace_ent, from, from, damage);
  687.     }
  688.     e2 = trace_ent;
  689.  
  690.     traceline (p1 - f, p2 - f, FALSE, self);
  691.     if (trace_ent != e1 && trace_ent != e2 && trace_ent.takedamage)
  692.     {
  693.         particle (trace_endpos, '0 0 100', 225, damage*4);
  694.         T_Damage (trace_ent, from, from, damage);
  695.     }
  696. };
  697.  
  698.  
  699. void() W_FireLightning =
  700. {
  701.     local    vector        org;
  702.  
  703.     if (self.ammo_cells < 1)
  704.     {
  705.         self.weapon = W_BestWeapon ();
  706.         W_SetCurrentAmmo ();
  707.         return;
  708.     }
  709.  
  710. // explode if under water
  711.     if (self.waterlevel > 1)
  712.     {
  713.         T_RadiusDamage (self, self, 35*self.ammo_cells, world);
  714.         self.ammo_cells = 0;
  715.         W_SetCurrentAmmo ();
  716.         return;
  717.     }
  718.  
  719.     if (self.t_width < time)
  720.     {
  721.         sound (self, CHAN_WEAPON, "weapons/lhit.wav", 1, ATTN_NORM);
  722.         self.t_width = time + 0.6;
  723.     }
  724.     self.punchangle_x = -2;
  725.  
  726.     self.currentammo = self.ammo_cells = self.ammo_cells - 1;
  727.  
  728.     org = self.origin + '0 0 16';
  729.     
  730.     traceline (org, org + v_forward*600, TRUE, self);
  731.  
  732.     WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  733.     WriteByte (MSG_BROADCAST, TE_LIGHTNING2);
  734.     WriteEntity (MSG_BROADCAST, self);
  735.     WriteCoord (MSG_BROADCAST, org_x);
  736.     WriteCoord (MSG_BROADCAST, org_y);
  737.     WriteCoord (MSG_BROADCAST, org_z);
  738.     WriteCoord (MSG_BROADCAST, trace_endpos_x);
  739.     WriteCoord (MSG_BROADCAST, trace_endpos_y);
  740.     WriteCoord (MSG_BROADCAST, trace_endpos_z);
  741.  
  742.     LightningDamage (self.origin, trace_endpos + v_forward*4, self, 30);
  743. };
  744.  
  745.  
  746. //=============================================================================
  747.  
  748.  
  749. void() GrenadeExplode =
  750. {
  751.     T_RadiusDamage (self, self.owner, 120, world);
  752.  
  753.     WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  754.     WriteByte (MSG_BROADCAST, TE_EXPLOSION);
  755.     WriteCoord (MSG_BROADCAST, self.origin_x);
  756.     WriteCoord (MSG_BROADCAST, self.origin_y);
  757.     WriteCoord (MSG_BROADCAST, self.origin_z);
  758.  
  759.     BecomeExplosion ();
  760. };
  761.  
  762. void() GrenadeTouch =
  763. {
  764.     if (other == self.owner)
  765.         return;        // don't explode on owner
  766.     if (other.takedamage == DAMAGE_AIM)
  767.     {
  768.         GrenadeExplode();
  769.         return;
  770.     }
  771.     sound (self, CHAN_WEAPON, "weapons/bounce.wav", 1, ATTN_NORM);    // bounce sound
  772.     if (self.velocity == '0 0 0')
  773.         self.avelocity = '0 0 0';
  774. };
  775.  
  776. /*
  777. ================
  778. W_FireGrenade
  779. ================
  780. */
  781. void() W_FireGrenade =
  782. {
  783.     local    entity missile, mpuff;
  784.     
  785.     self.currentammo = self.ammo_rockets = self.ammo_rockets - 1;
  786.     
  787.     sound (self, CHAN_WEAPON, "weapons/grenade.wav", 1, ATTN_NORM);
  788.  
  789.     self.punchangle_x = -2;
  790.  
  791.     missile = spawn ();
  792.     missile.owner = self;
  793.     missile.movetype = MOVETYPE_BOUNCE;
  794.     missile.solid = SOLID_BBOX;
  795.     missile.classname = "grenade";
  796.         
  797. // set missile speed    
  798.  
  799.     makevectors (self.v_angle);
  800.  
  801.     if (self.v_angle_x)
  802.         missile.velocity = v_forward*600 + v_up * 200 + crandom()*v_right*10 + crandom()*v_up*10;
  803.     else
  804.     {
  805.         missile.velocity = aim(self, 10000);
  806.         missile.velocity = missile.velocity * 600;
  807.         missile.velocity_z = 200;
  808.     }
  809.  
  810.     missile.avelocity = '300 300 300';
  811.  
  812.     missile.angles = vectoangles(missile.velocity);
  813.     
  814.     missile.touch = GrenadeTouch;
  815.     
  816. // set missile duration
  817.     missile.nextthink = time + 2.5;
  818.     missile.think = GrenadeExplode;
  819.  
  820.     setmodel (missile, "progs/grenade.mdl");
  821.     setsize (missile, '0 0 0', '0 0 0');        
  822.     setorigin (missile, self.origin);
  823. };
  824.  
  825.  
  826. //=============================================================================
  827.  
  828. void() spike_touch;
  829. void() superspike_touch;
  830.  
  831.  
  832. /*
  833. ===============
  834. launch_spike
  835.  
  836. Used for both the player and the ogre
  837. ===============
  838. */
  839. void(vector org, vector dir) launch_spike =
  840. {
  841.     newmis = spawn ();
  842.     newmis.owner = self;
  843.     newmis.movetype = MOVETYPE_FLYMISSILE;
  844.     newmis.solid = SOLID_BBOX;
  845.  
  846.     newmis.angles = vectoangles(dir);
  847.     
  848.     newmis.touch = spike_touch;
  849.     newmis.classname = "spike";
  850.     newmis.think = SUB_Remove;
  851.     newmis.nextthink = time + 6;
  852.     setmodel (newmis, "progs/spike.mdl");
  853.     setsize (newmis, VEC_ORIGIN, VEC_ORIGIN);        
  854.     setorigin (newmis, org);
  855.  
  856.     newmis.velocity = dir * 1000;
  857. };
  858.  
  859. void() W_FireSuperSpikes =
  860. {
  861.     local vector    dir;
  862.     local entity    old;
  863.     
  864.     sound (self, CHAN_WEAPON, "weapons/spike2.wav", 1, ATTN_NORM);
  865.     self.attack_finished = time + 0.2;
  866.     self.currentammo = self.ammo_nails = self.ammo_nails - 2;
  867.     dir = aim (self, 1000);
  868.     launch_spike (self.origin + '0 0 16', dir);
  869.     newmis.touch = superspike_touch;
  870.     setmodel (newmis, "progs/s_spike.mdl");
  871.     setsize (newmis, VEC_ORIGIN, VEC_ORIGIN);        
  872.     self.punchangle_x = -2;
  873. };
  874.  
  875. void(float ox) W_FireSpikes =
  876. {
  877.     local vector    dir;
  878.     local entity    old;
  879.     
  880.     makevectors (self.v_angle);
  881.     
  882.     if (self.ammo_nails >= 2 && self.weapon == IT_SUPER_NAILGUN)
  883.     {
  884.         W_FireSuperSpikes ();
  885.         return;
  886.     }
  887.  
  888.     if (self.ammo_nails < 1)
  889.     {
  890.         self.weapon = W_BestWeapon ();
  891.         W_SetCurrentAmmo ();
  892.         return;
  893.     }
  894.  
  895.     sound (self, CHAN_WEAPON, "weapons/rocket1i.wav", 1, ATTN_NORM);
  896.     self.attack_finished = time + 0.2;
  897.     self.currentammo = self.ammo_nails = self.ammo_nails - 1;
  898.     dir = aim (self, 1000);
  899.     launch_spike (self.origin + '0 0 16' + v_right*ox, dir);
  900.  
  901.     self.punchangle_x = -2;
  902. };
  903.  
  904.  
  905.  
  906. .float hit_z;
  907. void() spike_touch =
  908. {
  909. local float rand;
  910.     if (other == self.owner)
  911.         return;
  912.  
  913.     if (other.solid == SOLID_TRIGGER)
  914.         return;    // trigger field, do nothing
  915.  
  916.     if (pointcontents(self.origin) == CONTENT_SKY)
  917.     {
  918.         remove(self);
  919.         return;
  920.     }
  921.     
  922. // hit something that bleeds
  923.     if (other.takedamage)
  924.     {
  925.         spawn_touchblood (9);
  926.         T_Damage (other, self, self.owner, 9);
  927.     }
  928.     else
  929.     {
  930.         WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  931.         
  932.         if (self.classname == "wizspike")
  933.             WriteByte (MSG_BROADCAST, TE_WIZSPIKE);
  934.         else if (self.classname == "knightspike")
  935.             WriteByte (MSG_BROADCAST, TE_KNIGHTSPIKE);
  936.         else
  937.             WriteByte (MSG_BROADCAST, TE_SPIKE);
  938.         WriteCoord (MSG_BROADCAST, self.origin_x);
  939.         WriteCoord (MSG_BROADCAST, self.origin_y);
  940.         WriteCoord (MSG_BROADCAST, self.origin_z);
  941.     }
  942.  
  943.     remove(self);
  944.  
  945. };
  946.  
  947. void() superspike_touch =
  948. {
  949. local float rand;
  950.     if (other == self.owner)
  951.         return;
  952.  
  953.     if (other.solid == SOLID_TRIGGER)
  954.         return;    // trigger field, do nothing
  955.  
  956.     if (pointcontents(self.origin) == CONTENT_SKY)
  957.     {
  958.         remove(self);
  959.         return;
  960.     }
  961.     
  962. // hit something that bleeds
  963.     if (other.takedamage)
  964.     {
  965.         spawn_touchblood (18);
  966.         T_Damage (other, self, self.owner, 18);
  967.     }
  968.     else
  969.     {
  970.         WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  971.         WriteByte (MSG_BROADCAST, TE_SUPERSPIKE);
  972.         WriteCoord (MSG_BROADCAST, self.origin_x);
  973.         WriteCoord (MSG_BROADCAST, self.origin_y);
  974.         WriteCoord (MSG_BROADCAST, self.origin_z);
  975.     }
  976.  
  977.     remove(self);
  978.  
  979. };
  980.  
  981.  
  982. /*
  983. ===============================================================================
  984.  
  985. PLAYER WEAPON USE
  986.  
  987. ===============================================================================
  988. */
  989.  
  990. void() W_SetCurrentAmmo =
  991. {
  992.     player_run ();        // get out of any weapon firing states
  993.  
  994.     self.items = self.items - ( self.items & (IT_SHELLS | IT_NAILS | IT_ROCKETS | IT_CELLS) );
  995.     
  996.     if (self.weapon == IT_AXE)
  997.     {
  998.         self.currentammo = 0;
  999.         self.weaponmodel = "progs/v_axe.mdl";
  1000.         self.weaponframe = 0;
  1001.     }
  1002.     else if (self.weapon == IT_SHOTGUN)
  1003.     {
  1004.         self.currentammo = self.ammo_shells;
  1005.         self.weaponmodel = "progs/v_shot.mdl";
  1006.         self.weaponframe = 0;
  1007.         self.items = self.items | IT_SHELLS;
  1008.     }
  1009.     else if (self.weapon == IT_SUPER_SHOTGUN)
  1010.     {
  1011.         self.currentammo = self.ammo_shells;
  1012.         self.weaponmodel = "progs/v_shot2.mdl";
  1013.         self.weaponframe = 0;
  1014.         self.items = self.items | IT_SHELLS;
  1015.     }
  1016.     else if (self.weapon == IT_NAILGUN)
  1017.     {
  1018.         self.currentammo = self.ammo_nails;
  1019.         self.weaponmodel = "progs/v_nail.mdl";
  1020.         self.weaponframe = 0;
  1021.         self.items = self.items | IT_NAILS;
  1022.     }
  1023.     else if (self.weapon == IT_SUPER_NAILGUN)
  1024.     {
  1025.         self.currentammo = self.ammo_nails;
  1026.         self.weaponmodel = "progs/v_nail2.mdl";
  1027.         self.weaponframe = 0;
  1028.         self.items = self.items | IT_NAILS;
  1029.     }
  1030.     else if (self.weapon == IT_GRENADE_LAUNCHER)
  1031.     {
  1032.         self.currentammo = self.ammo_rockets;
  1033.         self.weaponmodel = "progs/v_rock.mdl";
  1034.         self.weaponframe = 0;
  1035.         self.items = self.items | IT_ROCKETS;
  1036.     }
  1037.     else if (self.weapon == IT_ROCKET_LAUNCHER)
  1038.     {
  1039.         self.currentammo = self.ammo_rockets;
  1040.         self.weaponmodel = "progs/v_rock2.mdl";
  1041.         self.weaponframe = 0;
  1042.         self.items = self.items | IT_ROCKETS;
  1043.     }
  1044.     else if (self.weapon == IT_LIGHTNING)
  1045.     {
  1046.         self.currentammo = self.ammo_cells;
  1047.         self.weaponmodel = "progs/v_light.mdl";
  1048.         self.weaponframe = 0;
  1049.         self.items = self.items | IT_CELLS;
  1050.     }
  1051.     else
  1052.     {
  1053.         self.currentammo = 0;
  1054.         self.weaponmodel = "";
  1055.         self.weaponframe = 0;
  1056.     }
  1057. };
  1058.  
  1059. float() W_BestWeapon =
  1060. {
  1061.     local    float    it;
  1062.     
  1063.     it = self.items;
  1064.  
  1065.     if(self.ammo_cells >= 1 && (it & IT_LIGHTNING) )
  1066.         return IT_LIGHTNING;
  1067.     else if(self.ammo_nails >= 2 && (it & IT_SUPER_NAILGUN) )
  1068.         return IT_SUPER_NAILGUN;
  1069.     else if(self.ammo_shells >= 2 && (it & IT_SUPER_SHOTGUN) )
  1070.         return IT_SUPER_SHOTGUN;
  1071.     else if(self.ammo_nails >= 1 && (it & IT_NAILGUN) )
  1072.         return IT_NAILGUN;
  1073.     else if(self.ammo_shells >= 1 && (it & IT_SHOTGUN) )
  1074.         return IT_SHOTGUN;
  1075.         
  1076. /*
  1077.     if(self.ammo_rockets >= 1 && (it & IT_ROCKET_LAUNCHER) )
  1078.         return IT_ROCKET_LAUNCHER;
  1079.     else if(self.ammo_rockets >= 1 && (it & IT_GRENADE_LAUNCHER) )
  1080.         return IT_GRENADE_LAUNCHER;
  1081.  
  1082. */
  1083.  
  1084.     return IT_AXE;
  1085. };
  1086.  
  1087. float() W_CheckNoAmmo =
  1088. {
  1089.     if (self.currentammo > 0)
  1090.         return TRUE;
  1091.  
  1092.     if (self.weapon == IT_AXE)
  1093.         return TRUE;
  1094.     
  1095.     self.weapon = W_BestWeapon ();
  1096.  
  1097.     W_SetCurrentAmmo ();
  1098.     
  1099. // drop the weapon down
  1100.     return FALSE;
  1101. };
  1102.  
  1103. /*
  1104. ============
  1105. W_Attack
  1106.  
  1107. An attack impulse can be triggered now
  1108. ============
  1109. */
  1110. void()    player_axe1;
  1111. void()    player_axeb1;
  1112. void()    player_axec1;
  1113. void()    player_axed1;
  1114. void()    player_shot1;
  1115. void()    player_nail1;
  1116. void()    player_light1;
  1117. void()    player_rocket1;
  1118.  
  1119. void() W_Attack =
  1120. {
  1121.     local    float    r;
  1122.  
  1123.     if (!W_CheckNoAmmo ())
  1124.         return;
  1125.  
  1126.     makevectors    (self.v_angle);            // calculate forward angle for velocity
  1127.     self.show_hostile = time + 1;    // wake monsters up
  1128.  
  1129.     if (self.weapon == IT_AXE)
  1130.     {
  1131.         sound (self, CHAN_WEAPON, "weapons/ax1.wav", 1, ATTN_NORM);
  1132.         r = random();
  1133.         if (r < 0.25)
  1134.             player_axe1 ();
  1135.         else if (r<0.5)
  1136.             player_axeb1 ();
  1137.         else if (r<0.75)
  1138.             player_axec1 ();
  1139.         else
  1140.             player_axed1 ();
  1141.         self.attack_finished = time + 0.5;
  1142.     }
  1143.     else if (self.weapon == IT_SHOTGUN)
  1144.     {
  1145.         player_shot1 ();
  1146.         W_FireShotgun ();
  1147.         self.attack_finished = time + 0.5;
  1148.     }
  1149.     else if (self.weapon == IT_SUPER_SHOTGUN)
  1150.     {
  1151.         player_shot1 ();
  1152.         W_FireSuperShotgun ();
  1153.         self.attack_finished = time + 0.7;
  1154.     }
  1155.     else if (self.weapon == IT_NAILGUN)
  1156.     {
  1157.         player_nail1 ();
  1158.     }
  1159.     else if (self.weapon == IT_SUPER_NAILGUN)
  1160.     {
  1161.         player_nail1 ();
  1162.     }
  1163.     else if (self.weapon == IT_GRENADE_LAUNCHER)
  1164.     {
  1165.         player_rocket1();
  1166.         W_FireGrenade();
  1167.         self.attack_finished = time + 0.6;
  1168.     }
  1169.     else if (self.weapon == IT_ROCKET_LAUNCHER)
  1170.     {
  1171.                    player_rocket1();
  1172.                    if (self.missiletype == 0) W_FireRocket();
  1173.                    else W_FireMissile();
  1174.                    self.attack_finished = time + 0.8;
  1175.     }
  1176.     else if (self.weapon == IT_LIGHTNING)
  1177.     {
  1178.         player_light1();
  1179.         self.attack_finished = time + 0.1;
  1180.         sound (self, CHAN_AUTO, "weapons/lstart.wav", 1, ATTN_NORM);
  1181.     }
  1182. };
  1183.  
  1184. /*
  1185. ============
  1186. W_ChangeWeapon
  1187.  
  1188. ============
  1189. */
  1190. void() W_ChangeWeapon =
  1191. {
  1192.     local    float    it, am, fl;
  1193.     
  1194.     it = self.items;
  1195.     am = 0;
  1196.     
  1197.     if (self.impulse == 1)
  1198.     {
  1199.         fl = IT_AXE;
  1200.     }
  1201.     else if (self.impulse == 2)
  1202.     {
  1203.         fl = IT_SHOTGUN;
  1204.         if (self.ammo_shells < 1)
  1205.             am = 1;
  1206.     }
  1207.     else if (self.impulse == 3)
  1208.     {
  1209.         fl = IT_SUPER_SHOTGUN;
  1210.         if (self.ammo_shells < 2)
  1211.             am = 1;
  1212.     }        
  1213.     else if (self.impulse == 4)
  1214.     {
  1215.         fl = IT_NAILGUN;
  1216.         if (self.ammo_nails < 1)
  1217.             am = 1;
  1218.     }
  1219.     else if (self.impulse == 5)
  1220.     {
  1221.         fl = IT_SUPER_NAILGUN;
  1222.         if (self.ammo_nails < 2)
  1223.             am = 1;
  1224.     }
  1225.     else if (self.impulse == 6)
  1226.     {
  1227.         fl = IT_GRENADE_LAUNCHER;
  1228.         if (self.ammo_rockets < 1)
  1229.             am = 1;
  1230.     }
  1231.     else if (self.impulse == 7)
  1232.     {
  1233.         fl = IT_ROCKET_LAUNCHER;
  1234.                 if (self.weapon == IT_ROCKET_LAUNCHER) self.missiletype = self.missiletype + 1;
  1235.                 if (self.missiletype == 2) self.missiletype = 0;
  1236.                 if (self.missiletype == 0) sprint(self,"Regular missiles\n");
  1237.                         else sprint(self,"Guided missiles!\n");
  1238.         if (self.ammo_rockets < 1)
  1239.             am = 1;
  1240.     }
  1241.     else if (self.impulse == 8)
  1242.     {
  1243.         fl = IT_LIGHTNING;
  1244.         if (self.ammo_cells < 1)
  1245.             am = 1;
  1246.     }
  1247.  
  1248.     self.impulse = 0;
  1249.     
  1250.     if (!(self.items & fl))
  1251.     {    // don't have the weapon or the ammo
  1252.         sprint (self, "no weapon.\n");
  1253.         return;
  1254.     }
  1255.     
  1256.     if (am)
  1257.     {    // don't have the ammo
  1258.         sprint (self, "not enough ammo.\n");
  1259.         return;
  1260.     }
  1261.  
  1262. //
  1263. // set weapon, set ammo
  1264. //
  1265.     self.weapon = fl;        
  1266.     W_SetCurrentAmmo ();
  1267. };
  1268.  
  1269. /*
  1270. ============
  1271. CheatCommand
  1272. ============
  1273. */
  1274. void() CheatCommand =
  1275. {
  1276. //        if (deathmatch)
  1277. //                return;
  1278.  
  1279.     self.ammo_rockets = 100;
  1280.     self.ammo_nails = 200;
  1281.     self.ammo_shells = 100;
  1282.     self.items = self.items | 
  1283.         IT_AXE |
  1284.         IT_SHOTGUN |
  1285.         IT_SUPER_SHOTGUN |
  1286.         IT_NAILGUN |
  1287.         IT_SUPER_NAILGUN |
  1288.         IT_GRENADE_LAUNCHER |
  1289.         IT_ROCKET_LAUNCHER |
  1290.         IT_KEY1 | IT_KEY2;
  1291.  
  1292.     self.ammo_cells = 200;
  1293.     self.items = self.items | IT_LIGHTNING;
  1294.  
  1295.     self.weapon = IT_ROCKET_LAUNCHER;
  1296.     self.impulse = 0;
  1297.     W_SetCurrentAmmo ();
  1298. };
  1299.  
  1300. /*
  1301. ============
  1302. CycleWeaponCommand
  1303.  
  1304. Go to the next weapon with ammo
  1305. ============
  1306. */
  1307. void() CycleWeaponCommand =
  1308. {
  1309.     local    float    it, am;
  1310.     
  1311.     it = self.items;
  1312.     self.impulse = 0;
  1313.     
  1314.     while (1)
  1315.     {
  1316.         am = 0;
  1317.  
  1318.         if (self.weapon == IT_LIGHTNING)
  1319.         {
  1320.             self.weapon = IT_AXE;
  1321.         }
  1322.         else if (self.weapon == IT_AXE)
  1323.         {
  1324.             self.weapon = IT_SHOTGUN;
  1325.             if (self.ammo_shells < 1)
  1326.                 am = 1;
  1327.         }
  1328.         else if (self.weapon == IT_SHOTGUN)
  1329.         {
  1330.             self.weapon = IT_SUPER_SHOTGUN;
  1331.             if (self.ammo_shells < 2)
  1332.                 am = 1;
  1333.         }        
  1334.         else if (self.weapon == IT_SUPER_SHOTGUN)
  1335.         {
  1336.             self.weapon = IT_NAILGUN;
  1337.             if (self.ammo_nails < 1)
  1338.                 am = 1;
  1339.         }
  1340.         else if (self.weapon == IT_NAILGUN)
  1341.         {
  1342.             self.weapon = IT_SUPER_NAILGUN;
  1343.             if (self.ammo_nails < 2)
  1344.                 am = 1;
  1345.         }
  1346.         else if (self.weapon == IT_SUPER_NAILGUN)
  1347.         {
  1348.             self.weapon = IT_GRENADE_LAUNCHER;
  1349.             if (self.ammo_rockets < 1)
  1350.                 am = 1;
  1351.         }
  1352.         else if (self.weapon == IT_GRENADE_LAUNCHER)
  1353.         {
  1354.             self.weapon = IT_ROCKET_LAUNCHER;
  1355.             if (self.ammo_rockets < 1)
  1356.                 am = 1;
  1357.         }
  1358.         else if (self.weapon == IT_ROCKET_LAUNCHER)
  1359.         {
  1360.             self.weapon = IT_LIGHTNING;
  1361.             if (self.ammo_cells < 1)
  1362.                 am = 1;
  1363.         }
  1364.     
  1365.         if ( (self.items & self.weapon) && am == 0)
  1366.         {
  1367.             W_SetCurrentAmmo ();
  1368.             return;
  1369.         }
  1370.     }
  1371.  
  1372. };
  1373.  
  1374. /*
  1375. ============
  1376. ServerflagsCommand
  1377.  
  1378. Just for development
  1379. ============
  1380. */
  1381. void() ServerflagsCommand =
  1382. {
  1383.     serverflags = serverflags * 2 + 1;
  1384. };
  1385.  
  1386. void() QuadCheat =
  1387. {
  1388.     if (deathmatch || coop)
  1389.         return;
  1390.     self.super_time = 1;
  1391.     self.super_damage_finished = time + 30;
  1392.     self.items = self.items | IT_QUAD;
  1393.     dprint ("quad cheat\n");
  1394. };
  1395.  
  1396. /*
  1397. ============
  1398. ImpulseCommands
  1399.  
  1400. ============
  1401. */
  1402. void() ImpulseCommands =
  1403. {
  1404.     if (self.impulse >= 1 && self.impulse <= 8)
  1405.         W_ChangeWeapon ();
  1406.  
  1407.     if (self.impulse == 9)
  1408.         CheatCommand ();
  1409.     if (self.impulse == 10)
  1410.         CycleWeaponCommand ();
  1411.     if (self.impulse == 11)
  1412.         ServerflagsCommand ();
  1413.  
  1414.     if (self.impulse == 255)
  1415.         QuadCheat ();
  1416.         
  1417.     self.impulse = 0;
  1418. };
  1419.  
  1420. /*
  1421. ============
  1422. W_WeaponFrame
  1423.  
  1424. Called every frame so impulse events can be handled as well as possible
  1425. ============
  1426. */
  1427. void() W_WeaponFrame =
  1428. {
  1429.     if (time < self.attack_finished)
  1430.         return;
  1431.  
  1432.     ImpulseCommands ();
  1433.     
  1434. // check for attack
  1435.     if (self.button0)
  1436.     {
  1437.         SuperDamageSound ();
  1438.         W_Attack ();
  1439.     }
  1440. };
  1441.  
  1442. /*
  1443. ========
  1444. SuperDamageSound
  1445.  
  1446. Plays sound if needed
  1447. ========
  1448. */
  1449. void() SuperDamageSound =
  1450. {
  1451.     if (self.super_damage_finished > time)
  1452.     {
  1453.         if (self.super_sound < time)
  1454.         {
  1455.             self.super_sound = time + 1;
  1456.             sound (self, CHAN_BODY, "items/damage3.wav", 1, ATTN_NORM);
  1457.         }
  1458.     }
  1459.     return;
  1460. };
  1461.  
  1462.  
  1463.