home *** CD-ROM | disk | FTP | other *** search
- /*
- ==============================================================================
-
- BG BOT
-
- ==============================================================================
- */
-
- // Prototypes
-
- void () Bot_Precache;
- void (string name) BotCreate;
-
- void (vector org) spawn_tfog;
-
-
- //=============================================================
- // Bot_Precache - called by Worldspawn
- //=============================================================
- void () Bot_Precache =
- {
- precache_sound ("agh1.wav");
- precache_sound ("agh2.wav");
- precache_sound ("noshoot.wav");
- precache_sound ("runaway.wav");
- precache_sound ("helpme.wav");
-
- precache_model ("progs/vbot.mdl");
-
-
- };
-
-
- //=============================================================
- // BotActivate - Activates the bot
- //=============================================================
- void (string name) BotCreate =
- {
- // sounds and models precached in the world.qc file
-
- local entity newbot;
- local entity spot;
- local float r;
-
- r = random ();
- newbot = spawn();
- newbot.solid = SOLID_SLIDEBOX;
- newbot.movetype = MOVETYPE_STEP;
- newbot.netname = name;
-
- // BG Bot - Trying to get it to print Bot kills in Rankings.
- newbot.cl = "client";
- newbot.classname = "bot";
- newbot.health = 100;
- newbot.max_health = 100;
- if (teamplay)
- newbot.team = self.team;
- newbot.frags = 0;
- newbot.flags = FL_CLIENT;
- newbot.colormap = self.colormap;
- newbot.takedamage = DAMAGE_AIM;
- newbot.goalentity = self;
- newbot.movetarget = self;
- newbot.pausetime = 0;
- newbot.deadflag = DEAD_NO;
- newbot.ideal_yaw = newbot.angles * '0 1 0';
- newbot.yaw_speed = 60;
- newbot.items = IT_AXE; //from IT_SHOTGUN
- newbot.show_hostile = 0;
- newbot.weapon = 1;
- newbot.effects = 0;
- newbot.ammo_shells = 50;
- newbot.view_ofs = '0 0 25';
- newbot.th_stand = bot_stand1; //from BOT_STAND1
- newbot.th_walk = bot_walk1;
- newbot.th_stuff = bot_stuff1;
- newbot.th_run = bot_run1;
- newbot.th_pain = bot_pain;
- newbot.th_die = bot_die;
- newbot.th_missile = bot_atk1;
-
- setmodel (newbot, "progs/vbot.mdl");
- setsize (newbot, VEC_HULL_MIN, VEC_HULL_MAX);
-
- // BG Bot - begin select a spot to spawn bot
- // if not deathmatch or coop. starts bot in players starting points
- spot = SelectSpawnPoint ();
-
- newbot.origin = spot.origin + '0 0 1';
- newbot.angles = spot.angles;
- // BG Bot - end select a spot to spawn bot
-
- spawn_tfog (newbot.origin);
-
- bprint(newbot.netname);
- bprint(" ");
- bprint("created\n");
-
- newbot.nextthink = time + 0.1;
- newbot.think = newbot.th_stand;
- spawn_tdeath(newbot.origin, newbot);
- };
-
- void () botrespawn =
- {
- local entity spot;
- self.solid = SOLID_SLIDEBOX;
- self.movetype = MOVETYPE_STEP;
-
- self.flags = FL_CLIENT;
- self.colormap = self.colormap;
- self.classname = "bot";
- self.health = 100;
- self.max_health = 100;
- self.takedamage = DAMAGE_AIM;
- self.deadflag = DEAD_NO;
- self.goalentity = self;
- self.movetarget = self;
- self.pausetime = 0;
- self.ideal_yaw = self.angles * '0 1 0';
- self.yaw_speed = 60;
- self.show_hostile = 0;
- self.effects = 0;
- self.view_ofs = '0 0 25';
- self.items = IT_AXE;
-
- self.weapon = 1;
- self.ammo_shells = 50;
- self.ammo_nails = 0;
- self.ammo_rockets = 0;
- self.ammo_cells = 0;
- self.th_stand = bot_stand1;
- self.th_walk = bot_walk1;
- self.th_run = bot_run1;
- self.th_pain = bot_pain;
- self.th_die = bot_die;
- self.th_missile = bot_atk1;
- setmodel (self, "progs/vbot.mdl");
- setsize (self, VEC_HULL_MIN, VEC_HULL_MAX);
- spot = SelectSpawnPoint();
- setorigin(self, spot.origin);
- self.angles = spot.angles;
- spawn_tfog (self.origin);
- spawn_tdeath(self.origin, self);
- self.nextthink = time + 0.1;
- self.think = self.th_stand;
-
-
- };
-