home *** CD-ROM | disk | FTP | other *** search
- /*
- ==============================================================================
-
- BOT EXTENSIONS
-
- ==============================================================================
- */
-
- // Prototypes
-
- void () bot_counter_use;
- void () bot_trigger_onlyregistered_touch;
-
-
- void() bot_counter_use =
- {
- local string junk;
-
- self.count = self.count - 1;
- if (self.count < 0)
- return;
- self.enemy = activator;
- multi_trigger ();
- };
-
-
- void() bot_trigger_onlyregistered_touch =
- {
- if (self.attack_finished > time)
- return;
-
- self.attack_finished = time + 2;
- if (cvar("registered"))
- {
- self.message = "";
- SUB_UseTargets ();
- remove (self);
- }
- };
-
-