home *** CD-ROM | disk | FTP | other *** search
/ Quaaake Level & Editor 2 / Quaaake_2.iso / Quake / vbot / SRC.ZIP / BOT.H < prev    next >
Encoding:
Text File  |  1996-09-22  |  1.4 KB  |  37 lines

  1. /*
  2. ==============================================================================
  3.  
  4. BG BOT HEADER FILE
  5.  
  6. ==============================================================================
  7. */
  8.  
  9. // Global Constants
  10.  
  11. float   BOT_CREATE                              = 100;          // impulse constant
  12.  
  13. // Bot Prototypes - called by player
  14.  
  15. void ()                 Bot_Precache;           // Precache information for the bot
  16. void (string name)      BotCreate;              // Creating Bots
  17.  
  18. // Botai Prototypes - called by bot (mostly modified versions of existing code)
  19.  
  20. void    (string name)                                   BotCreate;
  21. float   ()                                              BotFindTarget;
  22. void    ()                                              BotFoundTarget;
  23. void    ()                                              BotHuntTarget;
  24. void    ()                                              bot_ai_stand;
  25. void    (float dist)                    bot_ai_walk;
  26. void    (float dist)                    bot_ai_run;
  27. void    (entity attacker, float damage)                 bot_pain;
  28. void    ()                                              bot_die;
  29. void    ()                                              BotSelfDeActivate;
  30. void    ()                                              botrespawn;
  31.  
  32. // Bot_ext Prototypes - called by triggers.qc
  33.  
  34. void    ()        bot_counter_use;
  35. void    ()        bot_trigger_onlyregistered_touch;
  36.  
  37.