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

  1. /*
  2. ==============================================================================
  3.  
  4. BG BOT
  5.  
  6. ==============================================================================
  7. */
  8.  
  9. // Prototypes
  10.  
  11. void    ()        Bot_Precache;
  12. void    (string name)              BotCreate;
  13.  
  14. void (vector org) spawn_tfog;
  15.  
  16.  
  17. //=============================================================
  18. // Bot_Precache - called by Worldspawn
  19. //=============================================================
  20. void () Bot_Precache =
  21. {
  22.         precache_sound ("agh1.wav");
  23.         precache_sound ("agh2.wav");
  24.         precache_sound ("noshoot.wav");
  25.         precache_sound ("runaway.wav");
  26.         precache_sound ("helpme.wav");
  27.  
  28.     precache_model ("progs/vbot.mdl");
  29.  
  30.  
  31. };
  32.  
  33.  
  34. //=============================================================
  35. // BotActivate - Activates the bot
  36. //=============================================================
  37. void (string name) BotCreate =
  38. {
  39. // sounds and models precached in the world.qc file
  40.  
  41.     local entity    newbot;
  42.         local entity    spot;
  43.         local float     r;
  44.  
  45.         r = random ();
  46.     newbot = spawn();
  47.     newbot.solid = SOLID_SLIDEBOX;
  48.         newbot.movetype = MOVETYPE_STEP;
  49.         newbot.netname = name;
  50.  
  51. // BG Bot - Trying to get it to print Bot kills in Rankings.
  52.         newbot.cl = "client";
  53.         newbot.classname = "bot";
  54.     newbot.health = 100;
  55.         newbot.max_health = 100;
  56.         if (teamplay)
  57.                 newbot.team = self.team;
  58.         newbot.frags = 0;
  59.         newbot.flags = FL_CLIENT;
  60.         newbot.colormap = self.colormap;
  61.     newbot.takedamage = DAMAGE_AIM;
  62.         newbot.goalentity = self;
  63.         newbot.movetarget = self;
  64.         newbot.pausetime = 0;
  65.         newbot.deadflag = DEAD_NO;
  66.     newbot.ideal_yaw = newbot.angles * '0 1 0';
  67.         newbot.yaw_speed = 60;
  68.         newbot.items = IT_AXE;   //from IT_SHOTGUN
  69.         newbot.show_hostile = 0;
  70.         newbot.weapon = 1;
  71.         newbot.effects = 0;
  72.         newbot.ammo_shells = 50;
  73.     newbot.view_ofs = '0 0 25';
  74.     newbot.th_stand = bot_stand1;               //from BOT_STAND1
  75.     newbot.th_walk = bot_walk1;
  76.         newbot.th_stuff = bot_stuff1;
  77.     newbot.th_run = bot_run1;
  78.     newbot.th_pain = bot_pain;
  79.     newbot.th_die = bot_die;
  80.         newbot.th_missile = bot_atk1;
  81.  
  82.         setmodel (newbot, "progs/vbot.mdl");
  83.         setsize (newbot, VEC_HULL_MIN, VEC_HULL_MAX);
  84.  
  85. // BG Bot - begin select a spot to spawn bot
  86. // if not deathmatch or coop. starts bot in players starting points
  87.         spot = SelectSpawnPoint ();
  88.  
  89.         newbot.origin = spot.origin + '0 0 1';
  90.         newbot.angles = spot.angles;
  91. // BG Bot - end select a spot to spawn bot
  92.  
  93.     spawn_tfog (newbot.origin);
  94.  
  95.         bprint(newbot.netname);
  96.         bprint(" ");
  97.         bprint("created\n");
  98.     
  99.     newbot.nextthink = time + 0.1;
  100.     newbot.think = newbot.th_stand;
  101.         spawn_tdeath(newbot.origin, newbot);
  102. };
  103.  
  104. void () botrespawn =
  105. {
  106.     local entity spot;
  107.     self.solid = SOLID_SLIDEBOX;
  108.     self.movetype = MOVETYPE_STEP;
  109.  
  110.         self.flags = FL_CLIENT;
  111.         self.colormap = self.colormap;
  112.     self.classname = "bot";
  113.         self.health = 100;
  114.         self.max_health = 100;
  115.     self.takedamage = DAMAGE_AIM;
  116.     self.deadflag = DEAD_NO;
  117.     self.goalentity = self;
  118.     self.movetarget = self;
  119.         self.pausetime = 0;
  120.     self.ideal_yaw = self.angles * '0 1 0';
  121.         self.yaw_speed = 60;
  122.         self.show_hostile = 0;
  123.         self.effects = 0;
  124.         self.view_ofs = '0 0 25';
  125.         self.items = IT_AXE;
  126.     
  127.         self.weapon = 1;
  128.         self.ammo_shells = 50;
  129.         self.ammo_nails = 0;
  130.         self.ammo_rockets = 0;
  131.         self.ammo_cells = 0;
  132.     self.th_stand = bot_stand1;
  133.     self.th_walk = bot_walk1;
  134.     self.th_run = bot_run1;
  135.     self.th_pain = bot_pain;
  136.     self.th_die = bot_die;
  137.     self.th_missile = bot_atk1;
  138.         setmodel (self, "progs/vbot.mdl");
  139.         setsize (self, VEC_HULL_MIN, VEC_HULL_MAX);
  140.     spot = SelectSpawnPoint(); 
  141.     setorigin(self, spot.origin);
  142.         self.angles = spot.angles;
  143.         spawn_tfog (self.origin);
  144.     spawn_tdeath(self.origin, self);
  145.         self.nextthink = time + 0.1;
  146.         self.think = self.th_stand;
  147.  
  148.  
  149. };
  150.