home *** CD-ROM | disk | FTP | other *** search
- /*
- ==============================================================================
-
- BG BOT HEADER FILE
-
- ==============================================================================
- */
-
- // Global Constants
-
- float BOT_CREATE = 100; // impulse constant
-
- // Bot Prototypes - called by player
-
- void () Bot_Precache; // Precache information for the bot
- void (string name) BotCreate; // Creating Bots
-
- // Botai Prototypes - called by bot (mostly modified versions of existing code)
-
- void (string name) BotCreate;
- float () BotFindTarget;
- void () BotFoundTarget;
- void () BotHuntTarget;
- void () bot_ai_stand;
- void (float dist) bot_ai_walk;
- void (float dist) bot_ai_run;
- void (entity attacker, float damage) bot_pain;
- void () bot_die;
- void () BotSelfDeActivate;
- void () botrespawn;
-
- // Bot_ext Prototypes - called by triggers.qc
-
- void () bot_counter_use;
- void () bot_trigger_onlyregistered_touch;
-
-