home *** CD-ROM | disk | FTP | other *** search
- /*
- ==============================================================================
-
- Secondary Impulse Command Checker
-
- ==============================================================================
- */
-
-
- //=============================================================
- // CheckSecondaryImpulseCommands - Called by weapons.qc before
- // processing impulses
- //=============================================================
- void () CheckSecondaryImpulseCommands =
- {
- if (self.impulse == BOT_CREATE)
- {
- if (deathmatch)
- {
- BotCreate("DudeMan");
- BotCreate("X-Dude");
- BotCreate("SomeGuy");
- BotCreate("The Director");
- return;
- }
- else
- BotCreate("BgBot");
- }
- };
-