home *** CD-ROM | disk | FTP | other *** search
/ Superpower (Alt) / SUPERPOWER.iso / q / patch / mbq112 / impulse2.qc < prev    next >
Encoding:
Text File  |  1996-08-31  |  685 b   |  22 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.         BotCreate();
  18.     if (self.impulse == BOT_FOUR)  //BGADMbot - four bots with one impulse
  19.         four();
  20.     return;
  21. };
  22.