home *** CD-ROM | disk | FTP | other *** search
/ Quaaake Level & Editor 2 / Quaaake_2.iso / Quake / vbot / SRC.ZIP / BOT_EXT.QC < prev    next >
Encoding:
Text File  |  1996-08-28  |  690 b   |  41 lines

  1. /*
  2. ==============================================================================
  3.  
  4. BOT EXTENSIONS
  5.  
  6. ==============================================================================
  7. */
  8.  
  9. // Prototypes
  10.  
  11. void    ()        bot_counter_use;
  12. void    ()        bot_trigger_onlyregistered_touch;
  13.  
  14.  
  15. void() bot_counter_use =
  16. {
  17.     local string junk;
  18.  
  19.     self.count = self.count - 1;
  20.     if (self.count < 0)
  21.         return;
  22.         self.enemy = activator;
  23.     multi_trigger ();
  24. };
  25.  
  26.  
  27. void() bot_trigger_onlyregistered_touch =
  28. {
  29.     if (self.attack_finished > time)
  30.         return;
  31.  
  32.     self.attack_finished = time + 2;
  33.     if (cvar("registered"))
  34.     {
  35.         self.message = "";
  36.         SUB_UseTargets ();
  37.         remove (self);
  38.     }
  39. };
  40.  
  41.