home *** CD-ROM | disk | FTP | other *** search
/ Quaaake Level & Editor 2 / Quaaake_2.iso / Quake / cujo12 / SOURCE.ZIP / ITEMS.QC < prev    next >
Encoding:
Text File  |  1996-10-23  |  29.0 KB  |  1,371 lines

  1. void() W_SetCurrentAmmo;
  2. /* ALL LIGHTS SHOULD BE 0 1 0 IN COLOR ALL OTHER ITEMS SHOULD
  3. BE .8 .3 .4 IN COLOR */
  4.  
  5.  
  6. void() SUB_regen =
  7. {
  8.     self.model = self.mdl;        // restore original model
  9.     self.solid = SOLID_TRIGGER;    // allow it to be touched again
  10.     sound (self, CHAN_VOICE, "items/itembk2.wav", 1, ATTN_NORM);    // play respawn sound
  11.     setorigin (self, self.origin);
  12. };
  13.  
  14.  
  15.  
  16. /*QUAKED noclass (0 0 0) (-8 -8 -8) (8 8 8)
  17. prints a warning message when spawned
  18. */
  19. void() noclass =
  20. {
  21.     dprint ("noclass spawned at");
  22.     dprint (vtos(self.origin));
  23.     dprint ("\n");
  24.     remove (self);
  25. };
  26.  
  27.  
  28.  
  29. /*
  30. ============
  31. PlaceItem
  32.  
  33. plants the object on the floor
  34. ============
  35. */
  36. void() PlaceItem =
  37. {
  38.     local float    oldz;
  39.  
  40.     self.mdl = self.model;        // so it can be restored on respawn
  41.     self.flags = FL_ITEM;        // make extra wide
  42.     self.solid = SOLID_TRIGGER;
  43.     self.movetype = MOVETYPE_TOSS;    
  44.     self.velocity = '0 0 0';
  45.     self.origin_z = self.origin_z + 6;
  46.     oldz = self.origin_z;
  47.     if (!droptofloor())
  48.     {
  49.         dprint ("Bonus item fell out of level at ");
  50.         dprint (vtos(self.origin));
  51.         dprint ("\n");
  52.         remove(self);
  53.         return;
  54.     }
  55. };
  56.  
  57. /*
  58. ============
  59. StartItem
  60.  
  61. Sets the clipping size and plants the object on the floor
  62. ============
  63. */
  64. void() StartItem =
  65. {
  66.     self.nextthink = time + 0.2;    // items start after other solids
  67.     self.think = PlaceItem;
  68. };
  69.  
  70. /*
  71. =========================================================================
  72.  
  73. HEALTH BOX
  74.  
  75. =========================================================================
  76. */
  77. //
  78. // T_Heal: add health to an entity, limiting health to max_health
  79. // "ignore" will ignore max_health limit
  80. //
  81. float (entity e, float healamount, float ignore) T_Heal =
  82. {
  83.     if (e.health <= 0)
  84.         return 0;
  85.     if ((!ignore) && (e.health >= other.max_health))
  86.         return 0;
  87.     healamount = ceil(healamount);
  88.  
  89.     e.health = e.health + healamount;
  90.     if ((!ignore) && (e.health >= other.max_health))
  91.         e.health = other.max_health;
  92.         
  93.     if (e.health > 250)
  94.         e.health = 250;
  95.     return 1;
  96. };
  97.  
  98. /*QUAKED item_health (.3 .3 1) (0 0 0) (32 32 32) rotten megahealth
  99. Health box. Normally gives 25 points.
  100. Rotten box heals 5-10 points,
  101. megahealth will add 100 health, then 
  102. rot you down to your maximum health limit, 
  103. one point per second.
  104. */
  105.  
  106. float    H_ROTTEN = 1;
  107. float    H_MEGA = 2;
  108. .float    healamount, healtype;
  109. void() health_touch;
  110. void() item_megahealth_rot;
  111.  
  112. void() item_health =
  113. {    
  114.     self.touch = health_touch;
  115.  
  116.     if (self.spawnflags & H_ROTTEN)
  117.     {
  118.         precache_model("maps/b_bh10.bsp");
  119.  
  120.         precache_sound("items/r_item1.wav");
  121.         setmodel(self, "maps/b_bh10.bsp");
  122.         self.noise = "items/r_item1.wav";
  123.         self.healamount = 15;
  124.         self.healtype = 0;
  125.     }
  126.     else
  127.     if (self.spawnflags & H_MEGA)
  128.     {
  129.         precache_model("maps/b_bh100.bsp");
  130.         precache_sound("items/r_item2.wav");
  131.         setmodel(self, "maps/b_bh100.bsp");
  132.         self.noise = "items/r_item2.wav";
  133.         self.healamount = 100;
  134.         self.healtype = 2;
  135.     }
  136.     else
  137.     {
  138.         precache_model("maps/b_bh25.bsp");
  139.         precache_sound("items/health1.wav");
  140.         setmodel(self, "maps/b_bh25.bsp");
  141.         self.noise = "items/health1.wav";
  142.         self.healamount = 25;
  143.         self.healtype = 1;
  144.     }
  145.     setsize (self, '0 0 0', '32 32 56');
  146.     StartItem ();
  147. };
  148.  
  149.  
  150. void() health_touch =
  151. {
  152.     local    float amount;
  153.     local    string    s;
  154.     
  155.     if (other.classname != "player")
  156.         return;
  157.     
  158.     if (self.healtype == 2) // Megahealth?  Ignore max_health...
  159.     {
  160.         if (other.health >= 250)
  161.             return;
  162.         if (!T_Heal(other, self.healamount, 1))
  163.             return;
  164.     }
  165.     else
  166.     {
  167.         if (!T_Heal(other, self.healamount, 0))
  168.             return;
  169.     }
  170.     
  171.     sprint(other, "You receive ");
  172.     s = ftos(self.healamount);
  173.     sprint(other, s);
  174.     sprint(other, " health\n");
  175.     
  176. // health touch sound
  177.     sound(other, CHAN_ITEM, self.noise, 1, ATTN_NORM);
  178.  
  179.     stuffcmd (other, "bf\n");
  180.     
  181.     self.model = string_null;
  182.     self.solid = SOLID_NOT;
  183.  
  184.     // Megahealth = rot down the player's super health
  185.     if (self.healtype == 2)
  186.     {
  187.         other.items = other.items | IT_SUPERHEALTH;
  188.         self.nextthink = time + 5;
  189.         self.think = item_megahealth_rot;
  190.         self.owner = other;
  191.     }
  192.     else
  193.     {
  194.         if (deathmatch != 2)        // deathmatch 2 is the silly old rules
  195.         {
  196.             if (deathmatch)
  197.                 self.nextthink = time + 20;
  198.             self.think = SUB_regen;
  199.         }
  200.     }
  201.     
  202.     activator = other;
  203.     SUB_UseTargets();                // fire all targets / killtargets
  204. };    
  205.  
  206. void() item_megahealth_rot =
  207. {
  208.     other = self.owner;
  209.     
  210.     if (other.health > other.max_health)
  211.     {
  212.         other.health = other.health - 1;
  213.         self.nextthink = time + 1;
  214.         return;
  215.     }
  216.  
  217. // it is possible for a player to die and respawn between rots, so don't
  218. // just blindly subtract the flag off
  219.     other.items = other.items - (other.items & IT_SUPERHEALTH);
  220.  
  221.     if (deathmatch == 1)    // deathmatch 2 is silly old rules
  222.     {
  223.         self.nextthink = time + 20;
  224.         self.think = SUB_regen;
  225.     }
  226. };
  227.  
  228. /*
  229. ===============================================================================
  230.  
  231. ARMOR
  232.  
  233. ===============================================================================
  234. */
  235.  
  236. void() armor_touch;
  237.  
  238. void() armor_touch =
  239. {
  240.     local    float    type, value, bit;
  241.  
  242.     if (other.health <= 0)
  243.         return;
  244.     if (other.classname != "player")
  245.         return;
  246.  
  247.     if (self.classname == "item_armor1")
  248.     {
  249.         type = 0.3;
  250.         value = 100;
  251.         bit = IT_ARMOR1;
  252.     }
  253.     if (self.classname == "item_armor2")
  254.     {
  255.         type = 0.6;
  256.         value = 150;
  257.         bit = IT_ARMOR2;
  258.  
  259. // CUJO begin mod - hell, I changed a bunch in this section
  260.                 other.Cujo_avail = 1;
  261. // CUJO end mod
  262.     }
  263.     if (self.classname == "item_armorInv")
  264.     {
  265.         type = 0.8;
  266.         value = 200;
  267.         bit = IT_ARMOR3;
  268.     }
  269.  
  270. // CUJO begin mod - ALWAYS pick up the yellow Cujo armor, even if the players
  271. //                  armor is better
  272.     if ((other.armortype*other.armorvalue >= type*value) && (value != 150))
  273.           return;
  274.  
  275.         // if the player's armor is currently better, don't reset it
  276.         if (other.armortype*other.armorvalue < type*value)
  277.         {
  278.         other.armortype = type;
  279.       other.armorvalue = value;
  280.       other.items = other.items - (other.items & (IT_ARMOR1 | IT_ARMOR2 | IT_ARMOR3)) + bit;
  281.         }
  282. // CUJO end mod
  283.  
  284.     self.solid = SOLID_NOT;
  285.     self.model = string_null;
  286.     if (deathmatch == 1)
  287.         self.nextthink = time + 20;
  288.     self.think = SUB_regen;
  289.  
  290. // CUJO begin mod
  291.  
  292. // if they picked up a Cujo armor, let them know
  293.  
  294.         sound(other, CHAN_ITEM, "items/armor1.wav", 1, ATTN_NORM);
  295.  
  296.         if ((value == 150) && (deathmatch))
  297.         {
  298.           sprint (other, "You got armor and a Cujo bot!\n");
  299.           sound (other, CHAN_VOICE, "dog/dattack1.wav", 1, ATTN_NORM);
  300.         }
  301.         else
  302.           sprint(other, "You got armor\n");
  303.  
  304. // CUJO end mod
  305.  
  306. // CUJO commented out next 3 lines
  307. //    sprint(other, "You got armor\n");
  308. // armor touch sound
  309. //    sound(other, CHAN_ITEM, "items/armor1.wav", 1, ATTN_NORM);
  310.  
  311.     stuffcmd (other, "bf\n");
  312.  
  313.     activator = other;
  314.     SUB_UseTargets();                // fire all targets / killtargets
  315. };
  316.  
  317.  
  318. /*QUAKED item_armor1 (0 .5 .8) (-16 -16 0) (16 16 32)
  319. */
  320.  
  321. void() item_armor1 =
  322. {
  323.     self.touch = armor_touch;
  324.     precache_model ("progs/armor.mdl");
  325.     setmodel (self, "progs/armor.mdl");
  326.     self.skin = 0;
  327.     setsize (self, '-16 -16 0', '16 16 56');
  328.     StartItem ();
  329. };
  330.  
  331. /*QUAKED item_armor2 (0 .5 .8) (-16 -16 0) (16 16 32)
  332. */
  333.  
  334. void() item_armor2 =
  335. {
  336.     self.touch = armor_touch;
  337.     precache_model ("progs/armor.mdl");
  338.     setmodel (self, "progs/armor.mdl");
  339.         self.skin = 1;
  340.     setsize (self, '-16 -16 0', '16 16 56');
  341.     StartItem ();
  342. };
  343.  
  344. /*QUAKED item_armorInv (0 .5 .8) (-16 -16 0) (16 16 32)
  345. */
  346.  
  347. void() item_armorInv =
  348. {
  349.     self.touch = armor_touch;
  350.     precache_model ("progs/armor.mdl");
  351.     setmodel (self, "progs/armor.mdl");
  352.     self.skin = 2;
  353.     setsize (self, '-16 -16 0', '16 16 56');
  354.     StartItem ();
  355. };
  356.  
  357. /*
  358. ===============================================================================
  359.  
  360. WEAPONS
  361.  
  362. ===============================================================================
  363. */
  364.  
  365. void() bound_other_ammo =
  366. {
  367.     if (other.ammo_shells > 100)
  368.         other.ammo_shells = 100;
  369.     if (other.ammo_nails > 200)
  370.         other.ammo_nails = 200;
  371.     if (other.ammo_rockets > 100)
  372.         other.ammo_rockets = 100;        
  373.     if (other.ammo_cells > 100)
  374.         other.ammo_cells = 100;        
  375. };
  376.  
  377.  
  378. float(float w) RankForWeapon =
  379. {
  380.     if (w == IT_LIGHTNING)
  381.         return 1;
  382.     if (w == IT_ROCKET_LAUNCHER)
  383.         return 2;
  384.     if (w == IT_SUPER_NAILGUN)
  385.         return 3;
  386.     if (w == IT_GRENADE_LAUNCHER)
  387.         return 4;
  388.     if (w == IT_SUPER_SHOTGUN)
  389.         return 5;
  390.     if (w == IT_NAILGUN)
  391.         return 6;
  392.     return 7;
  393. };
  394.  
  395. /*
  396. =============
  397. Deathmatch_Weapon
  398.  
  399. Deathmatch weapon change rules for picking up a weapon
  400.  
  401. .float        ammo_shells, ammo_nails, ammo_rockets, ammo_cells;
  402. =============
  403. */
  404. void(float old, float new) Deathmatch_Weapon =
  405. {
  406.     local float or, nr;
  407.  
  408. // change self.weapon if desired
  409.     or = RankForWeapon (self.weapon);
  410.     nr = RankForWeapon (new);
  411.     if ( nr < or )
  412.         self.weapon = new;
  413. };
  414.  
  415. /*
  416. =============
  417. weapon_touch
  418. =============
  419. */
  420. float() W_BestWeapon;
  421.  
  422. void() weapon_touch =
  423. {
  424.     local    float    hadammo, best, new, old;
  425.     local    entity    stemp;
  426.     local    float    leave;
  427.  
  428.     if (!(other.flags & FL_CLIENT))
  429.         return;
  430.  
  431. // if the player was using his best weapon, change up to the new one if better        
  432.     stemp = self;
  433.     self = other;
  434.     best = W_BestWeapon();
  435.     self = stemp;
  436.  
  437.     if (deathmatch == 2 || coop)
  438.         leave = 1;
  439.     else
  440.         leave = 0;
  441.     
  442.     if (self.classname == "weapon_nailgun")
  443.     {
  444.         if (leave && (other.items & IT_NAILGUN) )
  445.             return;
  446.         hadammo = other.ammo_nails;            
  447.         new = IT_NAILGUN;
  448.         other.ammo_nails = other.ammo_nails + 30;
  449.     }
  450.     else if (self.classname == "weapon_supernailgun")
  451.     {
  452.         if (leave && (other.items & IT_SUPER_NAILGUN) )
  453.             return;
  454.         hadammo = other.ammo_rockets;            
  455.         new = IT_SUPER_NAILGUN;
  456.         other.ammo_nails = other.ammo_nails + 30;
  457.     }
  458.     else if (self.classname == "weapon_supershotgun")
  459.     {
  460.         if (leave && (other.items & IT_SUPER_SHOTGUN) )
  461.             return;
  462.         hadammo = other.ammo_rockets;            
  463.         new = IT_SUPER_SHOTGUN;
  464.         other.ammo_shells = other.ammo_shells + 5;
  465.     }
  466.     else if (self.classname == "weapon_rocketlauncher")
  467.     {
  468.         if (leave && (other.items & IT_ROCKET_LAUNCHER) )
  469.             return;
  470.         hadammo = other.ammo_rockets;            
  471.         new = IT_ROCKET_LAUNCHER;
  472.         other.ammo_rockets = other.ammo_rockets + 5;
  473.     }
  474.     else if (self.classname == "weapon_grenadelauncher")
  475.     {
  476.         if (leave && (other.items & IT_GRENADE_LAUNCHER) )
  477.             return;
  478.         hadammo = other.ammo_rockets;            
  479.         new = IT_GRENADE_LAUNCHER;
  480.         other.ammo_rockets = other.ammo_rockets + 5;
  481.     }
  482.     else if (self.classname == "weapon_lightning")
  483.     {
  484.         if (leave && (other.items & IT_LIGHTNING) )
  485.             return;
  486.         hadammo = other.ammo_rockets;            
  487.         new = IT_LIGHTNING;
  488.         other.ammo_cells = other.ammo_cells + 15;
  489.     }
  490.     else
  491.         objerror ("weapon_touch: unknown classname");
  492.  
  493.     sprint (other, "You got the ");
  494.     sprint (other, self.netname);
  495.     sprint (other, "\n");
  496. // weapon touch sound
  497.     sound (other, CHAN_ITEM, "weapons/pkup.wav", 1, ATTN_NORM);
  498.     stuffcmd (other, "bf\n");
  499.  
  500.     bound_other_ammo ();
  501.  
  502. // change to the weapon
  503.     old = other.items;
  504.     other.items = other.items | new;
  505.     
  506.     stemp = self;
  507.     self = other;
  508.  
  509.     if (!deathmatch)
  510.         self.weapon = new;
  511.     else
  512.         Deathmatch_Weapon (old, new);
  513.  
  514.     W_SetCurrentAmmo();
  515.  
  516.     self = stemp;
  517.  
  518.     if (leave)
  519.         return;
  520.  
  521. // remove it in single player, or setup for respawning in deathmatch
  522.     self.model = string_null;
  523.     self.solid = SOLID_NOT;
  524.     if (deathmatch == 1)
  525.         self.nextthink = time + 30;
  526.     self.think = SUB_regen;
  527.     
  528.     activator = other;
  529.     SUB_UseTargets();                // fire all targets / killtargets
  530. };
  531.  
  532.  
  533. /*QUAKED weapon_supershotgun (0 .5 .8) (-16 -16 0) (16 16 32)
  534. */
  535.  
  536. void() weapon_supershotgun =
  537. {
  538.     precache_model ("progs/g_shot.mdl");
  539.     setmodel (self, "progs/g_shot.mdl");
  540.     self.weapon = IT_SUPER_SHOTGUN;
  541.     self.netname = "Double-barrelled Shotgun";
  542.     self.touch = weapon_touch;
  543.     setsize (self, '-16 -16 0', '16 16 56');
  544.     StartItem ();
  545. };
  546.  
  547. /*QUAKED weapon_nailgun (0 .5 .8) (-16 -16 0) (16 16 32)
  548. */
  549.  
  550. void() weapon_nailgun =
  551. {
  552.     precache_model ("progs/g_nail.mdl");
  553.     setmodel (self, "progs/g_nail.mdl");
  554.     self.weapon = IT_NAILGUN;
  555.     self.netname = "nailgun";
  556.     self.touch = weapon_touch;
  557.     setsize (self, '-16 -16 0', '16 16 56');
  558.     StartItem ();
  559. };
  560.  
  561. /*QUAKED weapon_supernailgun (0 .5 .8) (-16 -16 0) (16 16 32)
  562. */
  563.  
  564. void() weapon_supernailgun =
  565. {
  566.     precache_model ("progs/g_nail2.mdl");
  567.     setmodel (self, "progs/g_nail2.mdl");
  568.     self.weapon = IT_SUPER_NAILGUN;
  569.     self.netname = "Super Nailgun";
  570.     self.touch = weapon_touch;
  571.     setsize (self, '-16 -16 0', '16 16 56');
  572.     StartItem ();
  573. };
  574.  
  575. /*QUAKED weapon_grenadelauncher (0 .5 .8) (-16 -16 0) (16 16 32)
  576. */
  577.  
  578. void() weapon_grenadelauncher =
  579. {
  580.     precache_model ("progs/g_rock.mdl");
  581.     setmodel (self, "progs/g_rock.mdl");
  582.     self.weapon = 3;
  583.     self.netname = "Grenade Launcher";
  584.     self.touch = weapon_touch;
  585.     setsize (self, '-16 -16 0', '16 16 56');
  586.     StartItem ();
  587. };
  588.  
  589. /*QUAKED weapon_rocketlauncher (0 .5 .8) (-16 -16 0) (16 16 32)
  590. */
  591.  
  592. void() weapon_rocketlauncher =
  593. {
  594.     precache_model ("progs/g_rock2.mdl");
  595.     setmodel (self, "progs/g_rock2.mdl");
  596.     self.weapon = 3;
  597.     self.netname = "Rocket Launcher";
  598.     self.touch = weapon_touch;
  599.     setsize (self, '-16 -16 0', '16 16 56');
  600.     StartItem ();
  601. };
  602.  
  603.  
  604. /*QUAKED weapon_lightning (0 .5 .8) (-16 -16 0) (16 16 32)
  605. */
  606.  
  607. void() weapon_lightning =
  608. {
  609.     precache_model ("progs/g_light.mdl");
  610.     setmodel (self, "progs/g_light.mdl");
  611.     self.weapon = 3;
  612.     self.netname = "Thunderbolt";
  613.     self.touch = weapon_touch;
  614.     setsize (self, '-16 -16 0', '16 16 56');
  615.     StartItem ();
  616. };
  617.  
  618.  
  619. /*
  620. ===============================================================================
  621.  
  622. AMMO
  623.  
  624. ===============================================================================
  625. */
  626.  
  627. void() ammo_touch =
  628. {
  629. local entity    stemp;
  630. local float        best;
  631.  
  632.     if (other.classname != "player")
  633.         return;
  634.     if (other.health <= 0)
  635.         return;
  636.  
  637. // if the player was using his best weapon, change up to the new one if better        
  638.     stemp = self;
  639.     self = other;
  640.     best = W_BestWeapon();
  641.     self = stemp;
  642.  
  643.  
  644. // shotgun
  645.     if (self.weapon == 1)
  646.     {
  647.         if (other.ammo_shells >= 100)
  648.             return;
  649.         other.ammo_shells = other.ammo_shells + self.aflag;
  650.     }
  651.  
  652. // spikes
  653.     if (self.weapon == 2)
  654.     {
  655.         if (other.ammo_nails >= 200)
  656.             return;
  657.         other.ammo_nails = other.ammo_nails + self.aflag;
  658.     }
  659.  
  660. //    rockets
  661.     if (self.weapon == 3)
  662.     {
  663.         if (other.ammo_rockets >= 100)
  664.             return;
  665.         other.ammo_rockets = other.ammo_rockets + self.aflag;
  666.     }
  667.  
  668. //    cells
  669.     if (self.weapon == 4)
  670.     {
  671.         if (other.ammo_cells >= 200)
  672.             return;
  673.         other.ammo_cells = other.ammo_cells + self.aflag;
  674.     }
  675.  
  676.     bound_other_ammo ();
  677.     
  678.     sprint (other, "You got the ");
  679.     sprint (other, self.netname);
  680.     sprint (other, "\n");
  681. // ammo touch sound
  682.     sound (other, CHAN_ITEM, "weapons/lock4.wav", 1, ATTN_NORM);
  683.     stuffcmd (other, "bf\n");
  684.  
  685. // change to a better weapon if appropriate
  686.  
  687.     if ( other.weapon == best )
  688.     {
  689.         stemp = self;
  690.         self = other;
  691.         self.weapon = W_BestWeapon();
  692.         W_SetCurrentAmmo ();
  693.         self = stemp;
  694.     }
  695.  
  696. // if changed current ammo, update it
  697.     stemp = self;
  698.     self = other;
  699.     W_SetCurrentAmmo();
  700.     self = stemp;
  701.  
  702. // remove it in single player, or setup for respawning in deathmatch
  703.     self.model = string_null;
  704.     self.solid = SOLID_NOT;
  705.     if (deathmatch == 1)
  706.         self.nextthink = time + 30;
  707.     
  708.     self.think = SUB_regen;
  709.  
  710.     activator = other;
  711.     SUB_UseTargets();                // fire all targets / killtargets
  712. };
  713.  
  714.  
  715.  
  716.  
  717. float WEAPON_BIG2 = 1;
  718.  
  719. /*QUAKED item_shells (0 .5 .8) (0 0 0) (32 32 32) big
  720. */
  721.  
  722. void() item_shells =
  723. {
  724.     self.touch = ammo_touch;
  725.  
  726.     if (self.spawnflags & WEAPON_BIG2)
  727.     {
  728.         precache_model ("maps/b_shell1.bsp");
  729.         setmodel (self, "maps/b_shell1.bsp");
  730.         self.aflag = 40;
  731.     }
  732.     else
  733.     {
  734.         precache_model ("maps/b_shell0.bsp");
  735.         setmodel (self, "maps/b_shell0.bsp");
  736.         self.aflag = 20;
  737.     }
  738.     self.weapon = 1;
  739.     self.netname = "shells";
  740.     setsize (self, '0 0 0', '32 32 56');
  741.     StartItem ();
  742. };
  743.  
  744. /*QUAKED item_spikes (0 .5 .8) (0 0 0) (32 32 32) big
  745. */
  746.  
  747. void() item_spikes =
  748. {
  749.     self.touch = ammo_touch;
  750.  
  751.     if (self.spawnflags & WEAPON_BIG2)
  752.     {
  753.         precache_model ("maps/b_nail1.bsp");
  754.         setmodel (self, "maps/b_nail1.bsp");
  755.         self.aflag = 50;
  756.     }
  757.     else
  758.     {
  759.         precache_model ("maps/b_nail0.bsp");
  760.         setmodel (self, "maps/b_nail0.bsp");
  761.         self.aflag = 25;
  762.     }
  763.     self.weapon = 2;
  764.     self.netname = "nails";
  765.     setsize (self, '0 0 0', '32 32 56');
  766.     StartItem ();
  767. };
  768.  
  769. /*QUAKED item_rockets (0 .5 .8) (0 0 0) (32 32 32) big
  770. */
  771.  
  772. void() item_rockets =
  773. {
  774.     self.touch = ammo_touch;
  775.  
  776.     if (self.spawnflags & WEAPON_BIG2)
  777.     {
  778.         precache_model ("maps/b_rock1.bsp");
  779.         setmodel (self, "maps/b_rock1.bsp");
  780.         self.aflag = 10;
  781.     }
  782.     else
  783.     {
  784.         precache_model ("maps/b_rock0.bsp");
  785.         setmodel (self, "maps/b_rock0.bsp");
  786.         self.aflag = 5;
  787.     }
  788.     self.weapon = 3;
  789.     self.netname = "rockets";
  790.     setsize (self, '0 0 0', '32 32 56');
  791.     StartItem ();
  792. };
  793.  
  794.  
  795. /*QUAKED item_cells (0 .5 .8) (0 0 0) (32 32 32) big
  796. */
  797.  
  798. void() item_cells =
  799. {
  800.     self.touch = ammo_touch;
  801.  
  802.     if (self.spawnflags & WEAPON_BIG2)
  803.     {
  804.         precache_model ("maps/b_batt1.bsp");
  805.         setmodel (self, "maps/b_batt1.bsp");
  806.         self.aflag = 12;
  807.     }
  808.     else
  809.     {
  810.         precache_model ("maps/b_batt0.bsp");
  811.         setmodel (self, "maps/b_batt0.bsp");
  812.         self.aflag = 6;
  813.     }
  814.     self.weapon = 4;
  815.     self.netname = "cells";
  816.     setsize (self, '0 0 0', '32 32 56');
  817.     StartItem ();
  818. };
  819.  
  820.  
  821. /*QUAKED item_weapon (0 .5 .8) (0 0 0) (32 32 32) shotgun rocket spikes big
  822. DO NOT USE THIS!!!! IT WILL BE REMOVED!
  823. */
  824.  
  825. float WEAPON_SHOTGUN = 1;
  826. float WEAPON_ROCKET = 2;
  827. float WEAPON_SPIKES = 4;
  828. float WEAPON_BIG = 8;
  829. void() item_weapon =
  830. {
  831.     self.touch = ammo_touch;
  832.  
  833.     if (self.spawnflags & WEAPON_SHOTGUN)
  834.     {
  835.         if (self.spawnflags & WEAPON_BIG)
  836.         {
  837.             precache_model ("maps/b_shell1.bsp");
  838.             setmodel (self, "maps/b_shell1.bsp");
  839.             self.aflag = 40;
  840.         }
  841.         else
  842.         {
  843.             precache_model ("maps/b_shell0.bsp");
  844.             setmodel (self, "maps/b_shell0.bsp");
  845.             self.aflag = 20;
  846.         }
  847.         self.weapon = 1;
  848.         self.netname = "shells";
  849.     }
  850.  
  851.     if (self.spawnflags & WEAPON_SPIKES)
  852.     {
  853.         if (self.spawnflags & WEAPON_BIG)
  854.         {
  855.             precache_model ("maps/b_nail1.bsp");
  856.             setmodel (self, "maps/b_nail1.bsp");
  857.             self.aflag = 40;
  858.         }
  859.         else
  860.         {
  861.             precache_model ("maps/b_nail0.bsp");
  862.             setmodel (self, "maps/b_nail0.bsp");
  863.             self.aflag = 20;
  864.         }
  865.         self.weapon = 2;
  866.         self.netname = "spikes";
  867.     }
  868.  
  869.     if (self.spawnflags & WEAPON_ROCKET)
  870.     {
  871.         if (self.spawnflags & WEAPON_BIG)
  872.         {
  873.             precache_model ("maps/b_rock1.bsp");
  874.             setmodel (self, "maps/b_rock1.bsp");
  875.             self.aflag = 10;
  876.         }
  877.         else
  878.         {
  879.             precache_model ("maps/b_rock0.bsp");
  880.             setmodel (self, "maps/b_rock0.bsp");
  881.             self.aflag = 5;
  882.         }
  883.         self.weapon = 3;
  884.         self.netname = "rockets";
  885.     }
  886.     
  887.     setsize (self, '0 0 0', '32 32 56');
  888.     StartItem ();
  889. };
  890.  
  891.  
  892. /*
  893. ===============================================================================
  894.  
  895. KEYS
  896.  
  897. ===============================================================================
  898. */
  899.  
  900. void() key_touch =
  901. {
  902. local entity    stemp;
  903. local float        best;
  904.  
  905.     if (other.classname != "player")
  906.         return;
  907.     if (other.health <= 0)
  908.         return;
  909.     if (other.items & self.items)
  910.         return;
  911.  
  912.     sprint (other, "You got the ");
  913.     sprint (other, self.netname);
  914.     sprint (other,"\n");
  915.  
  916.     sound (other, CHAN_ITEM, self.noise, 1, ATTN_NORM);
  917.     stuffcmd (other, "bf\n");
  918.     other.items = other.items | self.items;
  919.  
  920.     if (!coop)
  921.     {    
  922.         self.solid = SOLID_NOT;
  923.         self.model = string_null;
  924.     }
  925.  
  926.     activator = other;
  927.     SUB_UseTargets();                // fire all targets / killtargets
  928. };
  929.  
  930.  
  931. void() key_setsounds =
  932. {
  933.     if (world.worldtype == 0)
  934.     {
  935.         precache_sound ("misc/medkey.wav");
  936.         self.noise = "misc/medkey.wav";
  937.     }
  938.     if (world.worldtype == 1)
  939.     {
  940.         precache_sound ("misc/runekey.wav");
  941.         self.noise = "misc/runekey.wav";
  942.     }
  943.     if (world.worldtype == 2)
  944.     {
  945.         precache_sound2 ("misc/basekey.wav");
  946.         self.noise = "misc/basekey.wav";
  947.     }
  948. };
  949.  
  950. /*QUAKED item_key1 (0 .5 .8) (-16 -16 -24) (16 16 32)
  951. SILVER key
  952. In order for keys to work
  953. you MUST set your maps
  954. worldtype to one of the
  955. following:
  956. 0: medieval
  957. 1: metal
  958. 2: base
  959. */
  960.  
  961. void() item_key1 =
  962. {
  963.     if (world.worldtype == 0)
  964.     {
  965.         precache_model ("progs/w_s_key.mdl");
  966.         setmodel (self, "progs/w_s_key.mdl");
  967.         self.netname = "silver key";
  968.     }
  969.     else if (world.worldtype == 1)
  970.     {
  971.         precache_model ("progs/m_s_key.mdl");
  972.         setmodel (self, "progs/m_s_key.mdl");
  973.         self.netname = "silver runekey";
  974.     }
  975.     else if (world.worldtype == 2)
  976.     {
  977.         precache_model2 ("progs/b_s_key.mdl");
  978.         setmodel (self, "progs/b_s_key.mdl");
  979.         self.netname = "silver keycard";
  980.     }
  981.     key_setsounds();
  982.     self.touch = key_touch;
  983.     self.items = IT_KEY1;
  984.     setsize (self, '-16 -16 -24', '16 16 32');
  985.     StartItem ();
  986. };
  987.  
  988. /*QUAKED item_key2 (0 .5 .8) (-16 -16 -24) (16 16 32)
  989. GOLD key
  990. In order for keys to work
  991. you MUST set your maps
  992. worldtype to one of the
  993. following:
  994. 0: medieval
  995. 1: metal
  996. 2: base
  997. */
  998.  
  999. void() item_key2 =
  1000. {
  1001.     if (world.worldtype == 0)
  1002.     {
  1003.         precache_model ("progs/w_g_key.mdl");
  1004.         setmodel (self, "progs/w_g_key.mdl");
  1005.         self.netname = "gold key";
  1006.     }
  1007.     if (world.worldtype == 1)
  1008.     {
  1009.         precache_model ("progs/m_g_key.mdl");
  1010.         setmodel (self, "progs/m_g_key.mdl");
  1011.         self.netname = "gold runekey";
  1012.     }
  1013.     if (world.worldtype == 2)
  1014.     {
  1015.         precache_model2 ("progs/b_g_key.mdl");
  1016.         setmodel (self, "progs/b_g_key.mdl");
  1017.         self.netname = "gold keycard";
  1018.     }
  1019.     key_setsounds();
  1020.     self.touch = key_touch;
  1021.     self.items = IT_KEY2;
  1022.     setsize (self, '-16 -16 -24', '16 16 32');
  1023.     StartItem ();
  1024. };
  1025.  
  1026.  
  1027.  
  1028. /*
  1029. ===============================================================================
  1030.  
  1031. END OF LEVEL RUNES
  1032.  
  1033. ===============================================================================
  1034. */
  1035.  
  1036. void() sigil_touch =
  1037. {
  1038. local entity    stemp;
  1039. local float        best;
  1040.  
  1041.     if (other.classname != "player")
  1042.         return;
  1043.     if (other.health <= 0)
  1044.         return;
  1045.  
  1046.     centerprint (other, "You got the rune!");
  1047.  
  1048.     sound (other, CHAN_ITEM, self.noise, 1, ATTN_NORM);
  1049.     stuffcmd (other, "bf\n");
  1050.     self.solid = SOLID_NOT;
  1051.     self.model = string_null;
  1052.     serverflags = serverflags | (self.spawnflags & 15);
  1053.     self.classname = "";        // so rune doors won't find it
  1054.     
  1055.     activator = other;
  1056.     SUB_UseTargets();                // fire all targets / killtargets
  1057. };
  1058.  
  1059.  
  1060. /*QUAKED item_sigil (0 .5 .8) (-16 -16 -24) (16 16 32) E1 E2 E3 E4
  1061. End of level sigil, pick up to end episode and return to jrstart.
  1062. */
  1063.  
  1064. void() item_sigil =
  1065. {
  1066.     if (!self.spawnflags)
  1067.         objerror ("no spawnflags");
  1068.  
  1069.     precache_sound ("misc/runekey.wav");
  1070.     self.noise = "misc/runekey.wav";
  1071.  
  1072.     if (self.spawnflags & 1)
  1073.     {
  1074.         precache_model ("progs/end1.mdl");
  1075.         setmodel (self, "progs/end1.mdl");
  1076.     }
  1077.     if (self.spawnflags & 2)
  1078.     {
  1079.         precache_model2 ("progs/end2.mdl");
  1080.         setmodel (self, "progs/end2.mdl");
  1081.     }
  1082.     if (self.spawnflags & 4)
  1083.     {
  1084.         precache_model2 ("progs/end3.mdl");
  1085.         setmodel (self, "progs/end3.mdl");
  1086.     }
  1087.     if (self.spawnflags & 8)
  1088.     {
  1089.         precache_model2 ("progs/end4.mdl");
  1090.         setmodel (self, "progs/end4.mdl");
  1091.     }
  1092.     
  1093.     self.touch = sigil_touch;
  1094.     setsize (self, '-16 -16 -24', '16 16 32');
  1095.     StartItem ();
  1096. };
  1097.  
  1098. /*
  1099. ===============================================================================
  1100.  
  1101. POWERUPS
  1102.  
  1103. ===============================================================================
  1104. */
  1105.  
  1106. void() powerup_touch;
  1107.  
  1108.  
  1109. void() powerup_touch =
  1110. {
  1111. local entity    stemp;
  1112. local float        best;
  1113.  
  1114.     if (other.classname != "player")
  1115.         return;
  1116.     if (other.health <= 0)
  1117.         return;
  1118.  
  1119.     sprint (other, "You got the ");
  1120.     sprint (other, self.netname);
  1121.     sprint (other,"\n");
  1122.  
  1123.     if (deathmatch)
  1124.     {
  1125.         self.mdl = self.model;
  1126.         
  1127.         if ((self.classname == "item_artifact_invulnerability") ||
  1128.             (self.classname == "item_artifact_invisibility"))
  1129.             self.nextthink = time + 60*5;
  1130.         else
  1131.             self.nextthink = time + 60;
  1132.         
  1133.         self.think = SUB_regen;
  1134.     }    
  1135.  
  1136.     sound (other, CHAN_VOICE, self.noise, 1, ATTN_NORM);
  1137.     stuffcmd (other, "bf\n");
  1138.     self.solid = SOLID_NOT;
  1139.     other.items = other.items | self.items;
  1140.     self.model = string_null;
  1141.  
  1142. // do the apropriate action
  1143.     if (self.classname == "item_artifact_envirosuit")
  1144.     {
  1145.         other.rad_time = 1;
  1146.         other.radsuit_finished = time + 30;
  1147.     }
  1148.     
  1149.     if (self.classname == "item_artifact_invulnerability")
  1150.     {
  1151.         other.invincible_time = 1;
  1152.         other.invincible_finished = time + 30;
  1153.     }
  1154.     
  1155.     if (self.classname == "item_artifact_invisibility")
  1156.     {
  1157.         other.invisible_time = 1;
  1158.         other.invisible_finished = time + 30;
  1159.     }
  1160.  
  1161.     if (self.classname == "item_artifact_super_damage")
  1162.     {
  1163.         other.super_time = 1;
  1164.         other.super_damage_finished = time + 30;
  1165.     }    
  1166.  
  1167.     activator = other;
  1168.     SUB_UseTargets();                // fire all targets / killtargets
  1169. };
  1170.  
  1171.  
  1172.  
  1173. /*QUAKED item_artifact_invulnerability (0 .5 .8) (-16 -16 -24) (16 16 32)
  1174. Player is invulnerable for 30 seconds
  1175. */
  1176. void() item_artifact_invulnerability =
  1177. {
  1178.     self.touch = powerup_touch;
  1179.  
  1180.     precache_model ("progs/invulner.mdl");
  1181.     precache_sound ("items/protect.wav");
  1182.     precache_sound ("items/protect2.wav");
  1183.     precache_sound ("items/protect3.wav");
  1184.     self.noise = "items/protect.wav";
  1185.     setmodel (self, "progs/invulner.mdl");
  1186.     self.netname = "Pentagram of Protection";
  1187.     self.items = IT_INVULNERABILITY;
  1188.     setsize (self, '-16 -16 -24', '16 16 32');
  1189.     StartItem ();
  1190. };
  1191.  
  1192. /*QUAKED item_artifact_envirosuit (0 .5 .8) (-16 -16 -24) (16 16 32)
  1193. Player takes no damage from water or slime for 30 seconds
  1194. */
  1195. void() item_artifact_envirosuit =
  1196. {
  1197.     self.touch = powerup_touch;
  1198.  
  1199.     precache_model ("progs/suit.mdl");
  1200.     precache_sound ("items/suit.wav");
  1201.     precache_sound ("items/suit2.wav");
  1202.     self.noise = "items/suit.wav";
  1203.     setmodel (self, "progs/suit.mdl");
  1204.     self.netname = "Biosuit";
  1205.     self.items = IT_SUIT;
  1206.     setsize (self, '-16 -16 -24', '16 16 32');
  1207.     StartItem ();
  1208. };
  1209.  
  1210.  
  1211. /*QUAKED item_artifact_invisibility (0 .5 .8) (-16 -16 -24) (16 16 32)
  1212. Player is invisible for 30 seconds
  1213. */
  1214. void() item_artifact_invisibility =
  1215. {
  1216.     self.touch = powerup_touch;
  1217.  
  1218.     precache_model ("progs/invisibl.mdl");
  1219.     precache_sound ("items/inv1.wav");
  1220.     precache_sound ("items/inv2.wav");
  1221.     precache_sound ("items/inv3.wav");
  1222.     self.noise = "items/inv1.wav";
  1223.     setmodel (self, "progs/invisibl.mdl");
  1224.     self.netname = "Ring of Shadows";
  1225.     self.items = IT_INVISIBILITY;
  1226.     setsize (self, '-16 -16 -24', '16 16 32');
  1227.     StartItem ();
  1228. };
  1229.  
  1230.  
  1231. /*QUAKED item_artifact_super_damage (0 .5 .8) (-16 -16 -24) (16 16 32)
  1232. The next attack from the player will do 4x damage
  1233. */
  1234. void() item_artifact_super_damage =
  1235. {
  1236.     self.touch = powerup_touch;
  1237.  
  1238.     precache_model ("progs/quaddama.mdl");
  1239.     precache_sound ("items/damage.wav");
  1240.     precache_sound ("items/damage2.wav");
  1241.     precache_sound ("items/damage3.wav");
  1242.     self.noise = "items/damage.wav";
  1243.     setmodel (self, "progs/quaddama.mdl");
  1244.     self.netname = "Quad Damage";
  1245.     self.items = IT_QUAD;
  1246.     setsize (self, '-16 -16 -24', '16 16 32');
  1247.     StartItem ();
  1248. };
  1249.  
  1250.  
  1251.  
  1252. /*
  1253. ===============================================================================
  1254.  
  1255. PLAYER BACKPACKS
  1256.  
  1257. ===============================================================================
  1258. */
  1259.  
  1260. void() BackpackTouch =
  1261. {
  1262.     local string    s;
  1263.     local    float    best;
  1264.     local        entity    stemp;
  1265.     
  1266.     if (other.classname != "player")
  1267.         return;
  1268.     if (other.health <= 0)
  1269.         return;
  1270.         
  1271. // if the player was using his best weapon, change up to the new one if better        
  1272.     stemp = self;
  1273.     self = other;
  1274.     best = W_BestWeapon();
  1275.     self = stemp;
  1276.  
  1277. // change weapons
  1278.     other.ammo_shells = other.ammo_shells + self.ammo_shells;
  1279.     other.ammo_nails = other.ammo_nails + self.ammo_nails;
  1280.     other.ammo_rockets = other.ammo_rockets + self.ammo_rockets;
  1281.     other.ammo_cells = other.ammo_cells + self.ammo_cells;
  1282.  
  1283.     other.items = other.items | self.items;
  1284.     
  1285.     bound_other_ammo ();
  1286.  
  1287.     sprint (other, "You get ");
  1288.  
  1289.     if (self.ammo_shells)
  1290.     {
  1291.         s = ftos(self.ammo_shells);
  1292.         sprint (other, s);
  1293.         sprint (other, " shells  ");
  1294.     }
  1295.     if (self.ammo_nails)
  1296.     {
  1297.         s = ftos(self.ammo_nails);
  1298.         sprint (other, s);
  1299.         sprint (other, " nails ");
  1300.     }
  1301.     if (self.ammo_rockets)
  1302.     {
  1303.         s = ftos(self.ammo_rockets);
  1304.         sprint (other, s);
  1305.         sprint (other, " rockets  ");
  1306.     }
  1307.     if (self.ammo_cells)
  1308.     {
  1309.         s = ftos(self.ammo_cells);
  1310.         sprint (other, s);
  1311.         sprint (other, " cells  ");
  1312.     }
  1313.     
  1314.     sprint (other, "\n");
  1315. // backpack touch sound
  1316.     sound (other, CHAN_ITEM, "weapons/lock4.wav", 1, ATTN_NORM);
  1317.     stuffcmd (other, "bf\n");
  1318.  
  1319. // change to a better weapon if appropriate
  1320.     if ( other.weapon == best )
  1321.     {
  1322.         stemp = self;
  1323.         self = other;
  1324.         self.weapon = W_BestWeapon();
  1325.         self = stemp;
  1326.     }
  1327.  
  1328.     
  1329.     remove(self);
  1330.     
  1331.     self = other;
  1332.     W_SetCurrentAmmo ();
  1333. };
  1334.  
  1335. /*
  1336. ===============
  1337. DropBackpack
  1338. ===============
  1339. */
  1340. void() DropBackpack =
  1341. {
  1342.     local entity    item;
  1343.  
  1344.     if (!(self.ammo_shells + self.ammo_nails + self.ammo_rockets + self.ammo_cells))
  1345.         return;    // nothing in it
  1346.  
  1347.     item = spawn();
  1348.     item.origin = self.origin - '0 0 24';
  1349.     
  1350.     item.items = self.weapon;
  1351.  
  1352.     item.ammo_shells = self.ammo_shells;
  1353.     item.ammo_nails = self.ammo_nails;
  1354.     item.ammo_rockets = self.ammo_rockets;
  1355.     item.ammo_cells = self.ammo_cells;
  1356.  
  1357.     item.velocity_z = 300;
  1358.     item.velocity_x = -100 + (random() * 200);
  1359.     item.velocity_y = -100 + (random() * 200);
  1360.     
  1361.     item.flags = FL_ITEM;
  1362.     item.solid = SOLID_TRIGGER;
  1363.     item.movetype = MOVETYPE_TOSS;
  1364.     setmodel (item, "progs/backpack.mdl");
  1365.     setsize (item, '-16 -16 0', '16 16 56');
  1366.     item.touch = BackpackTouch;
  1367.     
  1368.     item.nextthink = time + 120;    // remove after 2 minutes
  1369.     item.think = SUB_Remove;
  1370. };
  1371.