home *** CD-ROM | disk | FTP | other *** search
/ Quaaake Level & Editor 2 / Quaaake_2.iso / Quake / vbot / SRC.ZIP / IMPULSE2.QC < prev    next >
Encoding:
Text File  |  1996-09-21  |  903 b   |  30 lines

  1. /*
  2. ==============================================================================
  3.  
  4. Secondary Impulse Command Checker
  5.  
  6. ==============================================================================
  7. */
  8.  
  9.  
  10. //=============================================================
  11. // CheckSecondaryImpulseCommands - Called by weapons.qc before
  12. // processing impulses
  13. //=============================================================
  14. void () CheckSecondaryImpulseCommands =
  15. {
  16.         if (self.impulse == BOT_CREATE)
  17.         {
  18.                 if (deathmatch)
  19.                 {
  20.                         BotCreate("DudeMan");
  21.                         BotCreate("X-Dude");
  22.                         BotCreate("SomeGuy");
  23.                         BotCreate("The Director");
  24.                         return;
  25.                 }
  26.                 else
  27.                         BotCreate("BgBot");
  28.         }
  29. };
  30.