mirror of
https://github.com/ineedbots/iw4_bot_warfare.git
synced 2025-04-23 06:15:43 +00:00
init
This commit is contained in:
commit
eea646c952
18
.gitignore
vendored
Normal file
18
.gitignore
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Ignore everything in repository root
|
||||||
|
/*
|
||||||
|
|
||||||
|
# Files to not ignore
|
||||||
|
!/.gitignore
|
||||||
|
!/z_devserver.bat
|
||||||
|
!/z_dev.bat
|
||||||
|
!/z_serverdev.bat
|
||||||
|
|
||||||
|
# Folder to not ignore
|
||||||
|
!/mods/
|
||||||
|
/mods/*
|
||||||
|
!/mods/bots/
|
||||||
|
|
||||||
|
*.log
|
||||||
|
logs/
|
||||||
|
demos/
|
||||||
|
missingasset.csv
|
6
mods/bots/bots.txt
Normal file
6
mods/bots/bots.txt
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
a
|
||||||
|
b
|
||||||
|
c
|
||||||
|
d
|
||||||
|
e
|
||||||
|
f
|
633
mods/bots/maps/mp/bots/_bot.gsc
Normal file
633
mods/bots/maps/mp/bots/_bot.gsc
Normal file
@ -0,0 +1,633 @@
|
|||||||
|
#include common_scripts\utility;
|
||||||
|
#include maps\mp\_utility;
|
||||||
|
#include maps\mp\gametypes\_hud_util;
|
||||||
|
#include maps\mp\bots\_bot_utility;
|
||||||
|
|
||||||
|
/*
|
||||||
|
Initiates the whole bot scripts.
|
||||||
|
*/
|
||||||
|
init()
|
||||||
|
{
|
||||||
|
load_waypoints();
|
||||||
|
hook_callbacks();
|
||||||
|
|
||||||
|
setDvar("testClients_watchKillcam", true);
|
||||||
|
setDvar("testclients_doReload", false);
|
||||||
|
setDvar("testclients_doMove", false);
|
||||||
|
setDvar("testclients_doAttack", true);
|
||||||
|
setDvar("testclients_doCrouch", false);
|
||||||
|
|
||||||
|
if(getDvar("bots_manage_add") == "")
|
||||||
|
setDvar("bots_manage_add", 0);//amount of bots to add to the game
|
||||||
|
if(getDvar("bots_manage_fill") == "")
|
||||||
|
setDvar("bots_manage_fill", 0);//amount of bots to maintain
|
||||||
|
if(getDvar("bots_manage_fill_spec") == "")
|
||||||
|
setDvar("bots_manage_fill_spec", true);//to count for fill if player is on spec team
|
||||||
|
if(getDvar("bots_manage_fill_mode") == "")
|
||||||
|
setDvar("bots_manage_fill_mode", 0);//fill mode, 0 adds everyone, 1 just bots, 2 maintains at maps, 3 is 2 with 1
|
||||||
|
if(getDvar("bots_manage_fill_kick") == "")
|
||||||
|
setDvar("bots_manage_fill_kick", false);//kick bots if too many
|
||||||
|
|
||||||
|
if(getDvar("bots_team") == "")
|
||||||
|
setDvar("bots_team", "autoassign");//which team for bots to join
|
||||||
|
if(getDvar("bots_team_amount") == "")
|
||||||
|
setDvar("bots_team_amount", 0);//amount of bots on axis team
|
||||||
|
if(getDvar("bots_team_force") == "")
|
||||||
|
setDvar("bots_team_force", false);//force bots on team
|
||||||
|
if(getDvar("bots_team_mode") == "")
|
||||||
|
setDvar("bots_team_mode", 0);//counts just bots when 1
|
||||||
|
|
||||||
|
if(getDvar("bots_skill") == "")
|
||||||
|
setDvar("bots_skill", 0);//0 is random, 1 is easy 7 is hard, 8 is custom, 9 is completely random
|
||||||
|
if(getDvar("bots_skill_axis_hard") == "")
|
||||||
|
setDvar("bots_skill_axis_hard", 0);//amount of hard bots on axis team
|
||||||
|
if(getDvar("bots_skill_axis_med") == "")
|
||||||
|
setDvar("bots_skill_axis_med", 0);
|
||||||
|
if(getDvar("bots_skill_allies_hard") == "")
|
||||||
|
setDvar("bots_skill_allies_hard", 0);
|
||||||
|
if(getDvar("bots_skill_allies_med") == "")
|
||||||
|
setDvar("bots_skill_allies_med", 0);
|
||||||
|
|
||||||
|
if(getDvar("bots_loadout_reasonable") == "")//filter out the bad 'guns' and perks
|
||||||
|
setDvar("bots_loadout_reasonable", false);
|
||||||
|
if(getDvar("bots_loadout_allow_op") == "")//allows jug, marty and laststand
|
||||||
|
setDvar("bots_loadout_allow_op", true);
|
||||||
|
|
||||||
|
level.defuseObject = undefined;
|
||||||
|
level.bots_smokeList = List();
|
||||||
|
level.bots_fragList = List();
|
||||||
|
|
||||||
|
level.bots_minSprintDistance = 315;
|
||||||
|
level.bots_minSprintDistance *= level.bots_minSprintDistance;
|
||||||
|
level.bots_minGrenadeDistance = 375;
|
||||||
|
level.bots_minGrenadeDistance *= level.bots_minGrenadeDistance;
|
||||||
|
level.bots_maxKnifeDistance = 80;
|
||||||
|
level.bots_maxKnifeDistance *= level.bots_maxKnifeDistance;
|
||||||
|
level.bots_goalDistance = 27.5;
|
||||||
|
level.bots_goalDistance *= level.bots_goalDistance;
|
||||||
|
level.bots_noADSDistance = 200;
|
||||||
|
level.bots_noADSDistance *= level.bots_noADSDistance;
|
||||||
|
level.bots_maxShotgunDistance = 500;
|
||||||
|
level.bots_maxShotgunDistance *= level.bots_maxShotgunDistance;
|
||||||
|
level.bots_listenDist = 100;
|
||||||
|
level.bots_listenDist *= level.bots_listenDist;
|
||||||
|
|
||||||
|
level.smokeRadius = 255;
|
||||||
|
|
||||||
|
level.bots_nonfullautoguns = [];
|
||||||
|
level.bots_nonfullautoguns["barrett"] = true;
|
||||||
|
level.bots_nonfullautoguns["beretta"] = true;
|
||||||
|
level.bots_nonfullautoguns["coltanaconda"] = true;
|
||||||
|
level.bots_nonfullautoguns["deserteagle"] = true;
|
||||||
|
level.bots_nonfullautoguns["fal"] = true;
|
||||||
|
level.bots_nonfullautoguns["m21"] = true;
|
||||||
|
level.bots_nonfullautoguns["m1014"] = true;
|
||||||
|
level.bots_nonfullautoguns["ranger"] = true;
|
||||||
|
level.bots_nonfullautoguns["striker"] = true;
|
||||||
|
level.bots_nonfullautoguns["usp"] = true;
|
||||||
|
level.bots_nonfullautoguns["wa2000"] = true;
|
||||||
|
|
||||||
|
level thread fixGamemodes();
|
||||||
|
|
||||||
|
level thread onPlayerConnect();
|
||||||
|
|
||||||
|
level thread handleBots();
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Starts the threads for bots.
|
||||||
|
*/
|
||||||
|
handleBots()
|
||||||
|
{
|
||||||
|
level thread teamBots();
|
||||||
|
level thread diffBots();
|
||||||
|
level addBots();
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
The hook callback for when any player becomes damaged.
|
||||||
|
*/
|
||||||
|
onPlayerDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset)
|
||||||
|
{
|
||||||
|
if(self is_bot())
|
||||||
|
{
|
||||||
|
self maps\mp\bots\_bot_internal::onDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset);
|
||||||
|
self maps\mp\bots\_bot_script::onDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset);
|
||||||
|
}
|
||||||
|
|
||||||
|
self [[level.prevCallbackPlayerDamage]](eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
The hook callback when any player gets killed.
|
||||||
|
*/
|
||||||
|
onPlayerKilled(eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration)
|
||||||
|
{
|
||||||
|
if(self is_bot())
|
||||||
|
{
|
||||||
|
self maps\mp\bots\_bot_internal::onKilled(eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration);
|
||||||
|
self maps\mp\bots\_bot_script::onKilled(eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration);
|
||||||
|
}
|
||||||
|
|
||||||
|
self [[level.prevCallbackPlayerKilled]](eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Starts the callbacks.
|
||||||
|
*/
|
||||||
|
hook_callbacks()
|
||||||
|
{
|
||||||
|
level.prevCallbackPlayerDamage = level.callbackPlayerDamage;
|
||||||
|
level.callbackPlayerDamage = ::onPlayerDamage;
|
||||||
|
|
||||||
|
level.prevCallbackPlayerKilled = level.callbackPlayerKilled;
|
||||||
|
level.callbackPlayerKilled = ::onPlayerKilled;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Fixes gamemodes when level starts.
|
||||||
|
*/
|
||||||
|
fixGamemodes()
|
||||||
|
{
|
||||||
|
for(i=0;i<19;i++)
|
||||||
|
{
|
||||||
|
if(isDefined(level.bombZones) && level.gametype == "sd")
|
||||||
|
{
|
||||||
|
for(i = 0; i < level.bombZones.size; i++)
|
||||||
|
level.bombZones[i].onUse = ::onUsePlantObjectFix;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
wait 0.05;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Thread when any player connects. Starts the threads needed.
|
||||||
|
*/
|
||||||
|
onPlayerConnect()
|
||||||
|
{
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
level waittill("connected", player);
|
||||||
|
|
||||||
|
player thread onGrenadeFire();
|
||||||
|
player thread onWeaponFired();
|
||||||
|
|
||||||
|
player thread connected();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Called when a player connects.
|
||||||
|
*/
|
||||||
|
connected()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
|
||||||
|
if(!self is_bot())
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (!isDefined(self.pers["isBotWarfare"]))
|
||||||
|
{
|
||||||
|
self.pers["isBotWarfare"] = true;
|
||||||
|
self thread added();
|
||||||
|
}
|
||||||
|
|
||||||
|
self thread maps\mp\bots\_bot_internal::connected();
|
||||||
|
self thread maps\mp\bots\_bot_script::connected();
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
When a bot gets added into the game.
|
||||||
|
*/
|
||||||
|
added()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
|
||||||
|
self thread maps\mp\bots\_bot_internal::added();
|
||||||
|
self thread maps\mp\bots\_bot_script::added();
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Adds a bot to the game.
|
||||||
|
*/
|
||||||
|
add_bot()
|
||||||
|
{
|
||||||
|
bot = addtestclient();
|
||||||
|
|
||||||
|
if (isdefined(bot))
|
||||||
|
{
|
||||||
|
bot.pers["isBot"] = true;
|
||||||
|
bot.pers["isBotWarfare"] = true;
|
||||||
|
bot thread added();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
A server thread for monitoring all bot's difficulty levels for custom server settings.
|
||||||
|
*/
|
||||||
|
diffBots()
|
||||||
|
{
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
wait 1.5;
|
||||||
|
|
||||||
|
var_allies_hard = getDVarInt("bots_skill_allies_hard");
|
||||||
|
var_allies_med = getDVarInt("bots_skill_allies_med");
|
||||||
|
var_axis_hard = getDVarInt("bots_skill_axis_hard");
|
||||||
|
var_axis_med = getDVarInt("bots_skill_axis_med");
|
||||||
|
var_skill = getDvarInt("bots_skill");
|
||||||
|
|
||||||
|
allies_hard = 0;
|
||||||
|
allies_med = 0;
|
||||||
|
axis_hard = 0;
|
||||||
|
axis_med = 0;
|
||||||
|
|
||||||
|
if(var_skill == 8)
|
||||||
|
{
|
||||||
|
playercount = level.players.size;
|
||||||
|
for(i = 0; i < playercount; i++)
|
||||||
|
{
|
||||||
|
player = level.players[i];
|
||||||
|
|
||||||
|
if(!isDefined(player.pers["team"]))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(!player is_bot())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(player.pers["team"] == "axis")
|
||||||
|
{
|
||||||
|
if(axis_hard < var_axis_hard)
|
||||||
|
{
|
||||||
|
axis_hard++;
|
||||||
|
player.pers["bots"]["skill"]["base"] = 6;
|
||||||
|
}
|
||||||
|
else if(axis_med < var_axis_med)
|
||||||
|
{
|
||||||
|
axis_med++;
|
||||||
|
player.pers["bots"]["skill"]["base"] = 3;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
player.pers["bots"]["skill"]["base"] = 0;
|
||||||
|
}
|
||||||
|
else if(player.pers["team"] == "allies")
|
||||||
|
{
|
||||||
|
if(allies_hard < var_allies_hard)
|
||||||
|
{
|
||||||
|
allies_hard++;
|
||||||
|
player.pers["bots"]["skill"]["base"] = 6;
|
||||||
|
}
|
||||||
|
else if(allies_med < var_allies_med)
|
||||||
|
{
|
||||||
|
allies_med++;
|
||||||
|
player.pers["bots"]["skill"]["base"] = 3;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
player.pers["bots"]["skill"]["base"] = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (var_skill != 0 && var_skill != 9)
|
||||||
|
{
|
||||||
|
playercount = level.players.size;
|
||||||
|
for(i = 0; i < playercount; i++)
|
||||||
|
{
|
||||||
|
player = level.players[i];
|
||||||
|
|
||||||
|
if(!player is_bot())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
player.pers["bots"]["skill"]["base"] = var_skill;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
A server thread for monitoring all bot's teams for custom server settings.
|
||||||
|
*/
|
||||||
|
teamBots()
|
||||||
|
{
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
wait 1.5;
|
||||||
|
teamAmount = getDvarInt("bots_team_amount");
|
||||||
|
toTeam = getDvar("bots_team");
|
||||||
|
|
||||||
|
alliesbots = 0;
|
||||||
|
alliesplayers = 0;
|
||||||
|
axisbots = 0;
|
||||||
|
axisplayers = 0;
|
||||||
|
|
||||||
|
playercount = level.players.size;
|
||||||
|
for(i = 0; i < playercount; i++)
|
||||||
|
{
|
||||||
|
player = level.players[i];
|
||||||
|
|
||||||
|
if(!isDefined(player.pers["team"]))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(player is_bot())
|
||||||
|
{
|
||||||
|
if(player.pers["team"] == "allies")
|
||||||
|
alliesbots++;
|
||||||
|
else if(player.pers["team"] == "axis")
|
||||||
|
axisbots++;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if(player.pers["team"] == "allies")
|
||||||
|
alliesplayers++;
|
||||||
|
else if(player.pers["team"] == "axis")
|
||||||
|
axisplayers++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
allies = alliesbots;
|
||||||
|
axis = axisbots;
|
||||||
|
|
||||||
|
if(!getDvarInt("bots_team_mode"))
|
||||||
|
{
|
||||||
|
allies += alliesplayers;
|
||||||
|
axis += axisplayers;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(toTeam != "custom")
|
||||||
|
{
|
||||||
|
if(getDvarInt("bots_team_force"))
|
||||||
|
{
|
||||||
|
if(toTeam == "autoassign")
|
||||||
|
{
|
||||||
|
if(abs(axis - allies) > 1)
|
||||||
|
{
|
||||||
|
toTeam = "axis";
|
||||||
|
if(axis > allies)
|
||||||
|
toTeam = "allies";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(toTeam != "autoassign")
|
||||||
|
{
|
||||||
|
playercount = level.players.size;
|
||||||
|
for(i = 0; i < playercount; i++)
|
||||||
|
{
|
||||||
|
player = level.players[i];
|
||||||
|
|
||||||
|
if(!isDefined(player.pers["team"]))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(!player is_bot())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(player.pers["team"] == toTeam)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
player notify("menuresponse", game["menu_team"], toTeam);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
playercount = level.players.size;
|
||||||
|
for(i = 0; i < playercount; i++)
|
||||||
|
{
|
||||||
|
player = level.players[i];
|
||||||
|
|
||||||
|
if(!isDefined(player.pers["team"]))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(!player is_bot())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(player.pers["team"] == "axis")
|
||||||
|
{
|
||||||
|
if(axis > teamAmount)
|
||||||
|
{
|
||||||
|
player notify("menuresponse", game["menu_team"], "allies");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if(axis < teamAmount)
|
||||||
|
{
|
||||||
|
player notify("menuresponse", game["menu_team"], "axis");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else if(player.pers["team"] != "allies")
|
||||||
|
{
|
||||||
|
player notify("menuresponse", game["menu_team"], "allies");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
A server thread for monitoring all bot's in game. Will add and kick bots according to server settings.
|
||||||
|
*/
|
||||||
|
addBots()
|
||||||
|
{
|
||||||
|
level endon("game_ended");
|
||||||
|
|
||||||
|
wait 3;
|
||||||
|
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
wait 1.5;
|
||||||
|
|
||||||
|
botsToAdd = GetDvarInt("bots_manage_add");
|
||||||
|
SetDvar("bots_manage_add", 0);
|
||||||
|
|
||||||
|
if(botsToAdd > 0)
|
||||||
|
{
|
||||||
|
if(botsToAdd > 64)
|
||||||
|
botsToAdd = 64;
|
||||||
|
|
||||||
|
for(; botsToAdd > 0; botsToAdd--)
|
||||||
|
{
|
||||||
|
level add_bot();
|
||||||
|
wait 0.25;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fillMode = getDVarInt("bots_manage_fill_mode");
|
||||||
|
|
||||||
|
if(fillMode == 2 || fillMode == 3)
|
||||||
|
setDvar("bots_manage_fill", getGoodMapAmount());
|
||||||
|
|
||||||
|
fillAmount = getDvarInt("bots_manage_fill");
|
||||||
|
|
||||||
|
players = 0;
|
||||||
|
bots = 0;
|
||||||
|
spec = 0;
|
||||||
|
|
||||||
|
playercount = level.players.size;
|
||||||
|
for(i = 0; i < playercount; i++)
|
||||||
|
{
|
||||||
|
player = level.players[i];
|
||||||
|
|
||||||
|
if(player is_bot())
|
||||||
|
bots++;
|
||||||
|
else if(!isDefined(player.pers["team"]) || (player.pers["team"] != "axis" && player.pers["team"] != "allies"))
|
||||||
|
spec++;
|
||||||
|
else
|
||||||
|
players++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(fillMode == 4)
|
||||||
|
{
|
||||||
|
axisplayers = 0;
|
||||||
|
alliesplayers = 0;
|
||||||
|
|
||||||
|
playercount = level.players.size;
|
||||||
|
for(i = 0; i < playercount; i++)
|
||||||
|
{
|
||||||
|
player = level.players[i];
|
||||||
|
|
||||||
|
if(player is_bot())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(!isDefined(player.pers["team"]))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(player.pers["team"] == "axis")
|
||||||
|
axisplayers++;
|
||||||
|
else if(player.pers["team"] == "allies")
|
||||||
|
alliesplayers++;
|
||||||
|
}
|
||||||
|
|
||||||
|
result = fillAmount - abs(axisplayers - alliesplayers) + bots;
|
||||||
|
|
||||||
|
if (players == 0)
|
||||||
|
{
|
||||||
|
if(bots < fillAmount)
|
||||||
|
result = fillAmount-1;
|
||||||
|
else if (bots > fillAmount)
|
||||||
|
result = fillAmount+1;
|
||||||
|
else
|
||||||
|
result = fillAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
bots = result;
|
||||||
|
}
|
||||||
|
|
||||||
|
amount = bots;
|
||||||
|
if(fillMode == 0 || fillMode == 2)
|
||||||
|
amount += players;
|
||||||
|
if(getDVarInt("bots_manage_fill_spec"))
|
||||||
|
amount += spec;
|
||||||
|
|
||||||
|
if(amount < fillAmount)
|
||||||
|
setDvar("bots_manage_add", 1);
|
||||||
|
else if(amount > fillAmount && getDvarInt("bots_manage_fill_kick"))
|
||||||
|
{
|
||||||
|
tempBot = random(getBotArray());
|
||||||
|
if (isDefined(tempBot))
|
||||||
|
kick( tempBot getEntityNumber(), "EXE_PLAYERKICKED" );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
A thread for ALL players, will monitor and grenades thrown.
|
||||||
|
*/
|
||||||
|
onGrenadeFire()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
self waittill ( "grenade_fire", grenade, weaponName );
|
||||||
|
grenade.name = weaponName;
|
||||||
|
if(weaponName == "smoke_grenade_mp")
|
||||||
|
grenade thread AddToSmokeList();
|
||||||
|
else if(isSubStr(weaponName, "frag_"))
|
||||||
|
grenade thread AddToFragList(self);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
AddToFragList(owner)
|
||||||
|
{
|
||||||
|
grenade = spawnStruct();
|
||||||
|
|
||||||
|
grenade.grenade = self;
|
||||||
|
grenade.owner = owner;
|
||||||
|
grenade.team = owner.team;
|
||||||
|
grenade.throwback = undefined;
|
||||||
|
|
||||||
|
level.bots_fragList ListAdd(grenade);
|
||||||
|
|
||||||
|
grenade thread FragThink();
|
||||||
|
}
|
||||||
|
|
||||||
|
FragThink()
|
||||||
|
{
|
||||||
|
while (isDefined(self.grenade))
|
||||||
|
wait 0.05;
|
||||||
|
|
||||||
|
level.bots_fragList ListRemove(self);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Adds a smoke grenade to the list of smokes in the game. Used to prevent bots from seeing through smoke.
|
||||||
|
*/
|
||||||
|
AddToSmokeList()
|
||||||
|
{
|
||||||
|
grenade = spawnstruct();
|
||||||
|
grenade.origin = self getOrigin();
|
||||||
|
grenade.state = "moving";
|
||||||
|
grenade.grenade = self;
|
||||||
|
|
||||||
|
grenade thread thinkSmoke();
|
||||||
|
|
||||||
|
level.bots_smokeList ListAdd(grenade);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
The smoke grenade logic.
|
||||||
|
*/
|
||||||
|
thinkSmoke()
|
||||||
|
{
|
||||||
|
while(isDefined(self.grenade))
|
||||||
|
{
|
||||||
|
self.origin = self.grenade getOrigin();
|
||||||
|
self.state = "moving";
|
||||||
|
wait 0.05;
|
||||||
|
}
|
||||||
|
self.state = "smoking";
|
||||||
|
wait 11.5;
|
||||||
|
|
||||||
|
level.bots_smokeList ListRemove(self);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
A thread for ALL players when they fire.
|
||||||
|
*/
|
||||||
|
onWeaponFired()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
self.bots_firing = false;
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
self waittill( "weapon_fired" );
|
||||||
|
self thread doFiringThread();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Lets bot's know that the player is firing.
|
||||||
|
*/
|
||||||
|
doFiringThread()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
self endon("weapon_fired");
|
||||||
|
self.bots_firing = true;
|
||||||
|
wait 1;
|
||||||
|
self.bots_firing = false;
|
||||||
|
}
|
1510
mods/bots/maps/mp/bots/_bot_internal.gsc
Normal file
1510
mods/bots/maps/mp/bots/_bot_internal.gsc
Normal file
File diff suppressed because it is too large
Load Diff
865
mods/bots/maps/mp/bots/_bot_script.gsc
Normal file
865
mods/bots/maps/mp/bots/_bot_script.gsc
Normal file
@ -0,0 +1,865 @@
|
|||||||
|
#include common_scripts\utility;
|
||||||
|
#include maps\mp\_utility;
|
||||||
|
#include maps\mp\gametypes\_hud_util;
|
||||||
|
#include maps\mp\bots\_bot_utility;
|
||||||
|
|
||||||
|
/*
|
||||||
|
When the bot gets added into the game.
|
||||||
|
*/
|
||||||
|
added()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
|
||||||
|
self setPlayerData("experience", self bot_get_rank());
|
||||||
|
self setPlayerData("prestige", 0);
|
||||||
|
|
||||||
|
self setPlayerData("cardTitle", random(getCardTitles()));
|
||||||
|
self setPlayerData("cardIcon", random(getCardIcons()));
|
||||||
|
|
||||||
|
self setClasses();
|
||||||
|
self setKillstreaks();
|
||||||
|
|
||||||
|
self set_diff();
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
When the bot connects to the game.
|
||||||
|
*/
|
||||||
|
connected()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
|
||||||
|
self thread difficulty();
|
||||||
|
self thread teamWatch();
|
||||||
|
self thread classWatch();
|
||||||
|
|
||||||
|
self thread onBotSpawned();
|
||||||
|
self thread onSpawned();
|
||||||
|
|
||||||
|
self thread onDeath();
|
||||||
|
self thread onGiveLoadout();
|
||||||
|
|
||||||
|
self thread onKillcam();
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Gets an exp amount for the bot that is nearish the host's xp.
|
||||||
|
*/
|
||||||
|
bot_get_rank()
|
||||||
|
{
|
||||||
|
ranks = [];
|
||||||
|
bot_ranks = [];
|
||||||
|
human_ranks = [];
|
||||||
|
|
||||||
|
for ( i = level.players.size - 1; i >= 0; i-- )
|
||||||
|
{
|
||||||
|
player = level.players[i];
|
||||||
|
|
||||||
|
if ( player == self )
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if ( !IsDefined( player.pers[ "rank" ] ) )
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if ( player is_bot() )
|
||||||
|
{
|
||||||
|
bot_ranks[ bot_ranks.size ] = player.pers[ "rank" ];
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
human_ranks[ human_ranks.size ] = player.pers[ "rank" ];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if( !human_ranks.size )
|
||||||
|
human_ranks[ human_ranks.size ] = Round( random_normal_distribution( 45, 20, 0, level.maxRank ) );
|
||||||
|
|
||||||
|
human_avg = array_average( human_ranks );
|
||||||
|
|
||||||
|
while ( bot_ranks.size + human_ranks.size < 5 )
|
||||||
|
{
|
||||||
|
// add some random ranks for better random number distribution
|
||||||
|
rank = human_avg + RandomIntRange( -10, 10 );
|
||||||
|
human_ranks[ human_ranks.size ] = rank;
|
||||||
|
}
|
||||||
|
|
||||||
|
ranks = array_combine( human_ranks, bot_ranks );
|
||||||
|
|
||||||
|
avg = array_average( ranks );
|
||||||
|
s = array_std_deviation( ranks, avg );
|
||||||
|
|
||||||
|
rank = Round( random_normal_distribution( avg, s, 0, level.maxRank ) );
|
||||||
|
|
||||||
|
return maps\mp\gametypes\_rank::getRankInfoMinXP( rank );
|
||||||
|
}
|
||||||
|
|
||||||
|
getCardTitles()
|
||||||
|
{
|
||||||
|
cards = [];
|
||||||
|
|
||||||
|
for (i = 0; i < 600; i++)
|
||||||
|
{
|
||||||
|
card_name = tableLookupByRow( "mp/cardTitleTable.csv", i, 0 );
|
||||||
|
|
||||||
|
if (card_name == "")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (!isSubStr(card_name, "cardtitle_"))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
cards[cards.size] = card_name;
|
||||||
|
}
|
||||||
|
|
||||||
|
return cards;
|
||||||
|
}
|
||||||
|
|
||||||
|
getCardIcons()
|
||||||
|
{
|
||||||
|
cards = [];
|
||||||
|
|
||||||
|
for (i = 0; i < 300; i++)
|
||||||
|
{
|
||||||
|
card_name = tableLookupByRow( "mp/cardIconTable.csv", i, 0 );
|
||||||
|
|
||||||
|
if (card_name == "")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (!isSubStr(card_name, "cardicon_"))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
cards[cards.size] = card_name;
|
||||||
|
}
|
||||||
|
|
||||||
|
return cards;
|
||||||
|
}
|
||||||
|
|
||||||
|
isValidAttachmentCombo(att1, att2)
|
||||||
|
{
|
||||||
|
colIndex = tableLookupRowNum( "mp/attachmentCombos.csv", 0, att1 );
|
||||||
|
|
||||||
|
if (tableLookup( "mp/attachmentCombos.csv", 0, att2, colIndex ) == "no")
|
||||||
|
return false;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
getAttachmentsForGun(gun)
|
||||||
|
{
|
||||||
|
row = tableLookupRowNum( "mp/statStable.csv", 4, gun );
|
||||||
|
|
||||||
|
attachments = [];
|
||||||
|
for ( h = 0; h < 10; h++ )
|
||||||
|
{
|
||||||
|
attachmentName = tableLookupByRow( "mp/statStable.csv", row, h + 11 );
|
||||||
|
|
||||||
|
if( attachmentName == "" )
|
||||||
|
{
|
||||||
|
attachments[attachments.size] = "none";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
attachments[attachments.size] = attachmentName;
|
||||||
|
}
|
||||||
|
|
||||||
|
return attachments;
|
||||||
|
}
|
||||||
|
|
||||||
|
getPrimaries()
|
||||||
|
{
|
||||||
|
primaries = [];
|
||||||
|
|
||||||
|
for (i = 0; i < 160; i++)
|
||||||
|
{
|
||||||
|
weapon_type = tableLookupByRow( "mp/statstable.csv", i, 2 );
|
||||||
|
|
||||||
|
if (weapon_type != "weapon_assault" && weapon_type != "weapon_riot" && weapon_type != "weapon_smg" && weapon_type != "weapon_sniper" && weapon_type != "weapon_lmg")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
weapon_name = tableLookupByRow( "mp/statstable.csv", i, 4 );
|
||||||
|
|
||||||
|
primaries[primaries.size] = weapon_name;
|
||||||
|
}
|
||||||
|
|
||||||
|
return primaries;
|
||||||
|
}
|
||||||
|
|
||||||
|
getSecondaries()
|
||||||
|
{
|
||||||
|
secondaries = [];
|
||||||
|
|
||||||
|
for (i = 0; i < 160; i++)
|
||||||
|
{
|
||||||
|
weapon_type = tableLookupByRow( "mp/statstable.csv", i, 2 );
|
||||||
|
|
||||||
|
if (weapon_type != "weapon_pistol" && weapon_type != "weapon_machine_pistol" && weapon_type != "weapon_projectile" && weapon_type != "weapon_shotgun")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
weapon_name = tableLookupByRow( "mp/statstable.csv", i, 4 );
|
||||||
|
|
||||||
|
secondaries[secondaries.size] = weapon_name;
|
||||||
|
}
|
||||||
|
|
||||||
|
return secondaries;
|
||||||
|
}
|
||||||
|
|
||||||
|
getCamos()
|
||||||
|
{
|
||||||
|
camos = [];
|
||||||
|
|
||||||
|
for (i = 0; i < 15; i++)
|
||||||
|
{
|
||||||
|
camo_name = tableLookupByRow( "mp/camoTable.csv", i, 1 );
|
||||||
|
|
||||||
|
if (camo_name == "")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
camos[camos.size] = camo_name;
|
||||||
|
}
|
||||||
|
|
||||||
|
return camos;
|
||||||
|
}
|
||||||
|
|
||||||
|
getPerks(perktype)
|
||||||
|
{
|
||||||
|
perks = [];
|
||||||
|
for (i = 0; i < 50; i++)
|
||||||
|
{
|
||||||
|
perk_type = tableLookupByRow( "mp/perktable.csv", i, 5 );
|
||||||
|
|
||||||
|
if (perk_type != perktype)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
perk_name = tableLookupByRow( "mp/perktable.csv", i, 1 );
|
||||||
|
|
||||||
|
perks[perks.size] = perk_name;
|
||||||
|
}
|
||||||
|
|
||||||
|
return perks;
|
||||||
|
}
|
||||||
|
|
||||||
|
getKillsNeededForStreak(streak)
|
||||||
|
{
|
||||||
|
return int(tableLookup("mp/killstreakTable.csv", 1, streak, 4));
|
||||||
|
}
|
||||||
|
|
||||||
|
getKillstreaks()
|
||||||
|
{
|
||||||
|
killstreaks = [];
|
||||||
|
for (i = 0; i < 40; i++)
|
||||||
|
{
|
||||||
|
streak_name = tableLookupByRow( "mp/killstreakTable.csv", i, 1 );
|
||||||
|
|
||||||
|
if(streak_name == "")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(streak_name == "b1")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (isSubstr(streak_name, "KILLSTREAKS_"))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
killstreaks[killstreaks.size] = streak_name;
|
||||||
|
}
|
||||||
|
return killstreaks;
|
||||||
|
}
|
||||||
|
|
||||||
|
chooseRandomPerk(perkkind)
|
||||||
|
{
|
||||||
|
perks = getPerks(perkkind);
|
||||||
|
rank = self maps\mp\gametypes\_rank::getRankForXp( self getPlayerData("experience") );
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
perk = random(perks);
|
||||||
|
|
||||||
|
if (perk == "specialty_null")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (perk == "specialty_c4death")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (perk == "_specialty_blastshield")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (!self isItemUnlocked(perk))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (RandomFloatRange(0, 1) < (rank / level.maxRank))
|
||||||
|
self.pers["bots"]["unlocks"]["upgraded_"+perk] = true;
|
||||||
|
|
||||||
|
return perk;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
chooseRandomCamo()
|
||||||
|
{
|
||||||
|
camos = getCamos();
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
camo = random(camos);
|
||||||
|
|
||||||
|
if (camo == "gold" || camo == "prestige")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
return camo;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
chooseRandomPrimary()
|
||||||
|
{
|
||||||
|
primaries = getPrimaries();
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
primary = random(primaries);
|
||||||
|
|
||||||
|
if (!self isItemUnlocked(primary))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
return primary;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
chooseRandomSecondary(perk1)
|
||||||
|
{
|
||||||
|
if (perk1 == "specialty_onemanarmy")
|
||||||
|
return "onemanarmy";
|
||||||
|
|
||||||
|
secondaries = getSecondaries();
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
secondary = random(secondaries);
|
||||||
|
|
||||||
|
if (!self isItemUnlocked(secondary))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (secondary == "onemanarmy")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
return secondary;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
chooseRandomAttachmentComboForGun(gun)
|
||||||
|
{
|
||||||
|
atts = getAttachmentsForGun(gun);
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
att1 = random(atts);
|
||||||
|
att2 = random(atts);
|
||||||
|
|
||||||
|
if (!isValidAttachmentCombo(att1, att2))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
retAtts = [];
|
||||||
|
retAtts[0] = att1;
|
||||||
|
retAtts[1] = att2;
|
||||||
|
|
||||||
|
return retAtts;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
chooseRandomTactical()
|
||||||
|
{
|
||||||
|
tacts = strTok("flash_grenade,smoke_grenade,concussion_grenade", ",");
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
tact = random(tacts);
|
||||||
|
|
||||||
|
return tact;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
setClasses()
|
||||||
|
{
|
||||||
|
rank = self maps\mp\gametypes\_rank::getRankForXp( self getPlayerData("experience") );
|
||||||
|
|
||||||
|
if (RandomFloatRange(0, 1) < (rank / level.maxRank))
|
||||||
|
self.pers["bots"]["unlocks"]["ghillie"] = true;
|
||||||
|
|
||||||
|
for (i = 0; i < 5; i++)
|
||||||
|
{
|
||||||
|
equipment = chooseRandomPerk("equipment");
|
||||||
|
perk1 = chooseRandomPerk("perk1");
|
||||||
|
perk2 = chooseRandomPerk("perk2");
|
||||||
|
perk3 = chooseRandomPerk("perk3");
|
||||||
|
deathstreak = chooseRandomPerk("perk4");
|
||||||
|
tactical = chooseRandomTactical();
|
||||||
|
primary = chooseRandomPrimary();
|
||||||
|
primaryAtts = chooseRandomAttachmentComboForGun(primary);
|
||||||
|
primaryCamo = chooseRandomCamo();
|
||||||
|
secondary = chooseRandomSecondary(perk1);
|
||||||
|
secondaryAtts = chooseRandomAttachmentComboForGun(secondary);
|
||||||
|
|
||||||
|
self setPlayerData("customClasses", i, "weaponSetups", 0, "weapon", primary);
|
||||||
|
self setPlayerData("customClasses", i, "weaponSetups", 0, "attachment", 0, primaryAtts[0]);
|
||||||
|
self setPlayerData("customClasses", i, "weaponSetups", 0, "attachment", 1, primaryAtts[1]);
|
||||||
|
self setPlayerData("customClasses", i, "weaponSetups", 0, "camo", primaryCamo);
|
||||||
|
|
||||||
|
self setPlayerData("customClasses", i, "weaponSetups", 1, "weapon", secondary);
|
||||||
|
self setPlayerData("customClasses", i, "weaponSetups", 1, "attachment", 0, secondaryAtts[0]);
|
||||||
|
self setPlayerData("customClasses", i, "weaponSetups", 1, "attachment", 1, secondaryAtts[1]);
|
||||||
|
|
||||||
|
self setPlayerData("customClasses", i, "perks", 0, equipment);
|
||||||
|
self setPlayerData("customClasses", i, "perks", 1, perk1);
|
||||||
|
self setPlayerData("customClasses", i, "perks", 2, perk2);
|
||||||
|
self setPlayerData("customClasses", i, "perks", 3, perk3);
|
||||||
|
self setPlayerData("customClasses", i, "perks", 4, deathstreak);
|
||||||
|
self setPlayerData("customClasses", i, "specialGrenade", tactical);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
isColidingKillstreak(killstreaks, killstreak)
|
||||||
|
{
|
||||||
|
ksVal = getKillsNeededForStreak(killstreak);
|
||||||
|
|
||||||
|
for (i = 0; i < killstreaks.size; i++)
|
||||||
|
{
|
||||||
|
ks = killstreaks[i];
|
||||||
|
|
||||||
|
if (ks == "")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (ks == "none")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
ksV = getKillsNeededForStreak(ks);
|
||||||
|
|
||||||
|
if (ksV <= 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (ksV != ksVal)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
setKillstreaks()
|
||||||
|
{
|
||||||
|
rankId = self maps\mp\gametypes\_rank::getRankForXp( self getPlayerData( "experience" ) ) + 1;
|
||||||
|
|
||||||
|
allStreaks = getKillstreaks();
|
||||||
|
|
||||||
|
killstreaks = [];
|
||||||
|
killstreaks[0] = "";
|
||||||
|
killstreaks[1] = "";
|
||||||
|
killstreaks[2] = "";
|
||||||
|
|
||||||
|
chooseableStreaks = 0;
|
||||||
|
if (rankId >= 10)
|
||||||
|
chooseableStreaks++;
|
||||||
|
if (rankId >= 15)
|
||||||
|
chooseableStreaks++;
|
||||||
|
if (rankId >= 22)
|
||||||
|
chooseableStreaks++;
|
||||||
|
|
||||||
|
i = 0;
|
||||||
|
while (i < chooseableStreaks)
|
||||||
|
{
|
||||||
|
slot = randomInt(3);
|
||||||
|
|
||||||
|
if (killstreaks[slot] != "")
|
||||||
|
continue;
|
||||||
|
|
||||||
|
streak = random(allStreaks);
|
||||||
|
|
||||||
|
if (isColidingKillstreak(killstreaks, streak))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
killstreaks[slot] = streak;
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (killstreaks[0] == "")
|
||||||
|
killstreaks[0] = "uav";
|
||||||
|
if (killstreaks[1] == "")
|
||||||
|
killstreaks[1] = "airdrop";
|
||||||
|
if (killstreaks[2] == "")
|
||||||
|
killstreaks[2] = "predator_missile";
|
||||||
|
|
||||||
|
self setPlayerData("killstreaks", 0, killstreaks[0]);
|
||||||
|
self setPlayerData("killstreaks", 1, killstreaks[1]);
|
||||||
|
self setPlayerData("killstreaks", 2, killstreaks[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
The callback for when the bot gets killed.
|
||||||
|
*/
|
||||||
|
onKilled(eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
The callback for when the bot gets damaged.
|
||||||
|
*/
|
||||||
|
onDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
onKillcam()
|
||||||
|
{
|
||||||
|
level endon("game_ended");
|
||||||
|
self endon("disconnect");
|
||||||
|
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
self waittill("begin_killcam");
|
||||||
|
|
||||||
|
self thread doKillcamStuff();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
doKillcamStuff()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
self endon("killcam_ended");
|
||||||
|
|
||||||
|
wait 0.5 + randomInt(3);
|
||||||
|
|
||||||
|
if (randomInt(100) > 25)
|
||||||
|
self notify("use_copycat");
|
||||||
|
|
||||||
|
wait 0.1;
|
||||||
|
|
||||||
|
self notify("abort_killcam");
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Selects a class for the bot.
|
||||||
|
*/
|
||||||
|
classWatch()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
while(!isdefined(self.pers["team"]))
|
||||||
|
wait .05;
|
||||||
|
|
||||||
|
wait 0.5;
|
||||||
|
|
||||||
|
class = "";
|
||||||
|
rank = self maps\mp\gametypes\_rank::getRankForXp( self getPlayerData( "experience" ) ) + 1;
|
||||||
|
if(rank < 4 || randomInt(100) < 2)
|
||||||
|
{
|
||||||
|
while(class == "")
|
||||||
|
{
|
||||||
|
switch(randomInt(5))
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
class = "class0";
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
class = "class1";
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
class = "class2";
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
if(rank >= 2)
|
||||||
|
class = "class3";
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
if(rank >= 3)
|
||||||
|
class = "class4";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
class = "custom"+(randomInt(5)+1);
|
||||||
|
}
|
||||||
|
|
||||||
|
self notify("menuresponse", game["menu_changeclass"], class);
|
||||||
|
self.bot_change_class = true;
|
||||||
|
|
||||||
|
while(isdefined(self.pers["team"]) && isdefined(self.pers["class"]) && isDefined(self.bot_change_class))
|
||||||
|
wait .05;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Makes sure the bot is on a team.
|
||||||
|
*/
|
||||||
|
teamWatch()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
while(!isdefined(self.pers["team"]))
|
||||||
|
wait .05;
|
||||||
|
|
||||||
|
wait 0.05;
|
||||||
|
self notify("menuresponse", game["menu_team"], getDvar("bots_team"));
|
||||||
|
|
||||||
|
while(isdefined(self.pers["team"]))
|
||||||
|
wait .05;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Updates the bot's difficulty variables.
|
||||||
|
*/
|
||||||
|
difficulty()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
wait 1;
|
||||||
|
|
||||||
|
rankVar = GetDvarInt("bots_skill");
|
||||||
|
|
||||||
|
if(rankVar == 9)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
switch(self.pers["bots"]["skill"]["base"])
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
self.pers["bots"]["skill"]["aim_time"] = 0.6;
|
||||||
|
self.pers["bots"]["skill"]["init_react_time"] = 1500;
|
||||||
|
self.pers["bots"]["skill"]["reaction_time"] = 1000;
|
||||||
|
self.pers["bots"]["skill"]["remember_time"] = 750;
|
||||||
|
self.pers["bots"]["skill"]["fov"] = 0.7;
|
||||||
|
self.pers["bots"]["skill"]["dist"] = 1000;
|
||||||
|
self.pers["bots"]["skill"]["spawn_time"] = 0.75;
|
||||||
|
self.pers["bots"]["skill"]["help_dist"] = 0;
|
||||||
|
self.pers["bots"]["skill"]["semi_time"] = 0.9;
|
||||||
|
self.pers["bots"]["behavior"]["strafe"] = 0;
|
||||||
|
self.pers["bots"]["behavior"]["nade"] = 10;
|
||||||
|
self.pers["bots"]["behavior"]["sprint"] = 10;
|
||||||
|
self.pers["bots"]["behavior"]["camp"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["follow"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["crouch"] = 70;
|
||||||
|
self.pers["bots"]["behavior"]["switch"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["class"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["jump"] = 0;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
self.pers["bots"]["skill"]["aim_time"] = 0.55;
|
||||||
|
self.pers["bots"]["skill"]["init_react_time"] = 1000;
|
||||||
|
self.pers["bots"]["skill"]["reaction_time"] = 800;
|
||||||
|
self.pers["bots"]["skill"]["remember_time"] = 1500;
|
||||||
|
self.pers["bots"]["skill"]["fov"] = 0.65;
|
||||||
|
self.pers["bots"]["skill"]["dist"] = 1500;
|
||||||
|
self.pers["bots"]["skill"]["spawn_time"] = 0.65;
|
||||||
|
self.pers["bots"]["skill"]["help_dist"] = 500;
|
||||||
|
self.pers["bots"]["skill"]["semi_time"] = 0.75;
|
||||||
|
self.pers["bots"]["behavior"]["strafe"] = 10;
|
||||||
|
self.pers["bots"]["behavior"]["nade"] = 15;
|
||||||
|
self.pers["bots"]["behavior"]["sprint"] = 15;
|
||||||
|
self.pers["bots"]["behavior"]["camp"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["follow"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["crouch"] = 60;
|
||||||
|
self.pers["bots"]["behavior"]["switch"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["class"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["jump"] = 10;
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
self.pers["bots"]["skill"]["aim_time"] = 0.4;
|
||||||
|
self.pers["bots"]["skill"]["init_react_time"] = 750;
|
||||||
|
self.pers["bots"]["skill"]["reaction_time"] = 500;
|
||||||
|
self.pers["bots"]["skill"]["remember_time"] = 2000;
|
||||||
|
self.pers["bots"]["skill"]["fov"] = 0.6;
|
||||||
|
self.pers["bots"]["skill"]["dist"] = 2250;
|
||||||
|
self.pers["bots"]["skill"]["spawn_time"] = 0.5;
|
||||||
|
self.pers["bots"]["skill"]["help_dist"] = 750;
|
||||||
|
self.pers["bots"]["skill"]["semi_time"] = 0.65;
|
||||||
|
self.pers["bots"]["behavior"]["strafe"] = 20;
|
||||||
|
self.pers["bots"]["behavior"]["nade"] = 20;
|
||||||
|
self.pers["bots"]["behavior"]["sprint"] = 20;
|
||||||
|
self.pers["bots"]["behavior"]["camp"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["follow"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["crouch"] = 50;
|
||||||
|
self.pers["bots"]["behavior"]["switch"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["class"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["jump"] = 25;
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
self.pers["bots"]["skill"]["aim_time"] = 0.3;
|
||||||
|
self.pers["bots"]["skill"]["init_react_time"] = 600;
|
||||||
|
self.pers["bots"]["skill"]["reaction_time"] = 400;
|
||||||
|
self.pers["bots"]["skill"]["remember_time"] = 3000;
|
||||||
|
self.pers["bots"]["skill"]["fov"] = 0.55;
|
||||||
|
self.pers["bots"]["skill"]["dist"] = 3350;
|
||||||
|
self.pers["bots"]["skill"]["spawn_time"] = 0.35;
|
||||||
|
self.pers["bots"]["skill"]["help_dist"] = 1000;
|
||||||
|
self.pers["bots"]["skill"]["semi_time"] = 0.5;
|
||||||
|
self.pers["bots"]["behavior"]["strafe"] = 30;
|
||||||
|
self.pers["bots"]["behavior"]["nade"] = 25;
|
||||||
|
self.pers["bots"]["behavior"]["sprint"] = 30;
|
||||||
|
self.pers["bots"]["behavior"]["camp"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["follow"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["crouch"] = 40;
|
||||||
|
self.pers["bots"]["behavior"]["switch"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["class"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["jump"] = 35;
|
||||||
|
break;
|
||||||
|
case 5:
|
||||||
|
self.pers["bots"]["skill"]["aim_time"] = 0.25;
|
||||||
|
self.pers["bots"]["skill"]["init_react_time"] = 500;
|
||||||
|
self.pers["bots"]["skill"]["reaction_time"] = 300;
|
||||||
|
self.pers["bots"]["skill"]["remember_time"] = 4000;
|
||||||
|
self.pers["bots"]["skill"]["fov"] = 0.5;
|
||||||
|
self.pers["bots"]["skill"]["dist"] = 5000;
|
||||||
|
self.pers["bots"]["skill"]["spawn_time"] = 0.25;
|
||||||
|
self.pers["bots"]["skill"]["help_dist"] = 1500;
|
||||||
|
self.pers["bots"]["skill"]["semi_time"] = 0.4;
|
||||||
|
self.pers["bots"]["behavior"]["strafe"] = 40;
|
||||||
|
self.pers["bots"]["behavior"]["nade"] = 35;
|
||||||
|
self.pers["bots"]["behavior"]["sprint"] = 40;
|
||||||
|
self.pers["bots"]["behavior"]["camp"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["follow"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["crouch"] = 30;
|
||||||
|
self.pers["bots"]["behavior"]["switch"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["class"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["jump"] = 50;
|
||||||
|
break;
|
||||||
|
case 6:
|
||||||
|
self.pers["bots"]["skill"]["aim_time"] = 0.2;
|
||||||
|
self.pers["bots"]["skill"]["init_react_time"] = 250;
|
||||||
|
self.pers["bots"]["skill"]["reaction_time"] = 150;
|
||||||
|
self.pers["bots"]["skill"]["remember_time"] = 5000;
|
||||||
|
self.pers["bots"]["skill"]["fov"] = 0.45;
|
||||||
|
self.pers["bots"]["skill"]["dist"] = 7500;
|
||||||
|
self.pers["bots"]["skill"]["spawn_time"] = 0.2;
|
||||||
|
self.pers["bots"]["skill"]["help_dist"] = 2000;
|
||||||
|
self.pers["bots"]["skill"]["semi_time"] = 0.25;
|
||||||
|
self.pers["bots"]["behavior"]["strafe"] = 50;
|
||||||
|
self.pers["bots"]["behavior"]["nade"] = 45;
|
||||||
|
self.pers["bots"]["behavior"]["sprint"] = 50;
|
||||||
|
self.pers["bots"]["behavior"]["camp"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["follow"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["crouch"] = 20;
|
||||||
|
self.pers["bots"]["behavior"]["switch"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["class"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["jump"] = 75;
|
||||||
|
break;
|
||||||
|
case 7:
|
||||||
|
self.pers["bots"]["skill"]["aim_time"] = 0.1;
|
||||||
|
self.pers["bots"]["skill"]["init_react_time"] = 100;
|
||||||
|
self.pers["bots"]["skill"]["reaction_time"] = 50;
|
||||||
|
self.pers["bots"]["skill"]["remember_time"] = 7500;
|
||||||
|
self.pers["bots"]["skill"]["fov"] = 0.4;
|
||||||
|
self.pers["bots"]["skill"]["dist"] = 10000;
|
||||||
|
self.pers["bots"]["skill"]["spawn_time"] = 0.05;
|
||||||
|
self.pers["bots"]["skill"]["help_dist"] = 3000;
|
||||||
|
self.pers["bots"]["skill"]["semi_time"] = 0.1;
|
||||||
|
self.pers["bots"]["behavior"]["strafe"] = 65;
|
||||||
|
self.pers["bots"]["behavior"]["nade"] = 65;
|
||||||
|
self.pers["bots"]["behavior"]["sprint"] = 65;
|
||||||
|
self.pers["bots"]["behavior"]["camp"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["follow"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["crouch"] = 5;
|
||||||
|
self.pers["bots"]["behavior"]["switch"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["class"] = 2;
|
||||||
|
self.pers["bots"]["behavior"]["jump"] = 90;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Sets the bot difficulty.
|
||||||
|
*/
|
||||||
|
set_diff()
|
||||||
|
{
|
||||||
|
rankVar = GetDvarInt("bots_skill");
|
||||||
|
|
||||||
|
switch(rankVar)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
self.pers["bots"]["skill"]["base"] = Round( random_normal_distribution( 3.5, 1.75, 1, 7 ) );
|
||||||
|
break;
|
||||||
|
case 8:
|
||||||
|
break;
|
||||||
|
case 9:
|
||||||
|
self.pers["bots"]["skill"]["base"] = randomIntRange(1, 7);
|
||||||
|
self.pers["bots"]["skill"]["aim_time"] = 0.05 * randomIntRange(1, 20);
|
||||||
|
self.pers["bots"]["skill"]["init_react_time"] = 50 * randomInt(100);
|
||||||
|
self.pers["bots"]["skill"]["reaction_time"] = 50 * randomInt(100);
|
||||||
|
self.pers["bots"]["skill"]["remember_time"] = 50 * randomInt(100);
|
||||||
|
self.pers["bots"]["skill"]["fov"] = randomFloatRange(-1, 1);
|
||||||
|
self.pers["bots"]["skill"]["dist"] = randomIntRange(500, 25000);
|
||||||
|
self.pers["bots"]["skill"]["spawn_time"] = 0.05 * randomInt(20);
|
||||||
|
self.pers["bots"]["skill"]["help_dist"] = randomIntRange(500, 25000);
|
||||||
|
self.pers["bots"]["skill"]["semi_time"] = randomFloatRange(0.05, 1);
|
||||||
|
self.pers["bots"]["behavior"]["strafe"] = randomInt(100);
|
||||||
|
self.pers["bots"]["behavior"]["nade"] = randomInt(100);
|
||||||
|
self.pers["bots"]["behavior"]["sprint"] = randomInt(100);
|
||||||
|
self.pers["bots"]["behavior"]["camp"] = randomInt(100);
|
||||||
|
self.pers["bots"]["behavior"]["follow"] = randomInt(100);
|
||||||
|
self.pers["bots"]["behavior"]["crouch"] = randomInt(100);
|
||||||
|
self.pers["bots"]["behavior"]["switch"] = randomInt(100);
|
||||||
|
self.pers["bots"]["behavior"]["class"] = randomInt(100);
|
||||||
|
self.pers["bots"]["behavior"]["jump"] = randomInt(100);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
self.pers["bots"]["skill"]["base"] = rankVar;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
When the bot spawns.
|
||||||
|
*/
|
||||||
|
onSpawned()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
self waittill("spawned_player");
|
||||||
|
|
||||||
|
if(randomInt(100) <= self.pers["bots"]["behavior"]["class"])
|
||||||
|
self.bot_change_class = undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onDeath()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
self waittill("death");
|
||||||
|
|
||||||
|
self.wantSafeSpawn = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onGiveLoadout()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
self waittill("giveLoadout");
|
||||||
|
|
||||||
|
self botGiveLoadout(self.team, self.class, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
When the bot spawned, after the difficulty wait. Start the logic for the bot.
|
||||||
|
*/
|
||||||
|
onBotSpawned()
|
||||||
|
{
|
||||||
|
self endon("disconnect");
|
||||||
|
level endon("game_ended");
|
||||||
|
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
self waittill("bot_spawned");
|
||||||
|
gameFlagWait("prematch_done");
|
||||||
|
}
|
||||||
|
}
|
1702
mods/bots/maps/mp/bots/_bot_utility.gsc
Normal file
1702
mods/bots/maps/mp/bots/_bot_utility.gsc
Normal file
File diff suppressed because it is too large
Load Diff
4
mods/bots/maps/mp/bots/waypoints/_custom_map.gsc
Normal file
4
mods/bots/maps/mp/bots/waypoints/_custom_map.gsc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
main(mapname)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
720
mods/bots/maps/mp/bots/waypoints/afghan.gsc
Normal file
720
mods/bots/maps/mp/bots/waypoints/afghan.gsc
Normal file
@ -0,0 +1,720 @@
|
|||||||
|
Afghan()
|
||||||
|
{
|
||||||
|
/* 0:35 */waypoints = [];
|
||||||
|
/* 0:35 */waypoints[0] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[0].origin =(-496.312, -732.865, -142.346);
|
||||||
|
/* 0:35 */waypoints[0].type = "stand";
|
||||||
|
/* 0:35 */waypoints[0].childCount = 1;
|
||||||
|
/* 0:35 */waypoints[0].children[0] = 1;
|
||||||
|
/* 0:35 */waypoints[1] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[1].origin =(-17.2528, -459.032, -53.1686);
|
||||||
|
/* 0:35 */waypoints[1].type = "stand";
|
||||||
|
/* 0:35 */waypoints[1].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[1].children[0] = 0;
|
||||||
|
/* 0:35 */waypoints[1].children[1] = 2;
|
||||||
|
/* 0:35 */waypoints[1].children[2] = 5;
|
||||||
|
/* 0:35 */waypoints[2] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[2].origin =(427.623, -326.794, -22.5228);
|
||||||
|
/* 0:35 */waypoints[2].type = "stand";
|
||||||
|
/* 0:35 */waypoints[2].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[2].children[0] = 1;
|
||||||
|
/* 0:35 */waypoints[2].children[1] = 3;
|
||||||
|
/* 0:35 */waypoints[2].children[2] = 81;
|
||||||
|
/* 0:35 */waypoints[3] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[3].origin =(420.225, -271.977, -13.8064);
|
||||||
|
/* 0:35 */waypoints[3].type = "stand";
|
||||||
|
/* 0:35 */waypoints[3].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[3].children[0] = 2;
|
||||||
|
/* 0:35 */waypoints[3].children[1] = 4;
|
||||||
|
/* 0:35 */waypoints[4] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[4].origin =(383.669, 93.1845, -5.28357);
|
||||||
|
/* 0:35 */waypoints[4].type = "stand";
|
||||||
|
/* 0:35 */waypoints[4].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[4].children[0] = 3;
|
||||||
|
/* 0:35 */waypoints[4].children[1] = 5;
|
||||||
|
/* 0:35 */waypoints[4].children[2] = 80;
|
||||||
|
/* 0:35 */waypoints[5] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[5].origin =(30.5647, -0.0282056, -1.18442);
|
||||||
|
/* 0:35 */waypoints[5].type = "stand";
|
||||||
|
/* 0:35 */waypoints[5].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[5].children[0] = 4;
|
||||||
|
/* 0:35 */waypoints[5].children[1] = 1;
|
||||||
|
/* 0:35 */waypoints[5].children[2] = 6;
|
||||||
|
/* 0:35 */waypoints[6] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[6].origin =(-481.41, 243.585, 71.5882);
|
||||||
|
/* 0:35 */waypoints[6].type = "stand";
|
||||||
|
/* 0:35 */waypoints[6].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[6].children[0] = 5;
|
||||||
|
/* 0:35 */waypoints[6].children[1] = 7;
|
||||||
|
/* 0:35 */waypoints[7] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[7].origin =(-576.958, 803.125, 187.082);
|
||||||
|
/* 0:35 */waypoints[7].type = "stand";
|
||||||
|
/* 0:35 */waypoints[7].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[7].children[0] = 6;
|
||||||
|
/* 0:35 */waypoints[7].children[1] = 8;
|
||||||
|
/* 0:35 */waypoints[7].children[2] = 14;
|
||||||
|
/* 0:35 */waypoints[8] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[8].origin =(-1057.6, 1088.59, 118.154);
|
||||||
|
/* 0:35 */waypoints[8].type = "stand";
|
||||||
|
/* 0:35 */waypoints[8].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[8].children[0] = 7;
|
||||||
|
/* 0:35 */waypoints[8].children[1] = 9;
|
||||||
|
/* 0:35 */waypoints[9] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[9].origin =(-1210.9, 1152.94, 81.5377);
|
||||||
|
/* 0:35 */waypoints[9].type = "stand";
|
||||||
|
/* 0:35 */waypoints[9].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[9].children[0] = 8;
|
||||||
|
/* 0:35 */waypoints[9].children[1] = 10;
|
||||||
|
/* 0:35 */waypoints[9].children[2] = 11;
|
||||||
|
/* 0:35 */waypoints[9].children[3] = 12;
|
||||||
|
/* 0:35 */waypoints[10] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[10].origin =(-1286.62, 874.244, 65.5222);
|
||||||
|
/* 0:35 */waypoints[10].type = "stand";
|
||||||
|
/* 0:35 */waypoints[10].childCount = 1;
|
||||||
|
/* 0:35 */waypoints[10].children[0] = 9;
|
||||||
|
/* 0:35 */waypoints[11] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[11].origin =(-800.532, 1524.09, 170.07);
|
||||||
|
/* 0:35 */waypoints[11].type = "stand";
|
||||||
|
/* 0:35 */waypoints[11].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[11].children[0] = 9;
|
||||||
|
/* 0:35 */waypoints[11].children[1] = 13;
|
||||||
|
/* 0:35 */waypoints[12] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[12].origin =(-1248.34, 1651.74, 56.7686);
|
||||||
|
/* 0:35 */waypoints[12].type = "stand";
|
||||||
|
/* 0:35 */waypoints[12].childCount = 1;
|
||||||
|
/* 0:35 */waypoints[12].children[0] = 9;
|
||||||
|
/* 0:35 */waypoints[13] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[13].origin =(-429.461, 1513.86, 199.675);
|
||||||
|
/* 0:35 */waypoints[13].type = "stand";
|
||||||
|
/* 0:35 */waypoints[13].childCount = 5;
|
||||||
|
/* 0:35 */waypoints[13].children[0] = 11;
|
||||||
|
/* 0:35 */waypoints[13].children[1] = 14;
|
||||||
|
/* 0:35 */waypoints[13].children[2] = 15;
|
||||||
|
/* 0:35 */waypoints[13].children[3] = 16;
|
||||||
|
/* 0:35 */waypoints[13].children[4] = 107;
|
||||||
|
/* 0:35 */waypoints[14] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[14].origin =(-480.898, 1213.98, 186.146);
|
||||||
|
/* 0:35 */waypoints[14].type = "stand";
|
||||||
|
/* 0:35 */waypoints[14].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[14].children[0] = 13;
|
||||||
|
/* 0:35 */waypoints[14].children[1] = 7;
|
||||||
|
/* 0:35 */waypoints[15] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[15].origin =(-444.158, 2090.19, 64.125);
|
||||||
|
/* 0:35 */waypoints[15].type = "stand";
|
||||||
|
/* 0:35 */waypoints[15].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[15].children[0] = 13;
|
||||||
|
/* 0:35 */waypoints[15].children[1] = 17;
|
||||||
|
/* 0:35 */waypoints[15].children[2] = 28;
|
||||||
|
/* 0:35 */waypoints[16] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[16].origin =(-73.2721, 1520.26, 196.912);
|
||||||
|
/* 0:35 */waypoints[16].type = "stand";
|
||||||
|
/* 0:35 */waypoints[16].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[16].children[0] = 13;
|
||||||
|
/* 0:35 */waypoints[16].children[1] = 102;
|
||||||
|
/* 0:35 */waypoints[16].children[2] = 101;
|
||||||
|
/* 0:35 */waypoints[17] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[17].origin =(-148.298, 2242.25, 174.192);
|
||||||
|
/* 0:35 */waypoints[17].type = "stand";
|
||||||
|
/* 0:35 */waypoints[17].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[17].children[0] = 15;
|
||||||
|
/* 0:35 */waypoints[17].children[1] = 18;
|
||||||
|
/* 0:35 */waypoints[18] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[18].origin =(55.9953, 2213.98, 188.874);
|
||||||
|
/* 0:35 */waypoints[18].type = "stand";
|
||||||
|
/* 0:35 */waypoints[18].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[18].children[0] = 17;
|
||||||
|
/* 0:35 */waypoints[18].children[1] = 19;
|
||||||
|
/* 0:35 */waypoints[19] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[19].origin =(169.483, 2627.81, 202.973);
|
||||||
|
/* 0:35 */waypoints[19].type = "stand";
|
||||||
|
/* 0:35 */waypoints[19].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[19].children[0] = 18;
|
||||||
|
/* 0:35 */waypoints[19].children[1] = 20;
|
||||||
|
/* 0:35 */waypoints[20] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[20].origin =(436.097, 2503.9, 242.337);
|
||||||
|
/* 0:35 */waypoints[20].type = "stand";
|
||||||
|
/* 0:35 */waypoints[20].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[20].children[0] = 19;
|
||||||
|
/* 0:35 */waypoints[20].children[1] = 21;
|
||||||
|
/* 0:35 */waypoints[20].children[2] = 23;
|
||||||
|
/* 0:35 */waypoints[21] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[21].origin =(587.116, 1940.12, 151.758);
|
||||||
|
/* 0:35 */waypoints[21].type = "stand";
|
||||||
|
/* 0:35 */waypoints[21].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[21].children[0] = 20;
|
||||||
|
/* 0:35 */waypoints[21].children[1] = 22;
|
||||||
|
/* 0:35 */waypoints[22] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[22].origin =(572.231, 1664.76, 144.832);
|
||||||
|
/* 0:35 */waypoints[22].type = "stand";
|
||||||
|
/* 0:35 */waypoints[22].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[22].children[0] = 21;
|
||||||
|
/* 0:35 */waypoints[22].children[1] = 100;
|
||||||
|
/* 0:35 */waypoints[22].children[2] = 99;
|
||||||
|
/* 0:35 */waypoints[22].children[3] = 101;
|
||||||
|
/* 0:35 */waypoints[23] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[23].origin =(604.389, 2984.22, 231.177);
|
||||||
|
/* 0:35 */waypoints[23].type = "stand";
|
||||||
|
/* 0:35 */waypoints[23].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[23].children[0] = 20;
|
||||||
|
/* 0:35 */waypoints[23].children[1] = 24;
|
||||||
|
/* 0:35 */waypoints[23].children[2] = 29;
|
||||||
|
/* 0:35 */waypoints[24] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[24].origin =(570.426, 3209.61, 224.125);
|
||||||
|
/* 0:35 */waypoints[24].type = "stand";
|
||||||
|
/* 0:35 */waypoints[24].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[24].children[0] = 23;
|
||||||
|
/* 0:35 */waypoints[24].children[1] = 25;
|
||||||
|
/* 0:35 */waypoints[25] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[25].origin =(32.0897, 3206.73, 104.125);
|
||||||
|
/* 0:35 */waypoints[25].type = "stand";
|
||||||
|
/* 0:35 */waypoints[25].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[25].children[0] = 24;
|
||||||
|
/* 0:35 */waypoints[25].children[1] = 26;
|
||||||
|
/* 0:35 */waypoints[26] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[26].origin =(-4.1521, 3020.94, 40.125);
|
||||||
|
/* 0:35 */waypoints[26].type = "stand";
|
||||||
|
/* 0:35 */waypoints[26].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[26].children[0] = 25;
|
||||||
|
/* 0:35 */waypoints[26].children[1] = 27;
|
||||||
|
/* 0:35 */waypoints[27] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[27].origin =(-442.777, 2861.53, -23.875);
|
||||||
|
/* 0:35 */waypoints[27].type = "stand";
|
||||||
|
/* 0:35 */waypoints[27].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[27].children[0] = 26;
|
||||||
|
/* 0:35 */waypoints[27].children[1] = 28;
|
||||||
|
/* 0:35 */waypoints[28] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[28].origin =(-486.986, 2558.32, -55.875);
|
||||||
|
/* 0:35 */waypoints[28].type = "stand";
|
||||||
|
/* 0:35 */waypoints[28].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[28].children[0] = 27;
|
||||||
|
/* 0:35 */waypoints[28].children[1] = 15;
|
||||||
|
/* 0:35 */waypoints[29] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[29].origin =(919.876, 3203.52, 243.923);
|
||||||
|
/* 0:35 */waypoints[29].type = "stand";
|
||||||
|
/* 0:35 */waypoints[29].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[29].children[0] = 23;
|
||||||
|
/* 0:35 */waypoints[29].children[1] = 30;
|
||||||
|
/* 0:35 */waypoints[29].children[2] = 38;
|
||||||
|
/* 0:35 */waypoints[30] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[30].origin =(950.717, 3486.24, 236.32);
|
||||||
|
/* 0:35 */waypoints[30].type = "stand";
|
||||||
|
/* 0:35 */waypoints[30].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[30].children[0] = 29;
|
||||||
|
/* 0:35 */waypoints[30].children[1] = 31;
|
||||||
|
/* 0:35 */waypoints[30].children[2] = 43;
|
||||||
|
/* 0:35 */waypoints[31] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[31].origin =(958.611, 3808.82, 256.276);
|
||||||
|
/* 0:35 */waypoints[31].type = "stand";
|
||||||
|
/* 0:35 */waypoints[31].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[31].children[0] = 30;
|
||||||
|
/* 0:35 */waypoints[31].children[1] = 32;
|
||||||
|
/* 0:35 */waypoints[32] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[32].origin =(1478.71, 3996.01, 263.489);
|
||||||
|
/* 0:35 */waypoints[32].type = "stand";
|
||||||
|
/* 0:35 */waypoints[32].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[32].children[0] = 31;
|
||||||
|
/* 0:35 */waypoints[32].children[1] = 33;
|
||||||
|
/* 0:35 */waypoints[33] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[33].origin =(1970.95, 4118.43, 251.691);
|
||||||
|
/* 0:35 */waypoints[33].type = "stand";
|
||||||
|
/* 0:35 */waypoints[33].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[33].children[0] = 32;
|
||||||
|
/* 0:35 */waypoints[33].children[1] = 34;
|
||||||
|
/* 0:35 */waypoints[34] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[34].origin =(2122.99, 3659.42, 215.041);
|
||||||
|
/* 0:35 */waypoints[34].type = "stand";
|
||||||
|
/* 0:35 */waypoints[34].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[34].children[0] = 33;
|
||||||
|
/* 0:35 */waypoints[34].children[1] = 35;
|
||||||
|
/* 0:35 */waypoints[34].children[2] = 42;
|
||||||
|
/* 0:35 */waypoints[34].children[3] = 44;
|
||||||
|
/* 0:35 */waypoints[35] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[35].origin =(2086.8, 3262.31, 250.264);
|
||||||
|
/* 0:35 */waypoints[35].type = "stand";
|
||||||
|
/* 0:35 */waypoints[35].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[35].children[0] = 34;
|
||||||
|
/* 0:35 */waypoints[35].children[1] = 36;
|
||||||
|
/* 0:35 */waypoints[35].children[2] = 41;
|
||||||
|
/* 0:35 */waypoints[36] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[36].origin =(1879.36, 2855.37, 312.356);
|
||||||
|
/* 0:35 */waypoints[36].type = "stand";
|
||||||
|
/* 0:35 */waypoints[36].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[36].children[0] = 35;
|
||||||
|
/* 0:35 */waypoints[36].children[1] = 37;
|
||||||
|
/* 0:35 */waypoints[37] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[37].origin =(1469.65, 2916.41, 264.774);
|
||||||
|
/* 0:35 */waypoints[37].type = "stand";
|
||||||
|
/* 0:35 */waypoints[37].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[37].children[0] = 36;
|
||||||
|
/* 0:35 */waypoints[37].children[1] = 38;
|
||||||
|
/* 0:35 */waypoints[37].children[2] = 41;
|
||||||
|
/* 0:35 */waypoints[38] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[38].origin =(1127.98, 3047.84, 263.683);
|
||||||
|
/* 0:35 */waypoints[38].type = "stand";
|
||||||
|
/* 0:35 */waypoints[38].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[38].children[0] = 37;
|
||||||
|
/* 0:35 */waypoints[38].children[1] = 29;
|
||||||
|
/* 0:35 */waypoints[38].children[2] = 39;
|
||||||
|
/* 0:35 */waypoints[39] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[39].origin =(1300.23, 3305.06, 261.784);
|
||||||
|
/* 0:35 */waypoints[39].type = "stand";
|
||||||
|
/* 0:35 */waypoints[39].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[39].children[0] = 38;
|
||||||
|
/* 0:35 */waypoints[39].children[1] = 40;
|
||||||
|
/* 0:35 */waypoints[39].children[2] = 43;
|
||||||
|
/* 0:35 */waypoints[40] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[40].origin =(1337.66, 3237.1, 261.556);
|
||||||
|
/* 0:35 */waypoints[40].type = "stand";
|
||||||
|
/* 0:35 */waypoints[40].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[40].children[0] = 39;
|
||||||
|
/* 0:35 */waypoints[40].children[1] = 41;
|
||||||
|
/* 0:35 */waypoints[41] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[41].origin =(1644.63, 3240.44, 257.477);
|
||||||
|
/* 0:35 */waypoints[41].type = "stand";
|
||||||
|
/* 0:35 */waypoints[41].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[41].children[0] = 40;
|
||||||
|
/* 0:35 */waypoints[41].children[1] = 37;
|
||||||
|
/* 0:35 */waypoints[41].children[2] = 35;
|
||||||
|
/* 0:35 */waypoints[41].children[3] = 42;
|
||||||
|
/* 0:35 */waypoints[42] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[42].origin =(1679.16, 3605.4, 225.505);
|
||||||
|
/* 0:35 */waypoints[42].type = "stand";
|
||||||
|
/* 0:35 */waypoints[42].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[42].children[0] = 41;
|
||||||
|
/* 0:35 */waypoints[42].children[1] = 34;
|
||||||
|
/* 0:35 */waypoints[42].children[2] = 43;
|
||||||
|
/* 0:35 */waypoints[43] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[43].origin =(1276.88, 3615.43, 239.576);
|
||||||
|
/* 0:35 */waypoints[43].type = "stand";
|
||||||
|
/* 0:35 */waypoints[43].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[43].children[0] = 42;
|
||||||
|
/* 0:35 */waypoints[43].children[1] = 39;
|
||||||
|
/* 0:35 */waypoints[43].children[2] = 30;
|
||||||
|
/* 0:35 */waypoints[44] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[44].origin =(2709.84, 3565.7, 132.928);
|
||||||
|
/* 0:35 */waypoints[44].type = "stand";
|
||||||
|
/* 0:35 */waypoints[44].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[44].children[0] = 34;
|
||||||
|
/* 0:35 */waypoints[44].children[1] = 45;
|
||||||
|
/* 0:35 */waypoints[44].children[2] = 46;
|
||||||
|
/* 0:35 */waypoints[45] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[45].origin =(2864.6, 3056.73, 118.861);
|
||||||
|
/* 0:35 */waypoints[45].type = "stand";
|
||||||
|
/* 0:35 */waypoints[45].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[45].children[0] = 44;
|
||||||
|
/* 0:35 */waypoints[45].children[1] = 53;
|
||||||
|
/* 0:35 */waypoints[46] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[46].origin =(3280.33, 3599.42, 122.996);
|
||||||
|
/* 0:35 */waypoints[46].type = "stand";
|
||||||
|
/* 0:35 */waypoints[46].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[46].children[0] = 44;
|
||||||
|
/* 0:35 */waypoints[46].children[1] = 47;
|
||||||
|
/* 0:35 */waypoints[47] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[47].origin =(3494.3, 3196.57, 135.081);
|
||||||
|
/* 0:35 */waypoints[47].type = "stand";
|
||||||
|
/* 0:35 */waypoints[47].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[47].children[0] = 46;
|
||||||
|
/* 0:35 */waypoints[47].children[1] = 48;
|
||||||
|
/* 0:35 */waypoints[48] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[48].origin =(3494.53, 2819.69, 128.125);
|
||||||
|
/* 0:35 */waypoints[48].type = "stand";
|
||||||
|
/* 0:35 */waypoints[48].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[48].children[0] = 47;
|
||||||
|
/* 0:35 */waypoints[48].children[1] = 49;
|
||||||
|
/* 0:35 */waypoints[48].children[2] = 53;
|
||||||
|
/* 0:35 */waypoints[49] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[49].origin =(3935.81, 2871.96, 128.125);
|
||||||
|
/* 0:35 */waypoints[49].type = "stand";
|
||||||
|
/* 0:35 */waypoints[49].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[49].children[0] = 48;
|
||||||
|
/* 0:35 */waypoints[49].children[1] = 50;
|
||||||
|
/* 0:35 */waypoints[50] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[50].origin =(3971.5, 2543.27, -13.4301);
|
||||||
|
/* 0:35 */waypoints[50].type = "stand";
|
||||||
|
/* 0:35 */waypoints[50].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[50].children[0] = 49;
|
||||||
|
/* 0:35 */waypoints[50].children[1] = 51;
|
||||||
|
/* 0:35 */waypoints[51] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[51].origin =(3408.04, 2471.49, -39.6766);
|
||||||
|
/* 0:35 */waypoints[51].type = "stand";
|
||||||
|
/* 0:35 */waypoints[51].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[51].children[0] = 50;
|
||||||
|
/* 0:35 */waypoints[51].children[1] = 52;
|
||||||
|
/* 0:35 */waypoints[51].children[2] = 54;
|
||||||
|
/* 0:35 */waypoints[51].children[3] = 105;
|
||||||
|
/* 0:35 */waypoints[52] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[52].origin =(2828.55, 2464.86, 3.20407);
|
||||||
|
/* 0:35 */waypoints[52].type = "stand";
|
||||||
|
/* 0:35 */waypoints[52].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[52].children[0] = 51;
|
||||||
|
/* 0:35 */waypoints[52].children[1] = 53;
|
||||||
|
/* 0:35 */waypoints[52].children[2] = 94;
|
||||||
|
/* 0:35 */waypoints[52].children[3] = 95;
|
||||||
|
/* 0:35 */waypoints[53] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[53].origin =(2964.4, 2832.55, 126.619);
|
||||||
|
/* 0:35 */waypoints[53].type = "stand";
|
||||||
|
/* 0:35 */waypoints[53].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[53].children[0] = 52;
|
||||||
|
/* 0:35 */waypoints[53].children[1] = 45;
|
||||||
|
/* 0:35 */waypoints[53].children[2] = 48;
|
||||||
|
/* 0:35 */waypoints[54] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[54].origin =(3482.35, 1921.72, 42.5354);
|
||||||
|
/* 0:35 */waypoints[54].type = "stand";
|
||||||
|
/* 0:35 */waypoints[54].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[54].children[0] = 51;
|
||||||
|
/* 0:35 */waypoints[54].children[1] = 55;
|
||||||
|
/* 0:35 */waypoints[55] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[55].origin =(3388.35, 1599.79, 50.0094);
|
||||||
|
/* 0:35 */waypoints[55].type = "stand";
|
||||||
|
/* 0:35 */waypoints[55].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[55].children[0] = 54;
|
||||||
|
/* 0:35 */waypoints[55].children[1] = 56;
|
||||||
|
/* 0:35 */waypoints[55].children[2] = 57;
|
||||||
|
/* 0:35 */waypoints[55].children[3] = 68;
|
||||||
|
/* 0:35 */waypoints[56] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[56].origin =(3611.34, 1513.02, 82.1061);
|
||||||
|
/* 0:35 */waypoints[56].type = "stand";
|
||||||
|
/* 0:35 */waypoints[56].childCount = 1;
|
||||||
|
/* 0:35 */waypoints[56].children[0] = 55;
|
||||||
|
/* 0:35 */waypoints[57] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[57].origin =(2949.5, 1203.68, 64.0708);
|
||||||
|
/* 0:35 */waypoints[57].type = "stand";
|
||||||
|
/* 0:35 */waypoints[57].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[57].children[0] = 55;
|
||||||
|
/* 0:35 */waypoints[57].children[1] = 58;
|
||||||
|
/* 0:35 */waypoints[57].children[2] = 59;
|
||||||
|
/* 0:35 */waypoints[57].children[3] = 74;
|
||||||
|
/* 0:35 */waypoints[58] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[58].origin =(2494.24, 1271.95, 25.4285);
|
||||||
|
/* 0:35 */waypoints[58].type = "stand";
|
||||||
|
/* 0:35 */waypoints[58].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[58].children[0] = 57;
|
||||||
|
/* 0:35 */waypoints[58].children[1] = 88;
|
||||||
|
/* 0:35 */waypoints[58].children[2] = 89;
|
||||||
|
/* 0:35 */waypoints[58].children[3] = 93;
|
||||||
|
/* 0:35 */waypoints[59] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[59].origin =(3060.2, 834.908, 74.0837);
|
||||||
|
/* 0:35 */waypoints[59].type = "stand";
|
||||||
|
/* 0:35 */waypoints[59].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[59].children[0] = 57;
|
||||||
|
/* 0:35 */waypoints[59].children[1] = 60;
|
||||||
|
/* 0:35 */waypoints[59].children[2] = 61;
|
||||||
|
/* 0:35 */waypoints[60] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[60].origin =(2708.69, 824.855, 200.125);
|
||||||
|
/* 0:35 */waypoints[60].type = "stand";
|
||||||
|
/* 0:35 */waypoints[60].childCount = 1;
|
||||||
|
/* 0:35 */waypoints[60].children[0] = 59;
|
||||||
|
/* 0:35 */waypoints[61] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[61].origin =(3112.49, 425.318, 79.9015);
|
||||||
|
/* 0:35 */waypoints[61].type = "stand";
|
||||||
|
/* 0:35 */waypoints[61].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[61].children[0] = 59;
|
||||||
|
/* 0:35 */waypoints[61].children[1] = 62;
|
||||||
|
/* 0:35 */waypoints[61].children[2] = 65;
|
||||||
|
/* 0:35 */waypoints[62] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[62].origin =(3038.95, 110.55, 129.032);
|
||||||
|
/* 0:35 */waypoints[62].type = "stand";
|
||||||
|
/* 0:35 */waypoints[62].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[62].children[0] = 61;
|
||||||
|
/* 0:35 */waypoints[62].children[1] = 63;
|
||||||
|
/* 0:35 */waypoints[62].children[2] = 75;
|
||||||
|
/* 0:35 */waypoints[63] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[63].origin =(3362.68, -7.56945, 142.391);
|
||||||
|
/* 0:35 */waypoints[63].type = "stand";
|
||||||
|
/* 0:35 */waypoints[63].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[63].children[0] = 62;
|
||||||
|
/* 0:35 */waypoints[63].children[1] = 64;
|
||||||
|
/* 0:35 */waypoints[63].children[2] = 65;
|
||||||
|
/* 0:35 */waypoints[64] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[64].origin =(3365.63, 266.065, 144.125);
|
||||||
|
/* 0:35 */waypoints[64].type = "stand";
|
||||||
|
/* 0:35 */waypoints[64].childCount = 1;
|
||||||
|
/* 0:35 */waypoints[64].children[0] = 63;
|
||||||
|
/* 0:35 */waypoints[65] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[65].origin =(3637.05, 395.554, 76.6413);
|
||||||
|
/* 0:35 */waypoints[65].type = "stand";
|
||||||
|
/* 0:35 */waypoints[65].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[65].children[0] = 63;
|
||||||
|
/* 0:35 */waypoints[65].children[1] = 61;
|
||||||
|
/* 0:35 */waypoints[65].children[2] = 66;
|
||||||
|
/* 0:35 */waypoints[65].children[3] = 72;
|
||||||
|
/* 0:35 */waypoints[66] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[66].origin =(3671.49, 837.357, 78.2406);
|
||||||
|
/* 0:35 */waypoints[66].type = "stand";
|
||||||
|
/* 0:35 */waypoints[66].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[66].children[0] = 65;
|
||||||
|
/* 0:35 */waypoints[66].children[1] = 67;
|
||||||
|
/* 0:35 */waypoints[66].children[2] = 73;
|
||||||
|
/* 0:35 */waypoints[67] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[67].origin =(3647.49, 889.661, 81.3503);
|
||||||
|
/* 0:35 */waypoints[67].type = "stand";
|
||||||
|
/* 0:35 */waypoints[67].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[67].children[0] = 66;
|
||||||
|
/* 0:35 */waypoints[67].children[1] = 68;
|
||||||
|
/* 0:35 */waypoints[68] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[68].origin =(3565.97, 1248.22, 93.4757);
|
||||||
|
/* 0:35 */waypoints[68].type = "stand";
|
||||||
|
/* 0:35 */waypoints[68].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[68].children[0] = 67;
|
||||||
|
/* 0:35 */waypoints[68].children[1] = 55;
|
||||||
|
/* 0:35 */waypoints[68].children[2] = 69;
|
||||||
|
/* 0:35 */waypoints[68].children[3] = 74;
|
||||||
|
/* 0:35 */waypoints[69] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[69].origin =(3935.86, 1144.14, 119.745);
|
||||||
|
/* 0:35 */waypoints[69].type = "stand";
|
||||||
|
/* 0:35 */waypoints[69].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[69].children[0] = 68;
|
||||||
|
/* 0:35 */waypoints[69].children[1] = 70;
|
||||||
|
/* 0:35 */waypoints[70] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[70].origin =(3931.06, 956.327, 87.653);
|
||||||
|
/* 0:35 */waypoints[70].type = "stand";
|
||||||
|
/* 0:35 */waypoints[70].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[70].children[0] = 69;
|
||||||
|
/* 0:35 */waypoints[70].children[1] = 71;
|
||||||
|
/* 0:35 */waypoints[71] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[71].origin =(4364.57, 836.858, 72.2672);
|
||||||
|
/* 0:35 */waypoints[71].type = "stand";
|
||||||
|
/* 0:35 */waypoints[71].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[71].children[0] = 70;
|
||||||
|
/* 0:35 */waypoints[71].children[1] = 72;
|
||||||
|
/* 0:35 */waypoints[72] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[72].origin =(4210.86, 328.576, 76.3363);
|
||||||
|
/* 0:35 */waypoints[72].type = "stand";
|
||||||
|
/* 0:35 */waypoints[72].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[72].children[0] = 71;
|
||||||
|
/* 0:35 */waypoints[72].children[1] = 65;
|
||||||
|
/* 0:35 */waypoints[73] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[73].origin =(4020.58, 641.397, 75.3822);
|
||||||
|
/* 0:35 */waypoints[73].type = "stand";
|
||||||
|
/* 0:35 */waypoints[73].childCount = 1;
|
||||||
|
/* 0:35 */waypoints[73].children[0] = 66;
|
||||||
|
/* 0:35 */waypoints[74] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[74].origin =(3349.27, 896.869, 66.7584);
|
||||||
|
/* 0:35 */waypoints[74].type = "stand";
|
||||||
|
/* 0:35 */waypoints[74].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[74].children[0] = 57;
|
||||||
|
/* 0:35 */waypoints[74].children[1] = 68;
|
||||||
|
/* 0:35 */waypoints[75] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[75].origin =(2597.3, -12.0568, 118.644);
|
||||||
|
/* 0:35 */waypoints[75].type = "stand";
|
||||||
|
/* 0:35 */waypoints[75].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[75].children[0] = 62;
|
||||||
|
/* 0:35 */waypoints[75].children[1] = 76;
|
||||||
|
/* 0:35 */waypoints[76] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[76].origin =(2091.11, -42.0647, 136.125);
|
||||||
|
/* 0:35 */waypoints[76].type = "stand";
|
||||||
|
/* 0:35 */waypoints[76].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[76].children[0] = 75;
|
||||||
|
/* 0:35 */waypoints[76].children[1] = 77;
|
||||||
|
/* 0:35 */waypoints[77] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[77].origin =(1735.99, -90.4978, 136.125);
|
||||||
|
/* 0:35 */waypoints[77].type = "stand";
|
||||||
|
/* 0:35 */waypoints[77].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[77].children[0] = 76;
|
||||||
|
/* 0:35 */waypoints[77].children[1] = 78;
|
||||||
|
/* 0:35 */waypoints[78] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[78].origin =(1219.72, -292.936, 39.3015);
|
||||||
|
/* 0:35 */waypoints[78].type = "stand";
|
||||||
|
/* 0:35 */waypoints[78].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[78].children[0] = 77;
|
||||||
|
/* 0:35 */waypoints[78].children[1] = 79;
|
||||||
|
/* 0:35 */waypoints[78].children[2] = 81;
|
||||||
|
/* 0:35 */waypoints[79] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[79].origin =(1116.2, 39.6321, -20.555);
|
||||||
|
/* 0:35 */waypoints[79].type = "stand";
|
||||||
|
/* 0:35 */waypoints[79].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[79].children[0] = 78;
|
||||||
|
/* 0:35 */waypoints[79].children[1] = 80;
|
||||||
|
/* 0:35 */waypoints[79].children[2] = 82;
|
||||||
|
/* 0:35 */waypoints[79].children[3] = 83;
|
||||||
|
/* 0:35 */waypoints[80] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[80].origin =(726.623, -38.2303, 22.2781);
|
||||||
|
/* 0:35 */waypoints[80].type = "stand";
|
||||||
|
/* 0:35 */waypoints[80].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[80].children[0] = 79;
|
||||||
|
/* 0:35 */waypoints[80].children[1] = 4;
|
||||||
|
/* 0:35 */waypoints[80].children[2] = 81;
|
||||||
|
/* 0:35 */waypoints[81] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[81].origin =(669.221, -432.278, 21.5103);
|
||||||
|
/* 0:35 */waypoints[81].type = "stand";
|
||||||
|
/* 0:35 */waypoints[81].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[81].children[0] = 80;
|
||||||
|
/* 0:35 */waypoints[81].children[1] = 2;
|
||||||
|
/* 0:35 */waypoints[81].children[2] = 78;
|
||||||
|
/* 0:35 */waypoints[82] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[82].origin =(1629.67, 227.23, -20.1615);
|
||||||
|
/* 0:35 */waypoints[82].type = "stand";
|
||||||
|
/* 0:35 */waypoints[82].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[82].children[0] = 79;
|
||||||
|
/* 0:35 */waypoints[82].children[1] = 86;
|
||||||
|
/* 0:35 */waypoints[82].children[2] = 87;
|
||||||
|
/* 0:35 */waypoints[83] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[83].origin =(1390.18, 518.06, 18.268);
|
||||||
|
/* 0:35 */waypoints[83].type = "stand";
|
||||||
|
/* 0:35 */waypoints[83].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[83].children[0] = 79;
|
||||||
|
/* 0:35 */waypoints[83].children[1] = 84;
|
||||||
|
/* 0:35 */waypoints[84] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[84].origin =(1493.13, 785.232, 42.7987);
|
||||||
|
/* 0:35 */waypoints[84].type = "stand";
|
||||||
|
/* 0:35 */waypoints[84].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[84].children[0] = 83;
|
||||||
|
/* 0:35 */waypoints[84].children[1] = 85;
|
||||||
|
/* 0:35 */waypoints[84].children[2] = 103;
|
||||||
|
/* 0:35 */waypoints[84].children[3] = 104;
|
||||||
|
/* 0:35 */waypoints[85] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[85].origin =(1705.42, 716.213, 44.7554);
|
||||||
|
/* 0:35 */waypoints[85].type = "stand";
|
||||||
|
/* 0:35 */waypoints[85].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[85].children[0] = 84;
|
||||||
|
/* 0:35 */waypoints[85].children[1] = 86;
|
||||||
|
/* 0:35 */waypoints[85].children[2] = 90;
|
||||||
|
/* 0:35 */waypoints[85].children[3] = 106;
|
||||||
|
/* 0:35 */waypoints[86] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[86].origin =(2018.5, 585.112, -4.0642);
|
||||||
|
/* 0:35 */waypoints[86].type = "stand";
|
||||||
|
/* 0:35 */waypoints[86].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[86].children[0] = 85;
|
||||||
|
/* 0:35 */waypoints[86].children[1] = 82;
|
||||||
|
/* 0:35 */waypoints[86].children[2] = 89;
|
||||||
|
/* 0:35 */waypoints[86].children[3] = 87;
|
||||||
|
/* 0:35 */waypoints[87] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[87].origin =(2195.53, 375.576, 43.8192);
|
||||||
|
/* 0:35 */waypoints[87].type = "stand";
|
||||||
|
/* 0:35 */waypoints[87].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[87].children[0] = 82;
|
||||||
|
/* 0:35 */waypoints[87].children[1] = 88;
|
||||||
|
/* 0:35 */waypoints[87].children[2] = 86;
|
||||||
|
/* 0:35 */waypoints[88] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[88].origin =(2489.31, 702.604, 79.7997);
|
||||||
|
/* 0:35 */waypoints[88].type = "stand";
|
||||||
|
/* 0:35 */waypoints[88].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[88].children[0] = 87;
|
||||||
|
/* 0:35 */waypoints[88].children[1] = 58;
|
||||||
|
/* 0:35 */waypoints[89] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[89].origin =(2212.21, 859.228, 25.5868);
|
||||||
|
/* 0:35 */waypoints[89].type = "stand";
|
||||||
|
/* 0:35 */waypoints[89].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[89].children[0] = 58;
|
||||||
|
/* 0:35 */waypoints[89].children[1] = 86;
|
||||||
|
/* 0:35 */waypoints[89].children[2] = 90;
|
||||||
|
/* 0:35 */waypoints[90] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[90].origin =(1846.05, 1042.09, 48.0116);
|
||||||
|
/* 0:35 */waypoints[90].type = "stand";
|
||||||
|
/* 0:35 */waypoints[90].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[90].children[0] = 89;
|
||||||
|
/* 0:35 */waypoints[90].children[1] = 91;
|
||||||
|
/* 0:35 */waypoints[90].children[2] = 103;
|
||||||
|
/* 0:35 */waypoints[90].children[3] = 85;
|
||||||
|
/* 0:35 */waypoints[91] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[91].origin =(2041.24, 1575.02, -11.8253);
|
||||||
|
/* 0:35 */waypoints[91].type = "stand";
|
||||||
|
/* 0:35 */waypoints[91].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[91].children[0] = 90;
|
||||||
|
/* 0:35 */waypoints[91].children[1] = 92;
|
||||||
|
/* 0:35 */waypoints[91].children[2] = 93;
|
||||||
|
/* 0:35 */waypoints[91].children[3] = 97;
|
||||||
|
/* 0:35 */waypoints[92] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[92].origin =(2005.11, 1909.44, -12.9515);
|
||||||
|
/* 0:35 */waypoints[92].type = "stand";
|
||||||
|
/* 0:35 */waypoints[92].childCount = 1;
|
||||||
|
/* 0:35 */waypoints[92].children[0] = 91;
|
||||||
|
/* 0:35 */waypoints[93] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[93].origin =(2382.4, 1670.16, 19.921);
|
||||||
|
/* 0:35 */waypoints[93].type = "stand";
|
||||||
|
/* 0:35 */waypoints[93].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[93].children[0] = 91;
|
||||||
|
/* 0:35 */waypoints[93].children[1] = 58;
|
||||||
|
/* 0:35 */waypoints[93].children[2] = 94;
|
||||||
|
/* 0:35 */waypoints[94] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[94].origin =(2551.85, 2186.3, 0.124998);
|
||||||
|
/* 0:35 */waypoints[94].type = "stand";
|
||||||
|
/* 0:35 */waypoints[94].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[94].children[0] = 93;
|
||||||
|
/* 0:35 */waypoints[94].children[1] = 52;
|
||||||
|
/* 0:35 */waypoints[95] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[95].origin =(2341.71, 2494.09, -4.98104);
|
||||||
|
/* 0:35 */waypoints[95].type = "stand";
|
||||||
|
/* 0:35 */waypoints[95].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[95].children[0] = 52;
|
||||||
|
/* 0:35 */waypoints[95].children[1] = 96;
|
||||||
|
/* 0:35 */waypoints[96] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[96].origin =(1856.14, 2360.8, 0.354582);
|
||||||
|
/* 0:35 */waypoints[96].type = "stand";
|
||||||
|
/* 0:35 */waypoints[96].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[96].children[0] = 95;
|
||||||
|
/* 0:35 */waypoints[96].children[1] = 97;
|
||||||
|
/* 0:35 */waypoints[97] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[97].origin =(1705.4, 1796.35, -5.87469);
|
||||||
|
/* 0:35 */waypoints[97].type = "stand";
|
||||||
|
/* 0:35 */waypoints[97].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[97].children[0] = 96;
|
||||||
|
/* 0:35 */waypoints[97].children[1] = 91;
|
||||||
|
/* 0:35 */waypoints[97].children[2] = 98;
|
||||||
|
/* 0:35 */waypoints[98] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[98].origin =(1305.32, 1771.3, 74.6347);
|
||||||
|
/* 0:35 */waypoints[98].type = "stand";
|
||||||
|
/* 0:35 */waypoints[98].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[98].children[0] = 97;
|
||||||
|
/* 0:35 */waypoints[98].children[1] = 99;
|
||||||
|
/* 0:35 */waypoints[99] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[99].origin =(1017.23, 1473.8, 116.832);
|
||||||
|
/* 0:35 */waypoints[99].type = "stand";
|
||||||
|
/* 0:35 */waypoints[99].childCount = 5;
|
||||||
|
/* 0:35 */waypoints[99].children[0] = 98;
|
||||||
|
/* 0:35 */waypoints[99].children[1] = 100;
|
||||||
|
/* 0:35 */waypoints[99].children[2] = 22;
|
||||||
|
/* 0:35 */waypoints[99].children[3] = 103;
|
||||||
|
/* 0:35 */waypoints[99].children[4] = 104;
|
||||||
|
/* 0:35 */waypoints[100] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[100].origin =(498.107, 1331.73, 136.327);
|
||||||
|
/* 0:35 */waypoints[100].type = "stand";
|
||||||
|
/* 0:35 */waypoints[100].childCount = 4;
|
||||||
|
/* 0:35 */waypoints[100].children[0] = 99;
|
||||||
|
/* 0:35 */waypoints[100].children[1] = 22;
|
||||||
|
/* 0:35 */waypoints[100].children[2] = 101;
|
||||||
|
/* 0:35 */waypoints[100].children[3] = 102;
|
||||||
|
/* 0:35 */waypoints[101] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[101].origin =(246.105, 1603.02, 179.242);
|
||||||
|
/* 0:35 */waypoints[101].type = "stand";
|
||||||
|
/* 0:35 */waypoints[101].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[101].children[0] = 22;
|
||||||
|
/* 0:35 */waypoints[101].children[1] = 100;
|
||||||
|
/* 0:35 */waypoints[101].children[2] = 16;
|
||||||
|
/* 0:35 */waypoints[102] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[102].origin =(124.631, 1263.14, 167.17);
|
||||||
|
/* 0:35 */waypoints[102].type = "stand";
|
||||||
|
/* 0:35 */waypoints[102].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[102].children[0] = 100;
|
||||||
|
/* 0:35 */waypoints[102].children[1] = 16;
|
||||||
|
/* 0:35 */waypoints[103] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[103].origin =(1406.26, 1182.69, 56.4975);
|
||||||
|
/* 0:35 */waypoints[103].type = "stand";
|
||||||
|
/* 0:35 */waypoints[103].childCount = 3;
|
||||||
|
/* 0:35 */waypoints[103].children[0] = 99;
|
||||||
|
/* 0:35 */waypoints[103].children[1] = 90;
|
||||||
|
/* 0:35 */waypoints[103].children[2] = 84;
|
||||||
|
/* 0:35 */waypoints[104] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[104].origin =(1044.19, 914.706, 167.246);
|
||||||
|
/* 0:35 */waypoints[104].type = "stand";
|
||||||
|
/* 0:35 */waypoints[104].childCount = 2;
|
||||||
|
/* 0:35 */waypoints[104].children[0] = 84;
|
||||||
|
/* 0:35 */waypoints[104].children[1] = 99;
|
||||||
|
/* 0:35 */waypoints[105] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[105].origin =(3494.61, 2460.9, -40.2694);
|
||||||
|
/* 0:35 */waypoints[105].type = "stand";
|
||||||
|
/* 0:35 */waypoints[105].childCount = 1;
|
||||||
|
/* 0:35 */waypoints[105].children[0] = 51;
|
||||||
|
/* 0:35 */waypoints[106] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[106].origin =(1718.07, 835.342, 48.5254);
|
||||||
|
/* 0:35 */waypoints[106].type = "stand";
|
||||||
|
/* 0:35 */waypoints[106].childCount = 1;
|
||||||
|
/* 0:35 */waypoints[106].children[0] = 85;
|
||||||
|
/* 0:35 */waypoints[107] = spawnstruct();
|
||||||
|
/* 0:35 */waypoints[107].origin =(-491.684, 1455.72, 188.24);
|
||||||
|
/* 0:35 */waypoints[107].type = "stand";
|
||||||
|
/* 0:35 */waypoints[107].childCount = 1;
|
||||||
|
/* 0:35 */waypoints[107].children[0] = 13;
|
||||||
|
/* 0:35 */return waypoints;
|
||||||
|
|
||||||
|
}
|
4
mods/bots/maps/mp/bots/waypoints/afghancaves.gsc
Normal file
4
mods/bots/maps/mp/bots/waypoints/afghancaves.gsc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
AfghanCaves()
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
393
mods/bots/maps/mp/bots/waypoints/afghanchase.gsc
Normal file
393
mods/bots/maps/mp/bots/waypoints/afghanchase.gsc
Normal file
@ -0,0 +1,393 @@
|
|||||||
|
AfghanChase()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
/* 5:47 */waypoints[0] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[0].origin =(28688.1, 34576.6, -9914.6);
|
||||||
|
/* 5:47 */waypoints[0].type = "stand";
|
||||||
|
/* 5:47 */waypoints[0].childCount = 1;
|
||||||
|
/* 5:47 */waypoints[0].children[0] = 1;
|
||||||
|
/* 5:47 */waypoints[1] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[1].origin =(28695.2, 34718.3, -9917.26);
|
||||||
|
/* 5:47 */waypoints[1].type = "stand";
|
||||||
|
/* 5:47 */waypoints[1].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[1].children[0] = 0;
|
||||||
|
/* 5:47 */waypoints[1].children[1] = 2;
|
||||||
|
/* 5:47 */waypoints[2] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[2].origin =(28961.2, 34701.8, -9923.01);
|
||||||
|
/* 5:47 */waypoints[2].type = "stand";
|
||||||
|
/* 5:47 */waypoints[2].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[2].children[0] = 1;
|
||||||
|
/* 5:47 */waypoints[2].children[1] = 3;
|
||||||
|
/* 5:47 */waypoints[2].children[2] = 50;
|
||||||
|
/* 5:47 */waypoints[3] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[3].origin =(28967, 34831.6, -9918.5);
|
||||||
|
/* 5:47 */waypoints[3].type = "stand";
|
||||||
|
/* 5:47 */waypoints[3].childCount = 4;
|
||||||
|
/* 5:47 */waypoints[3].children[0] = 2;
|
||||||
|
/* 5:47 */waypoints[3].children[1] = 4;
|
||||||
|
/* 5:47 */waypoints[3].children[2] = 52;
|
||||||
|
/* 5:47 */waypoints[3].children[3] = 53;
|
||||||
|
/* 5:47 */waypoints[4] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[4].origin =(28578.1, 34851.3, -9935.68);
|
||||||
|
/* 5:47 */waypoints[4].type = "stand";
|
||||||
|
/* 5:47 */waypoints[4].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[4].children[0] = 3;
|
||||||
|
/* 5:47 */waypoints[4].children[1] = 5;
|
||||||
|
/* 5:47 */waypoints[4].children[2] = 6;
|
||||||
|
/* 5:47 */waypoints[5] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[5].origin =(28598.6, 34696.1, -9924.95);
|
||||||
|
/* 5:47 */waypoints[5].type = "stand";
|
||||||
|
/* 5:47 */waypoints[5].childCount = 1;
|
||||||
|
/* 5:47 */waypoints[5].children[0] = 4;
|
||||||
|
/* 5:47 */waypoints[6] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[6].origin =(28556.8, 35119.1, -9928.78);
|
||||||
|
/* 5:47 */waypoints[6].type = "stand";
|
||||||
|
/* 5:47 */waypoints[6].childCount = 4;
|
||||||
|
/* 5:47 */waypoints[6].children[0] = 4;
|
||||||
|
/* 5:47 */waypoints[6].children[1] = 7;
|
||||||
|
/* 5:47 */waypoints[6].children[2] = 51;
|
||||||
|
/* 5:47 */waypoints[6].children[3] = 52;
|
||||||
|
/* 5:47 */waypoints[7] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[7].origin =(28358.2, 35097.5, -9943.66);
|
||||||
|
/* 5:47 */waypoints[7].type = "stand";
|
||||||
|
/* 5:47 */waypoints[7].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[7].children[0] = 6;
|
||||||
|
/* 5:47 */waypoints[7].children[1] = 8;
|
||||||
|
/* 5:47 */waypoints[8] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[8].origin =(28368.6, 35325.7, -9931.21);
|
||||||
|
/* 5:47 */waypoints[8].type = "stand";
|
||||||
|
/* 5:47 */waypoints[8].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[8].children[0] = 7;
|
||||||
|
/* 5:47 */waypoints[8].children[1] = 31;
|
||||||
|
/* 5:47 */waypoints[8].children[2] = 35;
|
||||||
|
/* 5:47 */waypoints[9] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[9].origin =(27955.1, 35330, -9923.89);
|
||||||
|
/* 5:47 */waypoints[9].type = "stand";
|
||||||
|
/* 5:47 */waypoints[9].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[9].children[0] = 10;
|
||||||
|
/* 5:47 */waypoints[9].children[1] = 29;
|
||||||
|
/* 5:47 */waypoints[9].children[2] = 31;
|
||||||
|
/* 5:47 */waypoints[10] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[10].origin =(27984.2, 35188.5, -9937.82);
|
||||||
|
/* 5:47 */waypoints[10].type = "stand";
|
||||||
|
/* 5:47 */waypoints[10].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[10].children[0] = 9;
|
||||||
|
/* 5:47 */waypoints[10].children[1] = 11;
|
||||||
|
/* 5:47 */waypoints[11] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[11].origin =(27809.5, 35137.4, -9939.57);
|
||||||
|
/* 5:47 */waypoints[11].type = "stand";
|
||||||
|
/* 5:47 */waypoints[11].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[11].children[0] = 10;
|
||||||
|
/* 5:47 */waypoints[11].children[1] = 12;
|
||||||
|
/* 5:47 */waypoints[11].children[2] = 21;
|
||||||
|
/* 5:47 */waypoints[12] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[12].origin =(27814.2, 34995.4, -9945.64);
|
||||||
|
/* 5:47 */waypoints[12].type = "stand";
|
||||||
|
/* 5:47 */waypoints[12].childCount = 4;
|
||||||
|
/* 5:47 */waypoints[12].children[0] = 11;
|
||||||
|
/* 5:47 */waypoints[12].children[1] = 17;
|
||||||
|
/* 5:47 */waypoints[12].children[2] = 18;
|
||||||
|
/* 5:47 */waypoints[12].children[3] = 20;
|
||||||
|
/* 5:47 */waypoints[13] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[13].origin =(28259.9, 34972.9, -9944.96);
|
||||||
|
/* 5:47 */waypoints[13].type = "stand";
|
||||||
|
/* 5:47 */waypoints[13].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[13].children[0] = 14;
|
||||||
|
/* 5:47 */waypoints[13].children[1] = 17;
|
||||||
|
/* 5:47 */waypoints[14] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[14].origin =(28300.5, 34921.6, -9944.88);
|
||||||
|
/* 5:47 */waypoints[14].type = "stand";
|
||||||
|
/* 5:47 */waypoints[14].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[14].children[0] = 13;
|
||||||
|
/* 5:47 */waypoints[14].children[1] = 15;
|
||||||
|
/* 5:47 */waypoints[15] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[15].origin =(28323, 34784.7, -9946.41);
|
||||||
|
/* 5:47 */waypoints[15].type = "stand";
|
||||||
|
/* 5:47 */waypoints[15].childCount = 1;
|
||||||
|
/* 5:47 */waypoints[15].children[0] = 14;
|
||||||
|
/* 5:47 */waypoints[16] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[16].origin =(28109.9, 34726.5, -9938.84);
|
||||||
|
/* 5:47 */waypoints[16].type = "stand";
|
||||||
|
/* 5:47 */waypoints[16].childCount = 1;
|
||||||
|
/* 5:47 */waypoints[16].children[0] = 17;
|
||||||
|
/* 5:47 */waypoints[17] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[17].origin =(28035.8, 34963.6, -9952.01);
|
||||||
|
/* 5:47 */waypoints[17].type = "stand";
|
||||||
|
/* 5:47 */waypoints[17].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[17].children[0] = 16;
|
||||||
|
/* 5:47 */waypoints[17].children[1] = 13;
|
||||||
|
/* 5:47 */waypoints[17].children[2] = 12;
|
||||||
|
/* 5:47 */waypoints[18] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[18].origin =(27820.2, 34727.1, -9943.96);
|
||||||
|
/* 5:47 */waypoints[18].type = "stand";
|
||||||
|
/* 5:47 */waypoints[18].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[18].children[0] = 12;
|
||||||
|
/* 5:47 */waypoints[18].children[1] = 19;
|
||||||
|
/* 5:47 */waypoints[19] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[19].origin =(27532.4, 34674, -9937.44);
|
||||||
|
/* 5:47 */waypoints[19].type = "stand";
|
||||||
|
/* 5:47 */waypoints[19].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[19].children[0] = 18;
|
||||||
|
/* 5:47 */waypoints[19].children[1] = 20;
|
||||||
|
/* 5:47 */waypoints[20] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[20].origin =(27545.5, 35003.2, -9935.92);
|
||||||
|
/* 5:47 */waypoints[20].type = "stand";
|
||||||
|
/* 5:47 */waypoints[20].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[20].children[0] = 19;
|
||||||
|
/* 5:47 */waypoints[20].children[1] = 12;
|
||||||
|
/* 5:47 */waypoints[20].children[2] = 21;
|
||||||
|
/* 5:47 */waypoints[21] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[21].origin =(27544, 35133.4, -9936.42);
|
||||||
|
/* 5:47 */waypoints[21].type = "stand";
|
||||||
|
/* 5:47 */waypoints[21].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[21].children[0] = 11;
|
||||||
|
/* 5:47 */waypoints[21].children[1] = 20;
|
||||||
|
/* 5:47 */waypoints[21].children[2] = 22;
|
||||||
|
/* 5:47 */waypoints[22] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[22].origin =(27570.5, 35417.5, -9913.08);
|
||||||
|
/* 5:47 */waypoints[22].type = "stand";
|
||||||
|
/* 5:47 */waypoints[22].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[22].children[0] = 21;
|
||||||
|
/* 5:47 */waypoints[22].children[1] = 23;
|
||||||
|
/* 5:47 */waypoints[22].children[2] = 27;
|
||||||
|
/* 5:47 */waypoints[23] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[23].origin =(27509.3, 35684.2, -9912.72);
|
||||||
|
/* 5:47 */waypoints[23].type = "stand";
|
||||||
|
/* 5:47 */waypoints[23].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[23].children[0] = 22;
|
||||||
|
/* 5:47 */waypoints[23].children[1] = 24;
|
||||||
|
/* 5:47 */waypoints[23].children[2] = 26;
|
||||||
|
/* 5:47 */waypoints[24] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[24].origin =(27538.7, 35997.5, -9907.66);
|
||||||
|
/* 5:47 */waypoints[24].type = "stand";
|
||||||
|
/* 5:47 */waypoints[24].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[24].children[0] = 23;
|
||||||
|
/* 5:47 */waypoints[24].children[1] = 25;
|
||||||
|
/* 5:47 */waypoints[25] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[25].origin =(27759.8, 35976.3, -9902.6);
|
||||||
|
/* 5:47 */waypoints[25].type = "stand";
|
||||||
|
/* 5:47 */waypoints[25].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[25].children[0] = 24;
|
||||||
|
/* 5:47 */waypoints[25].children[1] = 26;
|
||||||
|
/* 5:47 */waypoints[25].children[2] = 33;
|
||||||
|
/* 5:47 */waypoints[26] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[26].origin =(27743.9, 35646.3, -9911.71);
|
||||||
|
/* 5:47 */waypoints[26].type = "stand";
|
||||||
|
/* 5:47 */waypoints[26].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[26].children[0] = 25;
|
||||||
|
/* 5:47 */waypoints[26].children[1] = 23;
|
||||||
|
/* 5:47 */waypoints[26].children[2] = 27;
|
||||||
|
/* 5:47 */waypoints[27] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[27].origin =(27715.6, 35404, -9923.6);
|
||||||
|
/* 5:47 */waypoints[27].type = "stand";
|
||||||
|
/* 5:47 */waypoints[27].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[27].children[0] = 26;
|
||||||
|
/* 5:47 */waypoints[27].children[1] = 22;
|
||||||
|
/* 5:47 */waypoints[27].children[2] = 28;
|
||||||
|
/* 5:47 */waypoints[28] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[28].origin =(27862.4, 35397.3, -9921.03);
|
||||||
|
/* 5:47 */waypoints[28].type = "stand";
|
||||||
|
/* 5:47 */waypoints[28].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[28].children[0] = 27;
|
||||||
|
/* 5:47 */waypoints[28].children[1] = 29;
|
||||||
|
/* 5:47 */waypoints[28].children[2] = 33;
|
||||||
|
/* 5:47 */waypoints[29] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[29].origin =(27937.2, 35406.2, -9912.8);
|
||||||
|
/* 5:47 */waypoints[29].type = "stand";
|
||||||
|
/* 5:47 */waypoints[29].childCount = 4;
|
||||||
|
/* 5:47 */waypoints[29].children[0] = 28;
|
||||||
|
/* 5:47 */waypoints[29].children[1] = 9;
|
||||||
|
/* 5:47 */waypoints[29].children[2] = 30;
|
||||||
|
/* 5:47 */waypoints[29].children[3] = 34;
|
||||||
|
/* 5:47 */waypoints[30] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[30].origin =(28191.8, 35398.2, -9929.66);
|
||||||
|
/* 5:47 */waypoints[30].type = "stand";
|
||||||
|
/* 5:47 */waypoints[30].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[30].children[0] = 29;
|
||||||
|
/* 5:47 */waypoints[30].children[1] = 31;
|
||||||
|
/* 5:47 */waypoints[30].children[2] = 32;
|
||||||
|
/* 5:47 */waypoints[31] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[31].origin =(28195.5, 35307, -9936.83);
|
||||||
|
/* 5:47 */waypoints[31].type = "stand";
|
||||||
|
/* 5:47 */waypoints[31].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[31].children[0] = 30;
|
||||||
|
/* 5:47 */waypoints[31].children[1] = 8;
|
||||||
|
/* 5:47 */waypoints[31].children[2] = 9;
|
||||||
|
/* 5:47 */waypoints[32] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[32].origin =(28149.7, 36094.9, -9914.07);
|
||||||
|
/* 5:47 */waypoints[32].type = "stand";
|
||||||
|
/* 5:47 */waypoints[32].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[32].children[0] = 30;
|
||||||
|
/* 5:47 */waypoints[32].children[1] = 34;
|
||||||
|
/* 5:47 */waypoints[32].children[2] = 35;
|
||||||
|
/* 5:47 */waypoints[33] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[33].origin =(27860, 35982.8, -9904.95);
|
||||||
|
/* 5:47 */waypoints[33].type = "stand";
|
||||||
|
/* 5:47 */waypoints[33].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[33].children[0] = 25;
|
||||||
|
/* 5:47 */waypoints[33].children[1] = 34;
|
||||||
|
/* 5:47 */waypoints[33].children[2] = 28;
|
||||||
|
/* 5:47 */waypoints[34] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[34].origin =(27955.7, 35980.8, -9917.32);
|
||||||
|
/* 5:47 */waypoints[34].type = "stand";
|
||||||
|
/* 5:47 */waypoints[34].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[34].children[0] = 33;
|
||||||
|
/* 5:47 */waypoints[34].children[1] = 32;
|
||||||
|
/* 5:47 */waypoints[34].children[2] = 29;
|
||||||
|
/* 5:47 */waypoints[35] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[35].origin =(28407.2, 36107.7, -9915.77);
|
||||||
|
/* 5:47 */waypoints[35].type = "stand";
|
||||||
|
/* 5:47 */waypoints[35].childCount = 4;
|
||||||
|
/* 5:47 */waypoints[35].children[0] = 32;
|
||||||
|
/* 5:47 */waypoints[35].children[1] = 36;
|
||||||
|
/* 5:47 */waypoints[35].children[2] = 51;
|
||||||
|
/* 5:47 */waypoints[35].children[3] = 8;
|
||||||
|
/* 5:47 */waypoints[36] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[36].origin =(29128.7, 36235.7, -9898.96);
|
||||||
|
/* 5:47 */waypoints[36].type = "stand";
|
||||||
|
/* 5:47 */waypoints[36].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[36].children[0] = 35;
|
||||||
|
/* 5:47 */waypoints[36].children[1] = 37;
|
||||||
|
/* 5:47 */waypoints[36].children[2] = 39;
|
||||||
|
/* 5:47 */waypoints[37] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[37].origin =(29929.6, 36247.5, -9903.99);
|
||||||
|
/* 5:47 */waypoints[37].type = "stand";
|
||||||
|
/* 5:47 */waypoints[37].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[37].children[0] = 36;
|
||||||
|
/* 5:47 */waypoints[37].children[1] = 38;
|
||||||
|
/* 5:47 */waypoints[38] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[38].origin =(29950, 36054.3, -9908.82);
|
||||||
|
/* 5:47 */waypoints[38].type = "stand";
|
||||||
|
/* 5:47 */waypoints[38].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[38].children[0] = 37;
|
||||||
|
/* 5:47 */waypoints[38].children[1] = 39;
|
||||||
|
/* 5:47 */waypoints[38].children[2] = 44;
|
||||||
|
/* 5:47 */waypoints[39] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[39].origin =(29190.8, 36018.6, -9896.06);
|
||||||
|
/* 5:47 */waypoints[39].type = "stand";
|
||||||
|
/* 5:47 */waypoints[39].childCount = 4;
|
||||||
|
/* 5:47 */waypoints[39].children[0] = 38;
|
||||||
|
/* 5:47 */waypoints[39].children[1] = 36;
|
||||||
|
/* 5:47 */waypoints[39].children[2] = 40;
|
||||||
|
/* 5:47 */waypoints[39].children[3] = 43;
|
||||||
|
/* 5:47 */waypoints[40] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[40].origin =(29426.8, 35945.2, -9906.5);
|
||||||
|
/* 5:47 */waypoints[40].type = "stand";
|
||||||
|
/* 5:47 */waypoints[40].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[40].children[0] = 39;
|
||||||
|
/* 5:47 */waypoints[40].children[1] = 41;
|
||||||
|
/* 5:47 */waypoints[41] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[41].origin =(29707, 35940.2, -9681.41);
|
||||||
|
/* 5:47 */waypoints[41].type = "stand";
|
||||||
|
/* 5:47 */waypoints[41].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[41].children[0] = 42;
|
||||||
|
/* 5:47 */waypoints[41].children[1] = 40;
|
||||||
|
/* 5:47 */waypoints[42] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[42].origin =(29704.8, 36146.9, -9686.94);
|
||||||
|
/* 5:47 */waypoints[42].type = "stand";
|
||||||
|
/* 5:47 */waypoints[42].childCount = 1;
|
||||||
|
/* 5:47 */waypoints[42].children[0] = 41;
|
||||||
|
/* 5:47 */waypoints[43] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[43].origin =(29237.5, 35688.7, -9914.23);
|
||||||
|
/* 5:47 */waypoints[43].type = "stand";
|
||||||
|
/* 5:47 */waypoints[43].childCount = 4;
|
||||||
|
/* 5:47 */waypoints[43].children[0] = 39;
|
||||||
|
/* 5:47 */waypoints[43].children[1] = 44;
|
||||||
|
/* 5:47 */waypoints[43].children[2] = 51;
|
||||||
|
/* 5:47 */waypoints[43].children[3] = 53;
|
||||||
|
/* 5:47 */waypoints[44] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[44].origin =(29952.4, 35705.6, -9912.84);
|
||||||
|
/* 5:47 */waypoints[44].type = "stand";
|
||||||
|
/* 5:47 */waypoints[44].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[44].children[0] = 43;
|
||||||
|
/* 5:47 */waypoints[44].children[1] = 38;
|
||||||
|
/* 5:47 */waypoints[44].children[2] = 45;
|
||||||
|
/* 5:47 */waypoints[45] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[45].origin =(29952.2, 35325.4, -9906.47);
|
||||||
|
/* 5:47 */waypoints[45].type = "stand";
|
||||||
|
/* 5:47 */waypoints[45].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[45].children[0] = 44;
|
||||||
|
/* 5:47 */waypoints[45].children[1] = 46;
|
||||||
|
/* 5:47 */waypoints[45].children[2] = 53;
|
||||||
|
/* 5:47 */waypoints[46] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[46].origin =(29993.8, 34925.9, -9916.34);
|
||||||
|
/* 5:47 */waypoints[46].type = "stand";
|
||||||
|
/* 5:47 */waypoints[46].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[46].children[0] = 45;
|
||||||
|
/* 5:47 */waypoints[46].children[1] = 47;
|
||||||
|
/* 5:47 */waypoints[46].children[2] = 55;
|
||||||
|
/* 5:47 */waypoints[47] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[47].origin =(29985.9, 34586.8, -9899.55);
|
||||||
|
/* 5:47 */waypoints[47].type = "stand";
|
||||||
|
/* 5:47 */waypoints[47].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[47].children[0] = 46;
|
||||||
|
/* 5:47 */waypoints[47].children[1] = 48;
|
||||||
|
/* 5:47 */waypoints[48] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[48].origin =(29674.5, 34560.2, -9906.55);
|
||||||
|
/* 5:47 */waypoints[48].type = "stand";
|
||||||
|
/* 5:47 */waypoints[48].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[48].children[0] = 49;
|
||||||
|
/* 5:47 */waypoints[48].children[1] = 47;
|
||||||
|
/* 5:47 */waypoints[48].children[2] = 55;
|
||||||
|
/* 5:47 */waypoints[49] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[49].origin =(29208, 34550.6, -9933.6);
|
||||||
|
/* 5:47 */waypoints[49].type = "stand";
|
||||||
|
/* 5:47 */waypoints[49].childCount = 2;
|
||||||
|
/* 5:47 */waypoints[49].children[0] = 48;
|
||||||
|
/* 5:47 */waypoints[49].children[1] = 50;
|
||||||
|
/* 5:47 */waypoints[50] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[50].origin =(29218.4, 34700.8, -9929.93);
|
||||||
|
/* 5:47 */waypoints[50].type = "stand";
|
||||||
|
/* 5:47 */waypoints[50].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[50].children[0] = 49;
|
||||||
|
/* 5:47 */waypoints[50].children[1] = 2;
|
||||||
|
/* 5:47 */waypoints[50].children[2] = 54;
|
||||||
|
/* 5:47 */waypoints[51] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[51].origin =(28701, 35617.6, -9897.99);
|
||||||
|
/* 5:47 */waypoints[51].type = "stand";
|
||||||
|
/* 5:47 */waypoints[51].childCount = 5;
|
||||||
|
/* 5:47 */waypoints[51].children[0] = 43;
|
||||||
|
/* 5:47 */waypoints[51].children[1] = 35;
|
||||||
|
/* 5:47 */waypoints[51].children[2] = 6;
|
||||||
|
/* 5:47 */waypoints[51].children[3] = 52;
|
||||||
|
/* 5:47 */waypoints[51].children[4] = 56;
|
||||||
|
/* 5:47 */waypoints[52] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[52].origin =(28930.5, 35110.8, -9899.7);
|
||||||
|
/* 5:47 */waypoints[52].type = "stand";
|
||||||
|
/* 5:47 */waypoints[52].childCount = 5;
|
||||||
|
/* 5:47 */waypoints[52].children[0] = 3;
|
||||||
|
/* 5:47 */waypoints[52].children[1] = 6;
|
||||||
|
/* 5:47 */waypoints[52].children[2] = 53;
|
||||||
|
/* 5:47 */waypoints[52].children[3] = 54;
|
||||||
|
/* 5:47 */waypoints[52].children[4] = 51;
|
||||||
|
/* 5:47 */waypoints[53] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[53].origin =(29338.6, 35319.8, -9898.9);
|
||||||
|
/* 5:47 */waypoints[53].type = "stand";
|
||||||
|
/* 5:47 */waypoints[53].childCount = 5;
|
||||||
|
/* 5:47 */waypoints[53].children[0] = 52;
|
||||||
|
/* 5:47 */waypoints[53].children[1] = 43;
|
||||||
|
/* 5:47 */waypoints[53].children[2] = 45;
|
||||||
|
/* 5:47 */waypoints[53].children[3] = 54;
|
||||||
|
/* 5:47 */waypoints[53].children[4] = 3;
|
||||||
|
/* 5:47 */waypoints[54] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[54].origin =(29442.9, 34956.5, -9903.4);
|
||||||
|
/* 5:47 */waypoints[54].type = "stand";
|
||||||
|
/* 5:47 */waypoints[54].childCount = 4;
|
||||||
|
/* 5:47 */waypoints[54].children[0] = 53;
|
||||||
|
/* 5:47 */waypoints[54].children[1] = 50;
|
||||||
|
/* 5:47 */waypoints[54].children[2] = 55;
|
||||||
|
/* 5:47 */waypoints[54].children[3] = 52;
|
||||||
|
/* 5:47 */waypoints[55] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[55].origin =(29643.9, 34942.5, -9884.43);
|
||||||
|
/* 5:47 */waypoints[55].type = "stand";
|
||||||
|
/* 5:47 */waypoints[55].childCount = 3;
|
||||||
|
/* 5:47 */waypoints[55].children[0] = 48;
|
||||||
|
/* 5:47 */waypoints[55].children[1] = 46;
|
||||||
|
/* 5:47 */waypoints[55].children[2] = 54;
|
||||||
|
/* 5:47 */waypoints[56] = spawnstruct();
|
||||||
|
/* 5:47 */waypoints[56].origin =(28794.2, 35888, -9907.27);
|
||||||
|
/* 5:47 */waypoints[56].type = "stand";
|
||||||
|
/* 5:47 */waypoints[56].childCount = 1;
|
||||||
|
/* 5:47 */waypoints[56].children[0] = 51;
|
||||||
|
/* 5:47 */return waypoints;
|
||||||
|
}
|
886
mods/bots/maps/mp/bots/waypoints/airport.gsc
Normal file
886
mods/bots/maps/mp/bots/waypoints/airport.gsc
Normal file
@ -0,0 +1,886 @@
|
|||||||
|
Airport()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
waypoints[0] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[0].origin =(2736.88, 3023.13, -63.875);
|
||||||
|
/* 12:02 */waypoints[0].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[0].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[0].children[0] = 1;
|
||||||
|
/* 12:02 */waypoints[0].angles = (-12.5409, 155.389, 0);
|
||||||
|
/* 12:02 */waypoints[1] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[1].origin =(2525.7, 3068.71, -63.875);
|
||||||
|
/* 12:02 */waypoints[1].type = "stand";
|
||||||
|
/* 12:02 */waypoints[1].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[1].children[0] = 0;
|
||||||
|
/* 12:02 */waypoints[1].children[1] = 2;
|
||||||
|
/* 12:02 */waypoints[2] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[2].origin =(2998.47, 3051.49, 64.125);
|
||||||
|
/* 12:02 */waypoints[2].type = "stand";
|
||||||
|
/* 12:02 */waypoints[2].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[2].children[0] = 1;
|
||||||
|
/* 12:02 */waypoints[2].children[1] = 3;
|
||||||
|
/* 12:02 */waypoints[2].children[2] = 4;
|
||||||
|
/* 12:02 */waypoints[2].children[3] = 5;
|
||||||
|
/* 12:02 */waypoints[3] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[3].origin =(2955.16, 2882.25, 64.125);
|
||||||
|
/* 12:02 */waypoints[3].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[3].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[3].children[0] = 2;
|
||||||
|
/* 12:02 */waypoints[3].angles = (-1.29639, 76.6666, 0);
|
||||||
|
/* 12:02 */waypoints[4] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[4].origin =(2924.6, 3168.88, 64.125);
|
||||||
|
/* 12:02 */waypoints[4].type = "claymore";
|
||||||
|
/* 12:02 */waypoints[4].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[4].children[0] = 2;
|
||||||
|
/* 12:02 */waypoints[4].angles = (23.6151, -60.8383, 0);
|
||||||
|
/* 12:02 */waypoints[5] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[5].origin =(3152.55, 3061.25, 64.125);
|
||||||
|
/* 12:02 */waypoints[5].type = "stand";
|
||||||
|
/* 12:02 */waypoints[5].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[5].children[0] = 2;
|
||||||
|
/* 12:02 */waypoints[5].children[1] = 6;
|
||||||
|
/* 12:02 */waypoints[6] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[6].origin =(3146.75, 3305.01, 64.125);
|
||||||
|
/* 12:02 */waypoints[6].type = "stand";
|
||||||
|
/* 12:02 */waypoints[6].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[6].children[0] = 5;
|
||||||
|
/* 12:02 */waypoints[6].children[1] = 7;
|
||||||
|
/* 12:02 */waypoints[7] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[7].origin =(3010.1, 3305.06, 64.125);
|
||||||
|
/* 12:02 */waypoints[7].type = "stand";
|
||||||
|
/* 12:02 */waypoints[7].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[7].children[0] = 6;
|
||||||
|
/* 12:02 */waypoints[7].children[1] = 8;
|
||||||
|
/* 12:02 */waypoints[7].children[2] = 10;
|
||||||
|
/* 12:02 */waypoints[8] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[8].origin =(3007.86, 3239.12, 64.125);
|
||||||
|
/* 12:02 */waypoints[8].type = "stand";
|
||||||
|
/* 12:02 */waypoints[8].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[8].children[0] = 7;
|
||||||
|
/* 12:02 */waypoints[8].children[1] = 9;
|
||||||
|
/* 12:02 */waypoints[9] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[9].origin =(2763.02, 3242.37, 64.125);
|
||||||
|
/* 12:02 */waypoints[9].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[9].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[9].children[0] = 8;
|
||||||
|
/* 12:02 */waypoints[9].angles = (1.83472, 1.5256, 0);
|
||||||
|
/* 12:02 */waypoints[10] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[10].origin =(2993.16, 3425.03, 64.125);
|
||||||
|
/* 12:02 */waypoints[10].type = "stand";
|
||||||
|
/* 12:02 */waypoints[10].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[10].children[0] = 7;
|
||||||
|
/* 12:02 */waypoints[10].children[1] = 11;
|
||||||
|
/* 12:02 */waypoints[10].children[2] = 12;
|
||||||
|
/* 12:02 */waypoints[11] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[11].origin =(2875.92, 3424.03, 64.125);
|
||||||
|
/* 12:02 */waypoints[11].type = "stand";
|
||||||
|
/* 12:02 */waypoints[11].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[11].children[0] = 10;
|
||||||
|
/* 12:02 */waypoints[11].children[1] = 27;
|
||||||
|
/* 12:02 */waypoints[11].children[2] = 125;
|
||||||
|
/* 12:02 */waypoints[12] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[12].origin =(3025.78, 3529.34, 64.125);
|
||||||
|
/* 12:02 */waypoints[12].type = "stand";
|
||||||
|
/* 12:02 */waypoints[12].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[12].children[0] = 10;
|
||||||
|
/* 12:02 */waypoints[12].children[1] = 13;
|
||||||
|
/* 12:02 */waypoints[12].children[2] = 15;
|
||||||
|
/* 12:02 */waypoints[13] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[13].origin =(3007.91, 3946.02, 64.125);
|
||||||
|
/* 12:02 */waypoints[13].type = "stand";
|
||||||
|
/* 12:02 */waypoints[13].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[13].children[0] = 12;
|
||||||
|
/* 12:02 */waypoints[13].children[1] = 14;
|
||||||
|
/* 12:02 */waypoints[13].children[2] = 22;
|
||||||
|
/* 12:02 */waypoints[13].children[3] = 29;
|
||||||
|
/* 12:02 */waypoints[14] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[14].origin =(3438.73, 3965.57, 64.125);
|
||||||
|
/* 12:02 */waypoints[14].type = "stand";
|
||||||
|
/* 12:02 */waypoints[14].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[14].children[0] = 13;
|
||||||
|
/* 12:02 */waypoints[14].children[1] = 15;
|
||||||
|
/* 12:02 */waypoints[14].children[2] = 16;
|
||||||
|
/* 12:02 */waypoints[14].children[3] = 20;
|
||||||
|
/* 12:02 */waypoints[15] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[15].origin =(3401.55, 3521.78, 64.125);
|
||||||
|
/* 12:02 */waypoints[15].type = "stand";
|
||||||
|
/* 12:02 */waypoints[15].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[15].children[0] = 14;
|
||||||
|
/* 12:02 */waypoints[15].children[1] = 12;
|
||||||
|
/* 12:02 */waypoints[16] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[16].origin =(3407.68, 4305.46, 64.125);
|
||||||
|
/* 12:02 */waypoints[16].type = "stand";
|
||||||
|
/* 12:02 */waypoints[16].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[16].children[0] = 14;
|
||||||
|
/* 12:02 */waypoints[16].children[1] = 17;
|
||||||
|
/* 12:02 */waypoints[16].children[2] = 19;
|
||||||
|
/* 12:02 */waypoints[16].children[3] = 21;
|
||||||
|
/* 12:02 */waypoints[17] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[17].origin =(2931.71, 4595.02, 64.125);
|
||||||
|
/* 12:02 */waypoints[17].type = "stand";
|
||||||
|
/* 12:02 */waypoints[17].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[17].children[0] = 16;
|
||||||
|
/* 12:02 */waypoints[17].children[1] = 18;
|
||||||
|
/* 12:02 */waypoints[17].children[2] = 21;
|
||||||
|
/* 12:02 */waypoints[18] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[18].origin =(2393.24, 4572.78, 64.125);
|
||||||
|
/* 12:02 */waypoints[18].type = "stand";
|
||||||
|
/* 12:02 */waypoints[18].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[18].children[0] = 17;
|
||||||
|
/* 12:02 */waypoints[19] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[19].origin =(3636.78, 4281.58, 64.125);
|
||||||
|
/* 12:02 */waypoints[19].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[19].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[19].children[0] = 16;
|
||||||
|
/* 12:02 */waypoints[19].angles = (5.25146, -167.587, 0);
|
||||||
|
/* 12:02 */waypoints[20] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[20].origin =(3601.94, 3866.5, 64.125);
|
||||||
|
/* 12:02 */waypoints[20].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[20].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[20].children[0] = 14;
|
||||||
|
/* 12:02 */waypoints[20].angles = (1.1261, 150.561, 0);
|
||||||
|
/* 12:02 */waypoints[21] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[21].origin =(2890.57, 4273.68, 64.125);
|
||||||
|
/* 12:02 */waypoints[21].type = "stand";
|
||||||
|
/* 12:02 */waypoints[21].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[21].children[0] = 16;
|
||||||
|
/* 12:02 */waypoints[21].children[1] = 17;
|
||||||
|
/* 12:02 */waypoints[21].children[2] = 22;
|
||||||
|
/* 12:02 */waypoints[22] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[22].origin =(2863.85, 4051.93, 64.125);
|
||||||
|
/* 12:02 */waypoints[22].type = "stand";
|
||||||
|
/* 12:02 */waypoints[22].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[22].children[0] = 21;
|
||||||
|
/* 12:02 */waypoints[22].children[1] = 13;
|
||||||
|
/* 12:02 */waypoints[22].children[2] = 23;
|
||||||
|
/* 12:02 */waypoints[23] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[23].origin =(2325.64, 4047.01, 64.125);
|
||||||
|
/* 12:02 */waypoints[23].type = "stand";
|
||||||
|
/* 12:02 */waypoints[23].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[23].children[0] = 22;
|
||||||
|
/* 12:02 */waypoints[23].children[1] = 24;
|
||||||
|
/* 12:02 */waypoints[23].children[2] = 25;
|
||||||
|
/* 12:02 */waypoints[23].children[3] = 36;
|
||||||
|
/* 12:02 */waypoints[24] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[24].origin =(2116.37, 3981.05, 64.125);
|
||||||
|
/* 12:02 */waypoints[24].type = "stand";
|
||||||
|
/* 12:02 */waypoints[24].childCount = 5;
|
||||||
|
/* 12:02 */waypoints[24].children[0] = 23;
|
||||||
|
/* 12:02 */waypoints[24].children[1] = 31;
|
||||||
|
/* 12:02 */waypoints[24].children[2] = 32;
|
||||||
|
/* 12:02 */waypoints[24].children[3] = 34;
|
||||||
|
/* 12:02 */waypoints[24].children[4] = 35;
|
||||||
|
/* 12:02 */waypoints[25] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[25].origin =(2328.81, 3743.58, 64.125);
|
||||||
|
/* 12:02 */waypoints[25].type = "stand";
|
||||||
|
/* 12:02 */waypoints[25].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[25].children[0] = 23;
|
||||||
|
/* 12:02 */waypoints[25].children[1] = 26;
|
||||||
|
/* 12:02 */waypoints[25].children[2] = 28;
|
||||||
|
/* 12:02 */waypoints[26] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[26].origin =(2296.07, 3436.77, 64.125);
|
||||||
|
/* 12:02 */waypoints[26].type = "stand";
|
||||||
|
/* 12:02 */waypoints[26].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[26].children[0] = 25;
|
||||||
|
/* 12:02 */waypoints[26].children[1] = 30;
|
||||||
|
/* 12:02 */waypoints[26].children[2] = 123;
|
||||||
|
/* 12:02 */waypoints[26].children[3] = 125;
|
||||||
|
/* 12:02 */waypoints[27] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[27].origin =(2847.06, 3609.89, 64.125);
|
||||||
|
/* 12:02 */waypoints[27].type = "stand";
|
||||||
|
/* 12:02 */waypoints[27].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[27].children[0] = 11;
|
||||||
|
/* 12:02 */waypoints[27].children[1] = 28;
|
||||||
|
/* 12:02 */waypoints[28] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[28].origin =(2636.61, 3755.98, 64.125);
|
||||||
|
/* 12:02 */waypoints[28].type = "stand";
|
||||||
|
/* 12:02 */waypoints[28].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[28].children[0] = 27;
|
||||||
|
/* 12:02 */waypoints[28].children[1] = 25;
|
||||||
|
/* 12:02 */waypoints[28].children[2] = 29;
|
||||||
|
/* 12:02 */waypoints[29] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[29].origin =(2807.5, 3888.07, 64.125);
|
||||||
|
/* 12:02 */waypoints[29].type = "stand";
|
||||||
|
/* 12:02 */waypoints[29].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[29].children[0] = 28;
|
||||||
|
/* 12:02 */waypoints[29].children[1] = 13;
|
||||||
|
/* 12:02 */waypoints[30] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[30].origin =(1964.35, 3578.8, 64.125);
|
||||||
|
/* 12:02 */waypoints[30].type = "stand";
|
||||||
|
/* 12:02 */waypoints[30].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[30].children[0] = 26;
|
||||||
|
/* 12:02 */waypoints[30].children[1] = 31;
|
||||||
|
/* 12:02 */waypoints[31] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[31].origin =(1991.48, 3964.25, 64.125);
|
||||||
|
/* 12:02 */waypoints[31].type = "stand";
|
||||||
|
/* 12:02 */waypoints[31].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[31].children[0] = 30;
|
||||||
|
/* 12:02 */waypoints[31].children[1] = 24;
|
||||||
|
/* 12:02 */waypoints[31].children[2] = 33;
|
||||||
|
/* 12:02 */waypoints[31].children[3] = 37;
|
||||||
|
/* 12:02 */waypoints[32] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[32].origin =(2127.74, 3731.8, 64.125);
|
||||||
|
/* 12:02 */waypoints[32].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[32].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[32].children[0] = 24;
|
||||||
|
/* 12:02 */waypoints[32].angles = (-18.6603, 82.8354, 0);
|
||||||
|
/* 12:02 */waypoints[33] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[33].origin =(1930.34, 4392.78, 64.125);
|
||||||
|
/* 12:02 */waypoints[33].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[33].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[33].children[0] = 31;
|
||||||
|
/* 12:02 */waypoints[33].angles = (8.38257, -88.2602, 0);
|
||||||
|
/* 12:02 */waypoints[34] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[34].origin =(2193.7, 3928.12, 64.125);
|
||||||
|
/* 12:02 */waypoints[34].type = "grenade";
|
||||||
|
/* 12:02 */waypoints[34].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[34].children[0] = 24;
|
||||||
|
/* 12:02 */waypoints[34].angles = (-31.4758, 94.2392, 0);
|
||||||
|
/* 12:02 */waypoints[35] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[35].origin =(2129.58, 4564.31, 320.125);
|
||||||
|
/* 12:02 */waypoints[35].type = "stand";
|
||||||
|
/* 12:02 */waypoints[35].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[35].children[0] = 24;
|
||||||
|
/* 12:02 */waypoints[35].children[1] = 38;
|
||||||
|
/* 12:02 */waypoints[35].children[2] = 40;
|
||||||
|
/* 12:02 */waypoints[35].children[3] = 43;
|
||||||
|
/* 12:02 */waypoints[36] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[36].origin =(2354.15, 4197.65, 96.125);
|
||||||
|
/* 12:02 */waypoints[36].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[36].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[36].children[0] = 23;
|
||||||
|
/* 12:02 */waypoints[36].angles = (-17.5232, -32.0157, 0);
|
||||||
|
/* 12:02 */waypoints[37] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[37].origin =(2000.91, 4022.05, 64.125);
|
||||||
|
/* 12:02 */waypoints[37].type = "claymore";
|
||||||
|
/* 12:02 */waypoints[37].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[37].children[0] = 31;
|
||||||
|
/* 12:02 */waypoints[37].angles = (20.3412, 0.1578, 0);
|
||||||
|
/* 12:02 */waypoints[38] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[38].origin =(2286.41, 4455.91, 320.125);
|
||||||
|
/* 12:02 */waypoints[38].type = "claymore";
|
||||||
|
/* 12:02 */waypoints[38].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[38].children[0] = 35;
|
||||||
|
/* 12:02 */waypoints[38].children[1] = 39;
|
||||||
|
/* 12:02 */waypoints[38].angles = (21.1981, 152.318, 0);
|
||||||
|
/* 12:02 */waypoints[39] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[39].origin =(2244.83, 4644.82, 320.125);
|
||||||
|
/* 12:02 */waypoints[39].type = "grenade";
|
||||||
|
/* 12:02 */waypoints[39].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[39].children[0] = 38;
|
||||||
|
/* 12:02 */waypoints[39].angles = (-1.43921, -89.3863, 0);
|
||||||
|
/* 12:02 */waypoints[40] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[40].origin =(2028.18, 4548.94, 320.125);
|
||||||
|
/* 12:02 */waypoints[40].type = "stand";
|
||||||
|
/* 12:02 */waypoints[40].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[40].children[0] = 35;
|
||||||
|
/* 12:02 */waypoints[40].children[1] = 41;
|
||||||
|
/* 12:02 */waypoints[41] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[41].origin =(2044.4, 4965.18, 320.125);
|
||||||
|
/* 12:02 */waypoints[41].type = "stand";
|
||||||
|
/* 12:02 */waypoints[41].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[41].children[0] = 40;
|
||||||
|
/* 12:02 */waypoints[41].children[1] = 42;
|
||||||
|
/* 12:02 */waypoints[42] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[42].origin =(2724.96, 4991.78, 320.125);
|
||||||
|
/* 12:02 */waypoints[42].type = "stand";
|
||||||
|
/* 12:02 */waypoints[42].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[42].children[0] = 41;
|
||||||
|
/* 12:02 */waypoints[42].children[1] = 43;
|
||||||
|
/* 12:02 */waypoints[43] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[43].origin =(2741.93, 4497.22, 320.125);
|
||||||
|
/* 12:02 */waypoints[43].type = "stand";
|
||||||
|
/* 12:02 */waypoints[43].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[43].children[0] = 42;
|
||||||
|
/* 12:02 */waypoints[43].children[1] = 35;
|
||||||
|
/* 12:02 */waypoints[43].children[2] = 44;
|
||||||
|
/* 12:02 */waypoints[44] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[44].origin =(2890.12, 4516.57, 320.125);
|
||||||
|
/* 12:02 */waypoints[44].type = "stand";
|
||||||
|
/* 12:02 */waypoints[44].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[44].children[0] = 43;
|
||||||
|
/* 12:02 */waypoints[44].children[1] = 45;
|
||||||
|
/* 12:02 */waypoints[44].children[2] = 50;
|
||||||
|
/* 12:02 */waypoints[44].children[3] = 122;
|
||||||
|
/* 12:02 */waypoints[45] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[45].origin =(2895.78, 4950.64, 320.125);
|
||||||
|
/* 12:02 */waypoints[45].type = "stand";
|
||||||
|
/* 12:02 */waypoints[45].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[45].children[0] = 44;
|
||||||
|
/* 12:02 */waypoints[45].children[1] = 46;
|
||||||
|
/* 12:02 */waypoints[46] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[46].origin =(3357.42, 4940.35, 320.125);
|
||||||
|
/* 12:02 */waypoints[46].type = "stand";
|
||||||
|
/* 12:02 */waypoints[46].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[46].children[0] = 45;
|
||||||
|
/* 12:02 */waypoints[46].children[1] = 47;
|
||||||
|
/* 12:02 */waypoints[47] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[47].origin =(3390.53, 4512.58, 320.125);
|
||||||
|
/* 12:02 */waypoints[47].type = "stand";
|
||||||
|
/* 12:02 */waypoints[47].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[47].children[0] = 46;
|
||||||
|
/* 12:02 */waypoints[47].children[1] = 48;
|
||||||
|
/* 12:02 */waypoints[47].children[2] = 49;
|
||||||
|
/* 12:02 */waypoints[48] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[48].origin =(3565.84, 4606.46, 320.125);
|
||||||
|
/* 12:02 */waypoints[48].type = "stand";
|
||||||
|
/* 12:02 */waypoints[48].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[48].children[0] = 47;
|
||||||
|
/* 12:02 */waypoints[48].children[1] = 51;
|
||||||
|
/* 12:02 */waypoints[48].children[2] = 52;
|
||||||
|
/* 12:02 */waypoints[48].children[3] = 54;
|
||||||
|
/* 12:02 */waypoints[49] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[49].origin =(3206.6, 4498.62, 320.125);
|
||||||
|
/* 12:02 */waypoints[49].type = "stand";
|
||||||
|
/* 12:02 */waypoints[49].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[49].children[0] = 50;
|
||||||
|
/* 12:02 */waypoints[49].children[1] = 57;
|
||||||
|
/* 12:02 */waypoints[49].children[2] = 47;
|
||||||
|
/* 12:02 */waypoints[50] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[50].origin =(2999.39, 4486.46, 320.125);
|
||||||
|
/* 12:02 */waypoints[50].type = "stand";
|
||||||
|
/* 12:02 */waypoints[50].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[50].children[0] = 49;
|
||||||
|
/* 12:02 */waypoints[50].children[1] = 44;
|
||||||
|
/* 12:02 */waypoints[50].children[2] = 58;
|
||||||
|
/* 12:02 */waypoints[51] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[51].origin =(3596.55, 4882.12, 320.125);
|
||||||
|
/* 12:02 */waypoints[51].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[51].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[51].children[0] = 48;
|
||||||
|
/* 12:02 */waypoints[51].angles = (-2.14783, -138.204, 0);
|
||||||
|
/* 12:02 */waypoints[52] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[52].origin =(3836.66, 4593.63, 320.125);
|
||||||
|
/* 12:02 */waypoints[52].type = "stand";
|
||||||
|
/* 12:02 */waypoints[52].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[52].children[0] = 48;
|
||||||
|
/* 12:02 */waypoints[52].children[1] = 53;
|
||||||
|
/* 12:02 */waypoints[53] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[53].origin =(3846.22, 4132.93, 320.125);
|
||||||
|
/* 12:02 */waypoints[53].type = "stand";
|
||||||
|
/* 12:02 */waypoints[53].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[53].children[0] = 52;
|
||||||
|
/* 12:02 */waypoints[53].children[1] = 54;
|
||||||
|
/* 12:02 */waypoints[53].children[2] = 56;
|
||||||
|
/* 12:02 */waypoints[54] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[54].origin =(3545.17, 4088.27, 320.125);
|
||||||
|
/* 12:02 */waypoints[54].type = "stand";
|
||||||
|
/* 12:02 */waypoints[54].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[54].children[0] = 53;
|
||||||
|
/* 12:02 */waypoints[54].children[1] = 55;
|
||||||
|
/* 12:02 */waypoints[54].children[2] = 48;
|
||||||
|
/* 12:02 */waypoints[54].children[3] = 57;
|
||||||
|
/* 12:02 */waypoints[55] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[55].origin =(3600.33, 3670.43, 320.125);
|
||||||
|
/* 12:02 */waypoints[55].type = "stand";
|
||||||
|
/* 12:02 */waypoints[55].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[55].children[0] = 54;
|
||||||
|
/* 12:02 */waypoints[55].children[1] = 56;
|
||||||
|
/* 12:02 */waypoints[55].children[2] = 60;
|
||||||
|
/* 12:02 */waypoints[55].children[3] = 67;
|
||||||
|
/* 12:02 */waypoints[56] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[56].origin =(3814.44, 3697.82, 320.125);
|
||||||
|
/* 12:02 */waypoints[56].type = "stand";
|
||||||
|
/* 12:02 */waypoints[56].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[56].children[0] = 55;
|
||||||
|
/* 12:02 */waypoints[56].children[1] = 53;
|
||||||
|
/* 12:02 */waypoints[57] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[57].origin =(3207.5, 4046.32, 320.125);
|
||||||
|
/* 12:02 */waypoints[57].type = "stand";
|
||||||
|
/* 12:02 */waypoints[57].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[57].children[0] = 54;
|
||||||
|
/* 12:02 */waypoints[57].children[1] = 49;
|
||||||
|
/* 12:02 */waypoints[57].children[2] = 58;
|
||||||
|
/* 12:02 */waypoints[57].children[3] = 60;
|
||||||
|
/* 12:02 */waypoints[58] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[58].origin =(2996.08, 4041.83, 320.125);
|
||||||
|
/* 12:02 */waypoints[58].type = "stand";
|
||||||
|
/* 12:02 */waypoints[58].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[58].children[0] = 50;
|
||||||
|
/* 12:02 */waypoints[58].children[1] = 57;
|
||||||
|
/* 12:02 */waypoints[58].children[2] = 59;
|
||||||
|
/* 12:02 */waypoints[58].children[3] = 121;
|
||||||
|
/* 12:02 */waypoints[59] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[59].origin =(3020.16, 3529.22, 320.125);
|
||||||
|
/* 12:02 */waypoints[59].type = "stand";
|
||||||
|
/* 12:02 */waypoints[59].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[59].children[0] = 58;
|
||||||
|
/* 12:02 */waypoints[59].children[1] = 60;
|
||||||
|
/* 12:02 */waypoints[59].children[2] = 61;
|
||||||
|
/* 12:02 */waypoints[59].children[3] = 120;
|
||||||
|
/* 12:02 */waypoints[60] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[60].origin =(3218.88, 3592.43, 320.125);
|
||||||
|
/* 12:02 */waypoints[60].type = "stand";
|
||||||
|
/* 12:02 */waypoints[60].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[60].children[0] = 59;
|
||||||
|
/* 12:02 */waypoints[60].children[1] = 57;
|
||||||
|
/* 12:02 */waypoints[60].children[2] = 66;
|
||||||
|
/* 12:02 */waypoints[60].children[3] = 55;
|
||||||
|
/* 12:02 */waypoints[61] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[61].origin =(3050.41, 3362.07, 320.125);
|
||||||
|
/* 12:02 */waypoints[61].type = "stand";
|
||||||
|
/* 12:02 */waypoints[61].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[61].children[0] = 59;
|
||||||
|
/* 12:02 */waypoints[61].children[1] = 62;
|
||||||
|
/* 12:02 */waypoints[61].children[2] = 63;
|
||||||
|
/* 12:02 */waypoints[62] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[62].origin =(2828.31, 3341.3, 320.125);
|
||||||
|
/* 12:02 */waypoints[62].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[62].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[62].children[0] = 61;
|
||||||
|
/* 12:02 */waypoints[62].angles = (-2.29065, 2.99777, 0);
|
||||||
|
/* 12:02 */waypoints[63] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[63].origin =(3165.72, 3270.74, 320.125);
|
||||||
|
/* 12:02 */waypoints[63].type = "stand";
|
||||||
|
/* 12:02 */waypoints[63].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[63].children[0] = 61;
|
||||||
|
/* 12:02 */waypoints[63].children[1] = 64;
|
||||||
|
/* 12:02 */waypoints[63].children[2] = 66;
|
||||||
|
/* 12:02 */waypoints[64] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[64].origin =(3161.78, 3039.1, 320.125);
|
||||||
|
/* 12:02 */waypoints[64].type = "stand";
|
||||||
|
/* 12:02 */waypoints[64].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[64].children[0] = 63;
|
||||||
|
/* 12:02 */waypoints[64].children[1] = 65;
|
||||||
|
/* 12:02 */waypoints[65] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[65].origin =(3316.71, 3032.43, 320.125);
|
||||||
|
/* 12:02 */waypoints[65].type = "stand";
|
||||||
|
/* 12:02 */waypoints[65].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[65].children[0] = 64;
|
||||||
|
/* 12:02 */waypoints[65].children[1] = 66;
|
||||||
|
/* 12:02 */waypoints[65].children[2] = 81;
|
||||||
|
/* 12:02 */waypoints[66] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[66].origin =(3326.07, 3273.82, 320.125);
|
||||||
|
/* 12:02 */waypoints[66].type = "stand";
|
||||||
|
/* 12:02 */waypoints[66].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[66].children[0] = 65;
|
||||||
|
/* 12:02 */waypoints[66].children[1] = 63;
|
||||||
|
/* 12:02 */waypoints[66].children[2] = 60;
|
||||||
|
/* 12:02 */waypoints[67] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[67].origin =(3626.31, 3478.77, 320.125);
|
||||||
|
/* 12:02 */waypoints[67].type = "stand";
|
||||||
|
/* 12:02 */waypoints[67].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[67].children[0] = 55;
|
||||||
|
/* 12:02 */waypoints[67].children[1] = 68;
|
||||||
|
/* 12:02 */waypoints[67].children[2] = 80;
|
||||||
|
/* 12:02 */waypoints[68] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[68].origin =(3918.58, 3484.14, 320.125);
|
||||||
|
/* 12:02 */waypoints[68].type = "stand";
|
||||||
|
/* 12:02 */waypoints[68].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[68].children[0] = 67;
|
||||||
|
/* 12:02 */waypoints[68].children[1] = 69;
|
||||||
|
/* 12:02 */waypoints[68].children[2] = 73;
|
||||||
|
/* 12:02 */waypoints[69] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[69].origin =(3910.05, 3246.97, 320.125);
|
||||||
|
/* 12:02 */waypoints[69].type = "stand";
|
||||||
|
/* 12:02 */waypoints[69].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[69].children[0] = 68;
|
||||||
|
/* 12:02 */waypoints[69].children[1] = 70;
|
||||||
|
/* 12:02 */waypoints[69].children[2] = 80;
|
||||||
|
/* 12:02 */waypoints[70] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[70].origin =(4067.99, 3094.55, 320.125);
|
||||||
|
/* 12:02 */waypoints[70].type = "stand";
|
||||||
|
/* 12:02 */waypoints[70].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[70].children[0] = 69;
|
||||||
|
/* 12:02 */waypoints[70].children[1] = 71;
|
||||||
|
/* 12:02 */waypoints[70].children[2] = 78;
|
||||||
|
/* 12:02 */waypoints[70].children[3] = 80;
|
||||||
|
/* 12:02 */waypoints[71] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[71].origin =(4346.28, 3085.65, 320.125);
|
||||||
|
/* 12:02 */waypoints[71].type = "stand";
|
||||||
|
/* 12:02 */waypoints[71].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[71].children[0] = 70;
|
||||||
|
/* 12:02 */waypoints[71].children[1] = 72;
|
||||||
|
/* 12:02 */waypoints[71].children[2] = 75;
|
||||||
|
/* 12:02 */waypoints[71].children[3] = 76;
|
||||||
|
/* 12:02 */waypoints[72] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[72].origin =(4365.88, 3359.72, 320.125);
|
||||||
|
/* 12:02 */waypoints[72].type = "stand";
|
||||||
|
/* 12:02 */waypoints[72].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[72].children[0] = 71;
|
||||||
|
/* 12:02 */waypoints[72].children[1] = 73;
|
||||||
|
/* 12:02 */waypoints[72].children[2] = 74;
|
||||||
|
/* 12:02 */waypoints[73] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[73].origin =(4135.79, 3539.98, 320.125);
|
||||||
|
/* 12:02 */waypoints[73].type = "stand";
|
||||||
|
/* 12:02 */waypoints[73].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[73].children[0] = 72;
|
||||||
|
/* 12:02 */waypoints[73].children[1] = 68;
|
||||||
|
/* 12:02 */waypoints[73].children[2] = 126;
|
||||||
|
/* 12:02 */waypoints[74] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[74].origin =(4516.56, 3331.1, 320.125);
|
||||||
|
/* 12:02 */waypoints[74].type = "stand";
|
||||||
|
/* 12:02 */waypoints[74].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[74].children[0] = 72;
|
||||||
|
/* 12:02 */waypoints[74].children[1] = 75;
|
||||||
|
/* 12:02 */waypoints[75] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[75].origin =(4511.52, 3089.27, 320.125);
|
||||||
|
/* 12:02 */waypoints[75].type = "stand";
|
||||||
|
/* 12:02 */waypoints[75].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[75].children[0] = 74;
|
||||||
|
/* 12:02 */waypoints[75].children[1] = 71;
|
||||||
|
/* 12:02 */waypoints[75].children[2] = 77;
|
||||||
|
/* 12:02 */waypoints[75].children[3] = 95;
|
||||||
|
/* 12:02 */waypoints[76] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[76].origin =(4342.58, 2827.07, 320.125);
|
||||||
|
/* 12:02 */waypoints[76].type = "stand";
|
||||||
|
/* 12:02 */waypoints[76].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[76].children[0] = 71;
|
||||||
|
/* 12:02 */waypoints[76].children[1] = 77;
|
||||||
|
/* 12:02 */waypoints[76].children[2] = 78;
|
||||||
|
/* 12:02 */waypoints[76].children[3] = 87;
|
||||||
|
/* 12:02 */waypoints[77] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[77].origin =(4545.4, 2792.42, 320.125);
|
||||||
|
/* 12:02 */waypoints[77].type = "stand";
|
||||||
|
/* 12:02 */waypoints[77].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[77].children[0] = 76;
|
||||||
|
/* 12:02 */waypoints[77].children[1] = 75;
|
||||||
|
/* 12:02 */waypoints[77].children[2] = 92;
|
||||||
|
/* 12:02 */waypoints[78] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[78].origin =(4101.78, 2799.93, 320.125);
|
||||||
|
/* 12:02 */waypoints[78].type = "stand";
|
||||||
|
/* 12:02 */waypoints[78].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[78].children[0] = 76;
|
||||||
|
/* 12:02 */waypoints[78].children[1] = 70;
|
||||||
|
/* 12:02 */waypoints[78].children[2] = 79;
|
||||||
|
/* 12:02 */waypoints[79] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[79].origin =(3903.83, 2827.88, 320.125);
|
||||||
|
/* 12:02 */waypoints[79].type = "stand";
|
||||||
|
/* 12:02 */waypoints[79].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[79].children[0] = 78;
|
||||||
|
/* 12:02 */waypoints[79].children[1] = 80;
|
||||||
|
/* 12:02 */waypoints[80] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[80].origin =(3655.89, 3052.2, 320.125);
|
||||||
|
/* 12:02 */waypoints[80].type = "stand";
|
||||||
|
/* 12:02 */waypoints[80].childCount = 5;
|
||||||
|
/* 12:02 */waypoints[80].children[0] = 79;
|
||||||
|
/* 12:02 */waypoints[80].children[1] = 67;
|
||||||
|
/* 12:02 */waypoints[80].children[2] = 81;
|
||||||
|
/* 12:02 */waypoints[80].children[3] = 69;
|
||||||
|
/* 12:02 */waypoints[80].children[4] = 70;
|
||||||
|
/* 12:02 */waypoints[81] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[81].origin =(3378.55, 2833.29, 320.125);
|
||||||
|
/* 12:02 */waypoints[81].type = "stand";
|
||||||
|
/* 12:02 */waypoints[81].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[81].children[0] = 80;
|
||||||
|
/* 12:02 */waypoints[81].children[1] = 65;
|
||||||
|
/* 12:02 */waypoints[81].children[2] = 82;
|
||||||
|
/* 12:02 */waypoints[82] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[82].origin =(3320.05, 2767.74, 320.125);
|
||||||
|
/* 12:02 */waypoints[82].type = "stand";
|
||||||
|
/* 12:02 */waypoints[82].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[82].children[0] = 81;
|
||||||
|
/* 12:02 */waypoints[82].children[1] = 83;
|
||||||
|
/* 12:02 */waypoints[83] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[83].origin =(3541.43, 2527.85, 321.125);
|
||||||
|
/* 12:02 */waypoints[83].type = "stand";
|
||||||
|
/* 12:02 */waypoints[83].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[83].children[0] = 82;
|
||||||
|
/* 12:02 */waypoints[83].children[1] = 84;
|
||||||
|
/* 12:02 */waypoints[84] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[84].origin =(3825.3, 2437.96, 320.125);
|
||||||
|
/* 12:02 */waypoints[84].type = "stand";
|
||||||
|
/* 12:02 */waypoints[84].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[84].children[0] = 83;
|
||||||
|
/* 12:02 */waypoints[84].children[1] = 85;
|
||||||
|
/* 12:02 */waypoints[84].children[2] = 88;
|
||||||
|
/* 12:02 */waypoints[85] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[85].origin =(3932.94, 2259.87, 321.125);
|
||||||
|
/* 12:02 */waypoints[85].type = "stand";
|
||||||
|
/* 12:02 */waypoints[85].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[85].children[0] = 84;
|
||||||
|
/* 12:02 */waypoints[85].children[1] = 86;
|
||||||
|
/* 12:02 */waypoints[85].children[2] = 127;
|
||||||
|
/* 12:02 */waypoints[86] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[86].origin =(4227.99, 2210.26, 321.125);
|
||||||
|
/* 12:02 */waypoints[86].type = "stand";
|
||||||
|
/* 12:02 */waypoints[86].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[86].children[0] = 85;
|
||||||
|
/* 12:02 */waypoints[86].children[1] = 87;
|
||||||
|
/* 12:02 */waypoints[86].children[2] = 89;
|
||||||
|
/* 12:02 */waypoints[86].children[3] = 90;
|
||||||
|
/* 12:02 */waypoints[87] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[87].origin =(4343.16, 2518.54, 320.125);
|
||||||
|
/* 12:02 */waypoints[87].type = "stand";
|
||||||
|
/* 12:02 */waypoints[87].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[87].children[0] = 86;
|
||||||
|
/* 12:02 */waypoints[87].children[1] = 88;
|
||||||
|
/* 12:02 */waypoints[87].children[2] = 76;
|
||||||
|
/* 12:02 */waypoints[88] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[88].origin =(4057.69, 2530.17, 320.125);
|
||||||
|
/* 12:02 */waypoints[88].type = "stand";
|
||||||
|
/* 12:02 */waypoints[88].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[88].children[0] = 87;
|
||||||
|
/* 12:02 */waypoints[88].children[1] = 84;
|
||||||
|
/* 12:02 */waypoints[89] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[89].origin =(4505.63, 2385.06, 320.125);
|
||||||
|
/* 12:02 */waypoints[89].type = "stand";
|
||||||
|
/* 12:02 */waypoints[89].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[89].children[0] = 86;
|
||||||
|
/* 12:02 */waypoints[89].children[1] = 90;
|
||||||
|
/* 12:02 */waypoints[89].children[2] = 91;
|
||||||
|
/* 12:02 */waypoints[90] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[90].origin =(4520.95, 2068.69, 320.125);
|
||||||
|
/* 12:02 */waypoints[90].type = "stand";
|
||||||
|
/* 12:02 */waypoints[90].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[90].children[0] = 89;
|
||||||
|
/* 12:02 */waypoints[90].children[1] = 86;
|
||||||
|
/* 12:02 */waypoints[90].children[2] = 91;
|
||||||
|
/* 12:02 */waypoints[91] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[91].origin =(4726.54, 2241.67, 320.125);
|
||||||
|
/* 12:02 */waypoints[91].type = "stand";
|
||||||
|
/* 12:02 */waypoints[91].childCount = 6;
|
||||||
|
/* 12:02 */waypoints[91].children[0] = 90;
|
||||||
|
/* 12:02 */waypoints[91].children[1] = 92;
|
||||||
|
/* 12:02 */waypoints[91].children[2] = 89;
|
||||||
|
/* 12:02 */waypoints[91].children[3] = 96;
|
||||||
|
/* 12:02 */waypoints[91].children[4] = 97;
|
||||||
|
/* 12:02 */waypoints[91].children[5] = 101;
|
||||||
|
/* 12:02 */waypoints[92] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[92].origin =(4965.08, 2580.24, 320.125);
|
||||||
|
/* 12:02 */waypoints[92].type = "stand";
|
||||||
|
/* 12:02 */waypoints[92].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[92].children[0] = 91;
|
||||||
|
/* 12:02 */waypoints[92].children[1] = 93;
|
||||||
|
/* 12:02 */waypoints[92].children[2] = 77;
|
||||||
|
/* 12:02 */waypoints[93] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[93].origin =(5367.43, 2549.45, 320.125);
|
||||||
|
/* 12:02 */waypoints[93].type = "stand";
|
||||||
|
/* 12:02 */waypoints[93].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[93].children[0] = 92;
|
||||||
|
/* 12:02 */waypoints[93].children[1] = 94;
|
||||||
|
/* 12:02 */waypoints[93].children[2] = 98;
|
||||||
|
/* 12:02 */waypoints[93].children[3] = 100;
|
||||||
|
/* 12:02 */waypoints[94] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[94].origin =(5324.25, 2787.91, 320.125);
|
||||||
|
/* 12:02 */waypoints[94].type = "stand";
|
||||||
|
/* 12:02 */waypoints[94].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[94].children[0] = 93;
|
||||||
|
/* 12:02 */waypoints[94].children[1] = 95;
|
||||||
|
/* 12:02 */waypoints[95] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[95].origin =(5041.49, 3082.4, 320.125);
|
||||||
|
/* 12:02 */waypoints[95].type = "stand";
|
||||||
|
/* 12:02 */waypoints[95].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[95].children[0] = 94;
|
||||||
|
/* 12:02 */waypoints[95].children[1] = 75;
|
||||||
|
/* 12:02 */waypoints[96] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[96].origin =(4638.21, 2098.58, 320.125);
|
||||||
|
/* 12:02 */waypoints[96].type = "stand";
|
||||||
|
/* 12:02 */waypoints[96].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[96].children[0] = 91;
|
||||||
|
/* 12:02 */waypoints[97] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[97].origin =(4667.6, 2403.72, 320.125);
|
||||||
|
/* 12:02 */waypoints[97].type = "grenade";
|
||||||
|
/* 12:02 */waypoints[97].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[97].children[0] = 91;
|
||||||
|
/* 12:02 */waypoints[97].angles = (2.31812, -37.9483, 0);
|
||||||
|
/* 12:02 */waypoints[98] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[98].origin =(5487.9, 2552.3, 320.125);
|
||||||
|
/* 12:02 */waypoints[98].type = "stand";
|
||||||
|
/* 12:02 */waypoints[98].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[98].children[0] = 93;
|
||||||
|
/* 12:02 */waypoints[98].children[1] = 99;
|
||||||
|
/* 12:02 */waypoints[99] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[99].origin =(5441.42, 2685.1, 320.125);
|
||||||
|
/* 12:02 */waypoints[99].type = "grenade";
|
||||||
|
/* 12:02 */waypoints[99].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[99].children[0] = 98;
|
||||||
|
/* 12:02 */waypoints[99].angles = (-2.02698, -94.0994, 0);
|
||||||
|
/* 12:02 */waypoints[100] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[100].origin =(5384, 1969.92, 64.125);
|
||||||
|
/* 12:02 */waypoints[100].type = "stand";
|
||||||
|
/* 12:02 */waypoints[100].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[100].children[0] = 93;
|
||||||
|
/* 12:02 */waypoints[100].children[1] = 106;
|
||||||
|
/* 12:02 */waypoints[100].children[2] = 115;
|
||||||
|
/* 12:02 */waypoints[100].children[3] = 129;
|
||||||
|
/* 12:02 */waypoints[101] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[101].origin =(5123.26, 1861.43, 64.125);
|
||||||
|
/* 12:02 */waypoints[101].type = "stand";
|
||||||
|
/* 12:02 */waypoints[101].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[101].children[0] = 91;
|
||||||
|
/* 12:02 */waypoints[101].children[1] = 102;
|
||||||
|
/* 12:02 */waypoints[101].children[2] = 129;
|
||||||
|
/* 12:02 */waypoints[102] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[102].origin =(4982.86, 1731.29, 64.125);
|
||||||
|
/* 12:02 */waypoints[102].type = "stand";
|
||||||
|
/* 12:02 */waypoints[102].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[102].children[0] = 101;
|
||||||
|
/* 12:02 */waypoints[102].children[1] = 103;
|
||||||
|
/* 12:02 */waypoints[102].children[2] = 104;
|
||||||
|
/* 12:02 */waypoints[102].children[3] = 106;
|
||||||
|
/* 12:02 */waypoints[103] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[103].origin =(4769.82, 1925.81, 64.125);
|
||||||
|
/* 12:02 */waypoints[103].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[103].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[103].children[0] = 102;
|
||||||
|
/* 12:02 */waypoints[103].angles = (2.10388, -25.77, 0);
|
||||||
|
/* 12:02 */waypoints[104] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[104].origin =(4989.87, 1363.38, 64.125);
|
||||||
|
/* 12:02 */waypoints[104].type = "stand";
|
||||||
|
/* 12:02 */waypoints[104].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[104].children[0] = 102;
|
||||||
|
/* 12:02 */waypoints[104].children[1] = 105;
|
||||||
|
/* 12:02 */waypoints[105] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[105].origin =(5380.08, 1368.92, 64.125);
|
||||||
|
/* 12:02 */waypoints[105].type = "stand";
|
||||||
|
/* 12:02 */waypoints[105].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[105].children[0] = 104;
|
||||||
|
/* 12:02 */waypoints[105].children[1] = 106;
|
||||||
|
/* 12:02 */waypoints[105].children[2] = 113;
|
||||||
|
/* 12:02 */waypoints[105].children[3] = 112;
|
||||||
|
/* 12:02 */waypoints[106] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[106].origin =(5392.82, 1736.1, 64.125);
|
||||||
|
/* 12:02 */waypoints[106].type = "stand";
|
||||||
|
/* 12:02 */waypoints[106].childCount = 5;
|
||||||
|
/* 12:02 */waypoints[106].children[0] = 105;
|
||||||
|
/* 12:02 */waypoints[106].children[1] = 102;
|
||||||
|
/* 12:02 */waypoints[106].children[2] = 100;
|
||||||
|
/* 12:02 */waypoints[106].children[3] = 107;
|
||||||
|
/* 12:02 */waypoints[106].children[4] = 112;
|
||||||
|
/* 12:02 */waypoints[107] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[107].origin =(6274.69, 1763.4, 64.125);
|
||||||
|
/* 12:02 */waypoints[107].type = "stand";
|
||||||
|
/* 12:02 */waypoints[107].childCount = 5;
|
||||||
|
/* 12:02 */waypoints[107].children[0] = 106;
|
||||||
|
/* 12:02 */waypoints[107].children[1] = 108;
|
||||||
|
/* 12:02 */waypoints[107].children[2] = 115;
|
||||||
|
/* 12:02 */waypoints[107].children[3] = 116;
|
||||||
|
/* 12:02 */waypoints[107].children[4] = 118;
|
||||||
|
/* 12:02 */waypoints[108] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[108].origin =(6486.18, 1579.78, 64.625);
|
||||||
|
/* 12:02 */waypoints[108].type = "stand";
|
||||||
|
/* 12:02 */waypoints[108].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[108].children[0] = 107;
|
||||||
|
/* 12:02 */waypoints[108].children[1] = 109;
|
||||||
|
/* 12:02 */waypoints[108].children[2] = 111;
|
||||||
|
/* 12:02 */waypoints[109] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[109].origin =(6370.36, 749.677, 64.125);
|
||||||
|
/* 12:02 */waypoints[109].type = "stand";
|
||||||
|
/* 12:02 */waypoints[109].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[109].children[0] = 108;
|
||||||
|
/* 12:02 */waypoints[109].children[1] = 110;
|
||||||
|
/* 12:02 */waypoints[110] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[110].origin =(6979.12, 628.895, 64.125);
|
||||||
|
/* 12:02 */waypoints[110].type = "stand";
|
||||||
|
/* 12:02 */waypoints[110].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[110].children[0] = 109;
|
||||||
|
/* 12:02 */waypoints[111] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[111].origin =(6141.75, 1453.18, 64.125);
|
||||||
|
/* 12:02 */waypoints[111].type = "stand";
|
||||||
|
/* 12:02 */waypoints[111].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[111].children[0] = 108;
|
||||||
|
/* 12:02 */waypoints[111].children[1] = 112;
|
||||||
|
/* 12:02 */waypoints[111].children[2] = 114;
|
||||||
|
/* 12:02 */waypoints[112] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[112].origin =(5491.11, 1453.15, 64.125);
|
||||||
|
/* 12:02 */waypoints[112].type = "stand";
|
||||||
|
/* 12:02 */waypoints[112].childCount = 4;
|
||||||
|
/* 12:02 */waypoints[112].children[0] = 111;
|
||||||
|
/* 12:02 */waypoints[112].children[1] = 113;
|
||||||
|
/* 12:02 */waypoints[112].children[2] = 105;
|
||||||
|
/* 12:02 */waypoints[112].children[3] = 106;
|
||||||
|
/* 12:02 */waypoints[113] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[113].origin =(5485.67, 1314.57, 64.125);
|
||||||
|
/* 12:02 */waypoints[113].type = "stand";
|
||||||
|
/* 12:02 */waypoints[113].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[113].children[0] = 112;
|
||||||
|
/* 12:02 */waypoints[113].children[1] = 114;
|
||||||
|
/* 12:02 */waypoints[113].children[2] = 105;
|
||||||
|
/* 12:02 */waypoints[114] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[114].origin =(6185.5, 1317.08, 64.125);
|
||||||
|
/* 12:02 */waypoints[114].type = "stand";
|
||||||
|
/* 12:02 */waypoints[114].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[114].children[0] = 113;
|
||||||
|
/* 12:02 */waypoints[114].children[1] = 111;
|
||||||
|
/* 12:02 */waypoints[115] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[115].origin =(5986.76, 1892.21, 64.125);
|
||||||
|
/* 12:02 */waypoints[115].type = "stand";
|
||||||
|
/* 12:02 */waypoints[115].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[115].children[0] = 100;
|
||||||
|
/* 12:02 */waypoints[115].children[1] = 107;
|
||||||
|
/* 12:02 */waypoints[116] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[116].origin =(6392.84, 1773.24, 64.125);
|
||||||
|
/* 12:02 */waypoints[116].type = "stand";
|
||||||
|
/* 12:02 */waypoints[116].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[116].children[0] = 107;
|
||||||
|
/* 12:02 */waypoints[116].children[1] = 117;
|
||||||
|
/* 12:02 */waypoints[117] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[117].origin =(6413.01, 2006.02, 64.125);
|
||||||
|
/* 12:02 */waypoints[117].type = "stand";
|
||||||
|
/* 12:02 */waypoints[117].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[117].children[0] = 116;
|
||||||
|
/* 12:02 */waypoints[117].children[1] = 118;
|
||||||
|
/* 12:02 */waypoints[117].children[2] = 119;
|
||||||
|
/* 12:02 */waypoints[118] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[118].origin =(6134.63, 2098.79, 64.125);
|
||||||
|
/* 12:02 */waypoints[118].type = "stand";
|
||||||
|
/* 12:02 */waypoints[118].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[118].children[0] = 117;
|
||||||
|
/* 12:02 */waypoints[118].children[1] = 107;
|
||||||
|
/* 12:02 */waypoints[119] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[119].origin =(6577.69, 2079.73, 64.125);
|
||||||
|
/* 12:02 */waypoints[119].type = "stand";
|
||||||
|
/* 12:02 */waypoints[119].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[119].children[0] = 117;
|
||||||
|
/* 12:02 */waypoints[120] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[120].origin =(2965.13, 3493.2, 320.125);
|
||||||
|
/* 12:02 */waypoints[120].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[120].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[120].children[0] = 59;
|
||||||
|
/* 12:02 */waypoints[120].angles = (21.0333, 127.731, 0);
|
||||||
|
/* 12:02 */waypoints[121] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[121].origin =(2965.13, 4015.88, 320.125);
|
||||||
|
/* 12:02 */waypoints[121].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[121].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[121].children[0] = 58;
|
||||||
|
/* 12:02 */waypoints[121].angles = (17.1936, -132.475, 0);
|
||||||
|
/* 12:02 */waypoints[122] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[122].origin =(2848.59, 4437.13, 320.125);
|
||||||
|
/* 12:02 */waypoints[122].type = "crouch";
|
||||||
|
/* 12:02 */waypoints[122].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[122].children[0] = 44;
|
||||||
|
/* 12:02 */waypoints[122].angles = (16.908, -111.26, 0);
|
||||||
|
/* 12:02 */waypoints[123] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[123].origin =(2272.22, 3304.73, 64.125);
|
||||||
|
/* 12:02 */waypoints[123].type = "stand";
|
||||||
|
/* 12:02 */waypoints[123].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[123].children[0] = 26;
|
||||||
|
/* 12:02 */waypoints[123].children[1] = 124;
|
||||||
|
/* 12:02 */waypoints[124] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[124].origin =(2646.6, 3294.76, 64.125);
|
||||||
|
/* 12:02 */waypoints[124].type = "stand";
|
||||||
|
/* 12:02 */waypoints[124].childCount = 2;
|
||||||
|
/* 12:02 */waypoints[124].children[0] = 123;
|
||||||
|
/* 12:02 */waypoints[124].children[1] = 125;
|
||||||
|
/* 12:02 */waypoints[125] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[125].origin =(2645.66, 3431.71, 64.125);
|
||||||
|
/* 12:02 */waypoints[125].type = "stand";
|
||||||
|
/* 12:02 */waypoints[125].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[125].children[0] = 124;
|
||||||
|
/* 12:02 */waypoints[125].children[1] = 11;
|
||||||
|
/* 12:02 */waypoints[125].children[2] = 26;
|
||||||
|
/* 12:02 */waypoints[126] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[126].origin =(4194.5, 3406.27, 320.125);
|
||||||
|
/* 12:02 */waypoints[126].type = "stand";
|
||||||
|
/* 12:02 */waypoints[126].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[126].children[0] = 73;
|
||||||
|
/* 12:02 */waypoints[127] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[127].origin =(3858.35, 2150.65, 321.125);
|
||||||
|
/* 12:02 */waypoints[127].type = "stand";
|
||||||
|
/* 12:02 */waypoints[127].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[127].children[0] = 85;
|
||||||
|
/* 12:02 */waypoints[128] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[128].origin =(5093.63, 2318.58, 176.125);
|
||||||
|
/* 12:02 */waypoints[128].type = "stand";
|
||||||
|
/* 12:02 */waypoints[128].childCount = 1;
|
||||||
|
/* 12:02 */waypoints[128].children[0] = 129;
|
||||||
|
/* 12:02 */waypoints[129] = spawnstruct();
|
||||||
|
/* 12:02 */waypoints[129].origin =(5255.25, 1923.58, 64.125);
|
||||||
|
/* 12:02 */waypoints[129].type = "stand";
|
||||||
|
/* 12:02 */waypoints[129].childCount = 3;
|
||||||
|
/* 12:02 */waypoints[129].children[0] = 128;
|
||||||
|
/* 12:02 */waypoints[129].children[1] = 101;
|
||||||
|
/* 12:02 */waypoints[129].children[2] = 100;
|
||||||
|
return waypoints;
|
||||||
|
}
|
4
mods/bots/maps/mp/bots/waypoints/arcadia.gsc
Normal file
4
mods/bots/maps/mp/bots/waypoints/arcadia.gsc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Arcadia()
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
1453
mods/bots/maps/mp/bots/waypoints/bailout.gsc
Normal file
1453
mods/bots/maps/mp/bots/waypoints/bailout.gsc
Normal file
File diff suppressed because it is too large
Load Diff
1813
mods/bots/maps/mp/bots/waypoints/bloc.gsc
Normal file
1813
mods/bots/maps/mp/bots/waypoints/bloc.gsc
Normal file
File diff suppressed because it is too large
Load Diff
1091
mods/bots/maps/mp/bots/waypoints/bog.gsc
Normal file
1091
mods/bots/maps/mp/bots/waypoints/bog.gsc
Normal file
File diff suppressed because it is too large
Load Diff
4
mods/bots/maps/mp/bots/waypoints/boneyard.gsc
Normal file
4
mods/bots/maps/mp/bots/waypoints/boneyard.gsc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Boneyard()
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
4
mods/bots/maps/mp/bots/waypoints/bridge.gsc
Normal file
4
mods/bots/maps/mp/bots/waypoints/bridge.gsc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Bridge()
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
513
mods/bots/maps/mp/bots/waypoints/burgertown.gsc
Normal file
513
mods/bots/maps/mp/bots/waypoints/burgertown.gsc
Normal file
@ -0,0 +1,513 @@
|
|||||||
|
BurgerTown()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
waypoints[0] = spawnstruct();
|
||||||
|
waypoints[0].origin =(4077, -5135, 2302.13);
|
||||||
|
waypoints[0].type = "stand";
|
||||||
|
waypoints[0].childCount = 3;
|
||||||
|
waypoints[0].children[0] = 1;
|
||||||
|
waypoints[0].children[1] = 2;
|
||||||
|
waypoints[0].children[2] = 3;
|
||||||
|
waypoints[1] = spawnstruct();
|
||||||
|
waypoints[1].origin =(4077.09, -4835.53, 2306.97);
|
||||||
|
waypoints[1].type = "stand";
|
||||||
|
waypoints[1].childCount = 1;
|
||||||
|
waypoints[1].children[0] = 0;
|
||||||
|
waypoints[2] = spawnstruct();
|
||||||
|
waypoints[2].origin =(4080.2, -5651.82, 2305.13);
|
||||||
|
waypoints[2].type = "stand";
|
||||||
|
waypoints[2].childCount = 1;
|
||||||
|
waypoints[2].children[0] = 0;
|
||||||
|
waypoints[3] = spawnstruct();
|
||||||
|
waypoints[3].origin =(3741.93, -5131.55, 2302.13);
|
||||||
|
waypoints[3].type = "stand";
|
||||||
|
waypoints[3].childCount = 2;
|
||||||
|
waypoints[3].children[0] = 0;
|
||||||
|
waypoints[3].children[1] = 4;
|
||||||
|
waypoints[4] = spawnstruct();
|
||||||
|
waypoints[4].origin =(3712.77, -4852.48, 2306.48);
|
||||||
|
waypoints[4].type = "stand";
|
||||||
|
waypoints[4].childCount = 3;
|
||||||
|
waypoints[4].children[0] = 3;
|
||||||
|
waypoints[4].children[1] = 5;
|
||||||
|
waypoints[4].children[2] = 6;
|
||||||
|
waypoints[5] = spawnstruct();
|
||||||
|
waypoints[5].origin =(3149.95, -4853.29, 2306.68);
|
||||||
|
waypoints[5].type = "stand";
|
||||||
|
waypoints[5].childCount = 4;
|
||||||
|
waypoints[5].children[0] = 4;
|
||||||
|
waypoints[5].children[1] = 6;
|
||||||
|
waypoints[5].children[2] = 7;
|
||||||
|
waypoints[5].children[3] = 8;
|
||||||
|
waypoints[6] = spawnstruct();
|
||||||
|
waypoints[6].origin =(3389.91, -4842.44, 2306.77);
|
||||||
|
waypoints[6].type = "stand";
|
||||||
|
waypoints[6].childCount = 2;
|
||||||
|
waypoints[6].children[0] = 4;
|
||||||
|
waypoints[6].children[1] = 5;
|
||||||
|
waypoints[7] = spawnstruct();
|
||||||
|
waypoints[7].origin =(2572.97, -4883.92, 2302.13);
|
||||||
|
waypoints[7].type = "stand";
|
||||||
|
waypoints[7].childCount = 3;
|
||||||
|
waypoints[7].children[0] = 5;
|
||||||
|
waypoints[7].children[1] = 8;
|
||||||
|
waypoints[7].children[2] = 10;
|
||||||
|
waypoints[8] = spawnstruct();
|
||||||
|
waypoints[8].origin =(2788.82, -4868.69, 2302.13);
|
||||||
|
waypoints[8].type = "stand";
|
||||||
|
waypoints[8].childCount = 3;
|
||||||
|
waypoints[8].children[0] = 5;
|
||||||
|
waypoints[8].children[1] = 7;
|
||||||
|
waypoints[8].children[2] = 9;
|
||||||
|
waypoints[9] = spawnstruct();
|
||||||
|
waypoints[9].origin =(2791.79, -4407.58, 2303.39);
|
||||||
|
waypoints[9].type = "stand";
|
||||||
|
waypoints[9].childCount = 2;
|
||||||
|
waypoints[9].children[0] = 8;
|
||||||
|
waypoints[9].children[1] = 11;
|
||||||
|
waypoints[10] = spawnstruct();
|
||||||
|
waypoints[10].origin =(2201.57, -4870.65, 2305.36);
|
||||||
|
waypoints[10].type = "stand";
|
||||||
|
waypoints[10].childCount = 2;
|
||||||
|
waypoints[10].children[0] = 7;
|
||||||
|
waypoints[10].children[1] = 33;
|
||||||
|
waypoints[11] = spawnstruct();
|
||||||
|
waypoints[11].origin =(2764.63, -4095.02, 2302.89);
|
||||||
|
waypoints[11].type = "stand";
|
||||||
|
waypoints[11].childCount = 2;
|
||||||
|
waypoints[11].children[0] = 9;
|
||||||
|
waypoints[11].children[1] = 12;
|
||||||
|
waypoints[12] = spawnstruct();
|
||||||
|
waypoints[12].origin =(2739.01, -3826.65, 2305.31);
|
||||||
|
waypoints[12].type = "stand";
|
||||||
|
waypoints[12].childCount = 2;
|
||||||
|
waypoints[12].children[0] = 11;
|
||||||
|
waypoints[12].children[1] = 13;
|
||||||
|
waypoints[13] = spawnstruct();
|
||||||
|
waypoints[13].origin =(2740.91, -3384.87, 2306.44);
|
||||||
|
waypoints[13].type = "stand";
|
||||||
|
waypoints[13].childCount = 2;
|
||||||
|
waypoints[13].children[0] = 12;
|
||||||
|
waypoints[13].children[1] = 14;
|
||||||
|
waypoints[14] = spawnstruct();
|
||||||
|
waypoints[14].origin =(2294.37, -3285.8, 2309.63);
|
||||||
|
waypoints[14].type = "stand";
|
||||||
|
waypoints[14].childCount = 2;
|
||||||
|
waypoints[14].children[0] = 13;
|
||||||
|
waypoints[14].children[1] = 15;
|
||||||
|
waypoints[15] = spawnstruct();
|
||||||
|
waypoints[15].origin =(1791.95, -3254.42, 2298.94);
|
||||||
|
waypoints[15].type = "stand";
|
||||||
|
waypoints[15].childCount = 2;
|
||||||
|
waypoints[15].children[0] = 14;
|
||||||
|
waypoints[15].children[1] = 16;
|
||||||
|
waypoints[16] = spawnstruct();
|
||||||
|
waypoints[16].origin =(1778.22, -2900.07, 2302.48);
|
||||||
|
waypoints[16].type = "stand";
|
||||||
|
waypoints[16].childCount = 2;
|
||||||
|
waypoints[16].children[0] = 15;
|
||||||
|
waypoints[16].children[1] = 17;
|
||||||
|
waypoints[17] = spawnstruct();
|
||||||
|
waypoints[17].origin =(1815.74, -2419.29, 2316.55);
|
||||||
|
waypoints[17].type = "stand";
|
||||||
|
waypoints[17].childCount = 2;
|
||||||
|
waypoints[17].children[0] = 16;
|
||||||
|
waypoints[17].children[1] = 18;
|
||||||
|
waypoints[18] = spawnstruct();
|
||||||
|
waypoints[18].origin =(1347.06, -2381.24, 2318.13);
|
||||||
|
waypoints[18].type = "stand";
|
||||||
|
waypoints[18].childCount = 2;
|
||||||
|
waypoints[18].children[0] = 17;
|
||||||
|
waypoints[18].children[1] = 20;
|
||||||
|
waypoints[19] = spawnstruct();
|
||||||
|
waypoints[19].origin =(737.58, -2341.02, 2317.16);
|
||||||
|
waypoints[19].type = "stand";
|
||||||
|
waypoints[19].childCount = 2;
|
||||||
|
waypoints[19].children[0] = 20;
|
||||||
|
waypoints[19].children[1] = 22;
|
||||||
|
waypoints[20] = spawnstruct();
|
||||||
|
waypoints[20].origin =(1030.13, -2350.33, 2316.82);
|
||||||
|
waypoints[20].type = "stand";
|
||||||
|
waypoints[20].childCount = 2;
|
||||||
|
waypoints[20].children[0] = 18;
|
||||||
|
waypoints[20].children[1] = 19;
|
||||||
|
waypoints[21] = spawnstruct();
|
||||||
|
waypoints[21].origin =(60.1015, -2271.14, 2316.92);
|
||||||
|
waypoints[21].type = "stand";
|
||||||
|
waypoints[21].childCount = 2;
|
||||||
|
waypoints[21].children[0] = 22;
|
||||||
|
waypoints[21].children[1] = 23;
|
||||||
|
waypoints[22] = spawnstruct();
|
||||||
|
waypoints[22].origin =(320.762, -2305.78, 2316.66);
|
||||||
|
waypoints[22].type = "stand";
|
||||||
|
waypoints[22].childCount = 2;
|
||||||
|
waypoints[22].children[0] = 21;
|
||||||
|
waypoints[22].children[1] = 19;
|
||||||
|
waypoints[23] = spawnstruct();
|
||||||
|
waypoints[23].origin =(-317.331, -2252.07, 2321.51);
|
||||||
|
waypoints[23].type = "stand";
|
||||||
|
waypoints[23].childCount = 3;
|
||||||
|
waypoints[23].children[0] = 21;
|
||||||
|
waypoints[23].children[1] = 24;
|
||||||
|
waypoints[23].children[2] = 67;
|
||||||
|
waypoints[24] = spawnstruct();
|
||||||
|
waypoints[24].origin =(-482.292, -2496.65, 2315.87);
|
||||||
|
waypoints[24].type = "stand";
|
||||||
|
waypoints[24].childCount = 2;
|
||||||
|
waypoints[24].children[0] = 23;
|
||||||
|
waypoints[24].children[1] = 25;
|
||||||
|
waypoints[25] = spawnstruct();
|
||||||
|
waypoints[25].origin =(-560.063, -2895.2, 2310.07);
|
||||||
|
waypoints[25].type = "stand";
|
||||||
|
waypoints[25].childCount = 2;
|
||||||
|
waypoints[25].children[0] = 24;
|
||||||
|
waypoints[25].children[1] = 27;
|
||||||
|
waypoints[26] = spawnstruct();
|
||||||
|
waypoints[26].origin =(-657.988, -3482.95, 2305.91);
|
||||||
|
waypoints[26].type = "stand";
|
||||||
|
waypoints[26].childCount = 2;
|
||||||
|
waypoints[26].children[0] = 27;
|
||||||
|
waypoints[26].children[1] = 28;
|
||||||
|
waypoints[27] = spawnstruct();
|
||||||
|
waypoints[27].origin =(-573.651, -2949.85, 2310.13);
|
||||||
|
waypoints[27].type = "stand";
|
||||||
|
waypoints[27].childCount = 2;
|
||||||
|
waypoints[27].children[0] = 26;
|
||||||
|
waypoints[27].children[1] = 25;
|
||||||
|
waypoints[28] = spawnstruct();
|
||||||
|
waypoints[28].origin =(-689.645, -3843.16, 2308.39);
|
||||||
|
waypoints[28].type = "stand";
|
||||||
|
waypoints[28].childCount = 4;
|
||||||
|
waypoints[28].children[0] = 26;
|
||||||
|
waypoints[28].children[1] = 29;
|
||||||
|
waypoints[28].children[2] = 30;
|
||||||
|
waypoints[28].children[3] = 31;
|
||||||
|
waypoints[29] = spawnstruct();
|
||||||
|
waypoints[29].origin =(-348.034, -3918.58, 2302.13);
|
||||||
|
waypoints[29].type = "stand";
|
||||||
|
waypoints[29].childCount = 2;
|
||||||
|
waypoints[29].children[0] = 28;
|
||||||
|
waypoints[29].children[1] = 32;
|
||||||
|
waypoints[30] = spawnstruct();
|
||||||
|
waypoints[30].origin =(-807.779, -4399.04, 2307.82);
|
||||||
|
waypoints[30].type = "stand";
|
||||||
|
waypoints[30].childCount = 4;
|
||||||
|
waypoints[30].children[0] = 28;
|
||||||
|
waypoints[30].children[1] = 31;
|
||||||
|
waypoints[30].children[2] = 40;
|
||||||
|
waypoints[30].children[3] = 53;
|
||||||
|
waypoints[31] = spawnstruct();
|
||||||
|
waypoints[31].origin =(-720.391, -4165.38, 2311.37);
|
||||||
|
waypoints[31].type = "stand";
|
||||||
|
waypoints[31].childCount = 2;
|
||||||
|
waypoints[31].children[0] = 30;
|
||||||
|
waypoints[31].children[1] = 28;
|
||||||
|
waypoints[32] = spawnstruct();
|
||||||
|
waypoints[32].origin =(75.1469, -4015.25, 2302.65);
|
||||||
|
waypoints[32].type = "stand";
|
||||||
|
waypoints[32].childCount = 2;
|
||||||
|
waypoints[32].children[0] = 29;
|
||||||
|
waypoints[32].children[1] = 39;
|
||||||
|
waypoints[33] = spawnstruct();
|
||||||
|
waypoints[33].origin =(1906.37, -5048.66, 2304.35);
|
||||||
|
waypoints[33].type = "stand";
|
||||||
|
waypoints[33].childCount = 2;
|
||||||
|
waypoints[33].children[0] = 10;
|
||||||
|
waypoints[33].children[1] = 34;
|
||||||
|
waypoints[34] = spawnstruct();
|
||||||
|
waypoints[34].origin =(1575.83, -5203.74, 2310.13);
|
||||||
|
waypoints[34].type = "stand";
|
||||||
|
waypoints[34].childCount = 3;
|
||||||
|
waypoints[34].children[0] = 33;
|
||||||
|
waypoints[34].children[1] = 35;
|
||||||
|
waypoints[34].children[2] = 65;
|
||||||
|
waypoints[35] = spawnstruct();
|
||||||
|
waypoints[35].origin =(1505.81, -4922.07, 2310.13);
|
||||||
|
waypoints[35].type = "stand";
|
||||||
|
waypoints[35].childCount = 2;
|
||||||
|
waypoints[35].children[0] = 34;
|
||||||
|
waypoints[35].children[1] = 36;
|
||||||
|
waypoints[36] = spawnstruct();
|
||||||
|
waypoints[36].origin =(1207.9, -4589.25, 2308.66);
|
||||||
|
waypoints[36].type = "stand";
|
||||||
|
waypoints[36].childCount = 2;
|
||||||
|
waypoints[36].children[0] = 35;
|
||||||
|
waypoints[36].children[1] = 37;
|
||||||
|
waypoints[37] = spawnstruct();
|
||||||
|
waypoints[37].origin =(1126.37, -4172.06, 2303.41);
|
||||||
|
waypoints[37].type = "stand";
|
||||||
|
waypoints[37].childCount = 2;
|
||||||
|
waypoints[37].children[0] = 36;
|
||||||
|
waypoints[37].children[1] = 38;
|
||||||
|
waypoints[38] = spawnstruct();
|
||||||
|
waypoints[38].origin =(731.775, -4145.27, 2299.46);
|
||||||
|
waypoints[38].type = "stand";
|
||||||
|
waypoints[38].childCount = 2;
|
||||||
|
waypoints[38].children[0] = 37;
|
||||||
|
waypoints[38].children[1] = 39;
|
||||||
|
waypoints[39] = spawnstruct();
|
||||||
|
waypoints[39].origin =(337.845, -4071.67, 2300.13);
|
||||||
|
waypoints[39].type = "stand";
|
||||||
|
waypoints[39].childCount = 2;
|
||||||
|
waypoints[39].children[0] = 38;
|
||||||
|
waypoints[39].children[1] = 32;
|
||||||
|
waypoints[40] = spawnstruct();
|
||||||
|
waypoints[40].origin =(-1320.8, -4382.88, 2335.16);
|
||||||
|
waypoints[40].type = "stand";
|
||||||
|
waypoints[40].childCount = 2;
|
||||||
|
waypoints[40].children[0] = 30;
|
||||||
|
waypoints[40].children[1] = 41;
|
||||||
|
waypoints[41] = spawnstruct();
|
||||||
|
waypoints[41].origin =(-1860.67, -4402.55, 2353.32);
|
||||||
|
waypoints[41].type = "stand";
|
||||||
|
waypoints[41].childCount = 2;
|
||||||
|
waypoints[41].children[0] = 40;
|
||||||
|
waypoints[41].children[1] = 42;
|
||||||
|
waypoints[42] = spawnstruct();
|
||||||
|
waypoints[42].origin =(-2304.25, -4496.32, 2358.48);
|
||||||
|
waypoints[42].type = "stand";
|
||||||
|
waypoints[42].childCount = 2;
|
||||||
|
waypoints[42].children[0] = 41;
|
||||||
|
waypoints[42].children[1] = 43;
|
||||||
|
waypoints[43] = spawnstruct();
|
||||||
|
waypoints[43].origin =(-2723.69, -4484.48, 2358.04);
|
||||||
|
waypoints[43].type = "stand";
|
||||||
|
waypoints[43].childCount = 2;
|
||||||
|
waypoints[43].children[0] = 42;
|
||||||
|
waypoints[43].children[1] = 44;
|
||||||
|
waypoints[44] = spawnstruct();
|
||||||
|
waypoints[44].origin =(-2944.95, -4577.95, 2364.04);
|
||||||
|
waypoints[44].type = "stand";
|
||||||
|
waypoints[44].childCount = 2;
|
||||||
|
waypoints[44].children[0] = 43;
|
||||||
|
waypoints[44].children[1] = 45;
|
||||||
|
waypoints[45] = spawnstruct();
|
||||||
|
waypoints[45].origin =(-3248.88, -4807.36, 2322.96);
|
||||||
|
waypoints[45].type = "stand";
|
||||||
|
waypoints[45].childCount = 2;
|
||||||
|
waypoints[45].children[0] = 44;
|
||||||
|
waypoints[45].children[1] = 46;
|
||||||
|
waypoints[46] = spawnstruct();
|
||||||
|
waypoints[46].origin =(-3406.2, -5148.9, 2316.21);
|
||||||
|
waypoints[46].type = "stand";
|
||||||
|
waypoints[46].childCount = 3;
|
||||||
|
waypoints[46].children[0] = 45;
|
||||||
|
waypoints[46].children[1] = 47;
|
||||||
|
waypoints[46].children[2] = 81;
|
||||||
|
waypoints[47] = spawnstruct();
|
||||||
|
waypoints[47].origin =(-3494.95, -5651.33, 2318.13);
|
||||||
|
waypoints[47].type = "stand";
|
||||||
|
waypoints[47].childCount = 2;
|
||||||
|
waypoints[47].children[0] = 46;
|
||||||
|
waypoints[47].children[1] = 48;
|
||||||
|
waypoints[48] = spawnstruct();
|
||||||
|
waypoints[48].origin =(-3527.53, -5888.42, 2318.13);
|
||||||
|
waypoints[48].type = "stand";
|
||||||
|
waypoints[48].childCount = 2;
|
||||||
|
waypoints[48].children[0] = 47;
|
||||||
|
waypoints[48].children[1] = 49;
|
||||||
|
waypoints[49] = spawnstruct();
|
||||||
|
waypoints[49].origin =(-3564.89, -6297.74, 2310.13);
|
||||||
|
waypoints[49].type = "stand";
|
||||||
|
waypoints[49].childCount = 2;
|
||||||
|
waypoints[49].children[0] = 48;
|
||||||
|
waypoints[49].children[1] = 50;
|
||||||
|
waypoints[50] = spawnstruct();
|
||||||
|
waypoints[50].origin =(-3667.74, -6777.1, 2318.13);
|
||||||
|
waypoints[50].type = "stand";
|
||||||
|
waypoints[50].childCount = 2;
|
||||||
|
waypoints[50].children[0] = 49;
|
||||||
|
waypoints[50].children[1] = 51;
|
||||||
|
waypoints[51] = spawnstruct();
|
||||||
|
waypoints[51].origin =(-3528.76, -7046.57, 2310.09);
|
||||||
|
waypoints[51].type = "stand";
|
||||||
|
waypoints[51].childCount = 2;
|
||||||
|
waypoints[51].children[0] = 50;
|
||||||
|
waypoints[51].children[1] = 52;
|
||||||
|
waypoints[52] = spawnstruct();
|
||||||
|
waypoints[52].origin =(-3133.79, -6940.11, 2315.86);
|
||||||
|
waypoints[52].type = "stand";
|
||||||
|
waypoints[52].childCount = 1;
|
||||||
|
waypoints[52].children[0] = 51;
|
||||||
|
waypoints[53] = spawnstruct();
|
||||||
|
waypoints[53].origin =(-638.362, -4773.77, 2312.6);
|
||||||
|
waypoints[53].type = "stand";
|
||||||
|
waypoints[53].childCount = 2;
|
||||||
|
waypoints[53].children[0] = 30;
|
||||||
|
waypoints[53].children[1] = 55;
|
||||||
|
waypoints[54] = spawnstruct();
|
||||||
|
waypoints[54].origin =(-394.545, -5206.35, 2302.13);
|
||||||
|
waypoints[54].type = "stand";
|
||||||
|
waypoints[54].childCount = 3;
|
||||||
|
waypoints[54].children[0] = 55;
|
||||||
|
waypoints[54].children[1] = 57;
|
||||||
|
waypoints[54].children[2] = 58;
|
||||||
|
waypoints[55] = spawnstruct();
|
||||||
|
waypoints[55].origin =(-605.636, -4849.99, 2302.13);
|
||||||
|
waypoints[55].type = "stand";
|
||||||
|
waypoints[55].childCount = 2;
|
||||||
|
waypoints[55].children[0] = 53;
|
||||||
|
waypoints[55].children[1] = 54;
|
||||||
|
waypoints[56] = spawnstruct();
|
||||||
|
waypoints[56].origin =(-186.59, -5765.25, 2302.13);
|
||||||
|
waypoints[56].type = "stand";
|
||||||
|
waypoints[56].childCount = 2;
|
||||||
|
waypoints[56].children[0] = 57;
|
||||||
|
waypoints[56].children[1] = 59;
|
||||||
|
waypoints[57] = spawnstruct();
|
||||||
|
waypoints[57].origin =(-271.531, -5525.02, 2302.13);
|
||||||
|
waypoints[57].type = "stand";
|
||||||
|
waypoints[57].childCount = 2;
|
||||||
|
waypoints[57].children[0] = 56;
|
||||||
|
waypoints[57].children[1] = 54;
|
||||||
|
waypoints[58] = spawnstruct();
|
||||||
|
waypoints[58].origin =(-681.008, -5234.25, 2310.63);
|
||||||
|
waypoints[58].type = "stand";
|
||||||
|
waypoints[58].childCount = 1;
|
||||||
|
waypoints[58].children[0] = 54;
|
||||||
|
waypoints[59] = spawnstruct();
|
||||||
|
waypoints[59].origin =(25.2099, -5982.49, 2308.31);
|
||||||
|
waypoints[59].type = "stand";
|
||||||
|
waypoints[59].childCount = 3;
|
||||||
|
waypoints[59].children[0] = 56;
|
||||||
|
waypoints[59].children[1] = 60;
|
||||||
|
waypoints[59].children[2] = 61;
|
||||||
|
waypoints[60] = spawnstruct();
|
||||||
|
waypoints[60].origin =(576.814, -6015.27, 2299.74);
|
||||||
|
waypoints[60].type = "stand";
|
||||||
|
waypoints[60].childCount = 3;
|
||||||
|
waypoints[60].children[0] = 59;
|
||||||
|
waypoints[60].children[1] = 61;
|
||||||
|
waypoints[60].children[2] = 62;
|
||||||
|
waypoints[61] = spawnstruct();
|
||||||
|
waypoints[61].origin =(175.932, -6000.62, 2303.7);
|
||||||
|
waypoints[61].type = "stand";
|
||||||
|
waypoints[61].childCount = 2;
|
||||||
|
waypoints[61].children[0] = 59;
|
||||||
|
waypoints[61].children[1] = 60;
|
||||||
|
waypoints[62] = spawnstruct();
|
||||||
|
waypoints[62].origin =(1054.03, -6012.29, 2293.84);
|
||||||
|
waypoints[62].type = "stand";
|
||||||
|
waypoints[62].childCount = 2;
|
||||||
|
waypoints[62].children[0] = 60;
|
||||||
|
waypoints[62].children[1] = 63;
|
||||||
|
waypoints[63] = spawnstruct();
|
||||||
|
waypoints[63].origin =(1101.41, -5920.05, 2310.13);
|
||||||
|
waypoints[63].type = "stand";
|
||||||
|
waypoints[63].childCount = 2;
|
||||||
|
waypoints[63].children[0] = 62;
|
||||||
|
waypoints[63].children[1] = 64;
|
||||||
|
waypoints[64] = spawnstruct();
|
||||||
|
waypoints[64].origin =(1147.7, -5552.49, 2307.09);
|
||||||
|
waypoints[64].type = "stand";
|
||||||
|
waypoints[64].childCount = 2;
|
||||||
|
waypoints[64].children[0] = 63;
|
||||||
|
waypoints[64].children[1] = 65;
|
||||||
|
waypoints[65] = spawnstruct();
|
||||||
|
waypoints[65].origin =(1322.58, -5334.25, 2310.07);
|
||||||
|
waypoints[65].type = "stand";
|
||||||
|
waypoints[65].childCount = 2;
|
||||||
|
waypoints[65].children[0] = 64;
|
||||||
|
waypoints[65].children[1] = 34;
|
||||||
|
waypoints[66] = spawnstruct();
|
||||||
|
waypoints[66].origin =(-919.273, -2250.35, 2322.21);
|
||||||
|
waypoints[66].type = "stand";
|
||||||
|
waypoints[66].childCount = 2;
|
||||||
|
waypoints[66].children[0] = 67;
|
||||||
|
waypoints[66].children[1] = 68;
|
||||||
|
waypoints[67] = spawnstruct();
|
||||||
|
waypoints[67].origin =(-490.426, -2264.33, 2321.63);
|
||||||
|
waypoints[67].type = "stand";
|
||||||
|
waypoints[67].childCount = 2;
|
||||||
|
waypoints[67].children[0] = 66;
|
||||||
|
waypoints[67].children[1] = 23;
|
||||||
|
waypoints[68] = spawnstruct();
|
||||||
|
waypoints[68].origin =(-1306, -2209.15, 2316.69);
|
||||||
|
waypoints[68].type = "stand";
|
||||||
|
waypoints[68].childCount = 2;
|
||||||
|
waypoints[68].children[0] = 66;
|
||||||
|
waypoints[68].children[1] = 69;
|
||||||
|
waypoints[69] = spawnstruct();
|
||||||
|
waypoints[69].origin =(-1832.85, -2149.8, 2320.95);
|
||||||
|
waypoints[69].type = "stand";
|
||||||
|
waypoints[69].childCount = 2;
|
||||||
|
waypoints[69].children[0] = 68;
|
||||||
|
waypoints[69].children[1] = 70;
|
||||||
|
waypoints[70] = spawnstruct();
|
||||||
|
waypoints[70].origin =(-2280.17, -2116.32, 2319.82);
|
||||||
|
waypoints[70].type = "stand";
|
||||||
|
waypoints[70].childCount = 2;
|
||||||
|
waypoints[70].children[0] = 69;
|
||||||
|
waypoints[70].children[1] = 71;
|
||||||
|
waypoints[71] = spawnstruct();
|
||||||
|
waypoints[71].origin =(-2753.62, -2096.24, 2317.56);
|
||||||
|
waypoints[71].type = "stand";
|
||||||
|
waypoints[71].childCount = 2;
|
||||||
|
waypoints[71].children[0] = 70;
|
||||||
|
waypoints[71].children[1] = 72;
|
||||||
|
waypoints[72] = spawnstruct();
|
||||||
|
waypoints[72].origin =(-3071.58, -2284.73, 2311.15);
|
||||||
|
waypoints[72].type = "stand";
|
||||||
|
waypoints[72].childCount = 3;
|
||||||
|
waypoints[72].children[0] = 71;
|
||||||
|
waypoints[72].children[1] = 73;
|
||||||
|
waypoints[72].children[2] = 74;
|
||||||
|
waypoints[73] = spawnstruct();
|
||||||
|
waypoints[73].origin =(-3467.94, -2678.42, 2318.13);
|
||||||
|
waypoints[73].type = "stand";
|
||||||
|
waypoints[73].childCount = 3;
|
||||||
|
waypoints[73].children[0] = 72;
|
||||||
|
waypoints[73].children[1] = 74;
|
||||||
|
waypoints[73].children[2] = 75;
|
||||||
|
waypoints[74] = spawnstruct();
|
||||||
|
waypoints[74].origin =(-3238.52, -2440.99, 2310.12);
|
||||||
|
waypoints[74].type = "stand";
|
||||||
|
waypoints[74].childCount = 2;
|
||||||
|
waypoints[74].children[0] = 72;
|
||||||
|
waypoints[74].children[1] = 73;
|
||||||
|
waypoints[75] = spawnstruct();
|
||||||
|
waypoints[75].origin =(-3525.58, -2788.89, 2318.13);
|
||||||
|
waypoints[75].type = "stand";
|
||||||
|
waypoints[75].childCount = 2;
|
||||||
|
waypoints[75].children[0] = 73;
|
||||||
|
waypoints[75].children[1] = 76;
|
||||||
|
waypoints[76] = spawnstruct();
|
||||||
|
waypoints[76].origin =(-3625.5, -2975.18, 2318.13);
|
||||||
|
waypoints[76].type = "stand";
|
||||||
|
waypoints[76].childCount = 3;
|
||||||
|
waypoints[76].children[0] = 75;
|
||||||
|
waypoints[76].children[1] = 77;
|
||||||
|
waypoints[76].children[2] = 78;
|
||||||
|
waypoints[77] = spawnstruct();
|
||||||
|
waypoints[77].origin =(-3667.22, -3569.07, 2318.13);
|
||||||
|
waypoints[77].type = "stand";
|
||||||
|
waypoints[77].childCount = 3;
|
||||||
|
waypoints[77].children[0] = 76;
|
||||||
|
waypoints[77].children[1] = 78;
|
||||||
|
waypoints[77].children[2] = 79;
|
||||||
|
waypoints[78] = spawnstruct();
|
||||||
|
waypoints[78].origin =(-3674.62, -3310.4, 2318.13);
|
||||||
|
waypoints[78].type = "stand";
|
||||||
|
waypoints[78].childCount = 2;
|
||||||
|
waypoints[78].children[0] = 76;
|
||||||
|
waypoints[78].children[1] = 77;
|
||||||
|
waypoints[79] = spawnstruct();
|
||||||
|
waypoints[79].origin =(-3654.33, -4048.81, 2318.13);
|
||||||
|
waypoints[79].type = "stand";
|
||||||
|
waypoints[79].childCount = 2;
|
||||||
|
waypoints[79].children[0] = 77;
|
||||||
|
waypoints[79].children[1] = 80;
|
||||||
|
waypoints[80] = spawnstruct();
|
||||||
|
waypoints[80].origin =(-3624.68, -4486.74, 2318.13);
|
||||||
|
waypoints[80].type = "stand";
|
||||||
|
waypoints[80].childCount = 2;
|
||||||
|
waypoints[80].children[0] = 79;
|
||||||
|
waypoints[80].children[1] = 81;
|
||||||
|
waypoints[81] = spawnstruct();
|
||||||
|
waypoints[81].origin =(-3633.62, -4894.48, 2318.13);
|
||||||
|
waypoints[81].type = "stand";
|
||||||
|
waypoints[81].childCount = 2;
|
||||||
|
waypoints[81].children[0] = 80;
|
||||||
|
waypoints[81].children[1] = 46;
|
||||||
|
return waypoints;
|
||||||
|
}
|
946
mods/bots/maps/mp/bots/waypoints/carnival.gsc
Normal file
946
mods/bots/maps/mp/bots/waypoints/carnival.gsc
Normal file
@ -0,0 +1,946 @@
|
|||||||
|
CARNIVAL()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
/* 3:55 */waypoints[0] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[0].origin =(1896.29, 1372.49, -63.875);
|
||||||
|
/* 3:55 */waypoints[0].type = "stand";
|
||||||
|
/* 3:55 */waypoints[0].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[0].children[0] = 1;
|
||||||
|
/* 3:55 */waypoints[0].children[1] = 18;
|
||||||
|
/* 3:55 */waypoints[0].children[2] = 114;
|
||||||
|
/* 3:55 */waypoints[1] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[1].origin =(2410.13, 1389.51, -63.875);
|
||||||
|
/* 3:55 */waypoints[1].type = "stand";
|
||||||
|
/* 3:55 */waypoints[1].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[1].children[0] = 0;
|
||||||
|
/* 3:55 */waypoints[1].children[1] = 2;
|
||||||
|
/* 3:55 */waypoints[1].children[2] = 20;
|
||||||
|
/* 3:55 */waypoints[2] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[2].origin =(2611.81, 1826.16, -48.419);
|
||||||
|
/* 3:55 */waypoints[2].type = "stand";
|
||||||
|
/* 3:55 */waypoints[2].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[2].children[0] = 1;
|
||||||
|
/* 3:55 */waypoints[2].children[1] = 3;
|
||||||
|
/* 3:55 */waypoints[3] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[3].origin =(2177.11, 2130.8, -63.875);
|
||||||
|
/* 3:55 */waypoints[3].type = "stand";
|
||||||
|
/* 3:55 */waypoints[3].childCount = 4;
|
||||||
|
/* 3:55 */waypoints[3].children[0] = 2;
|
||||||
|
/* 3:55 */waypoints[3].children[1] = 4;
|
||||||
|
/* 3:55 */waypoints[3].children[2] = 19;
|
||||||
|
/* 3:55 */waypoints[3].children[3] = 135;
|
||||||
|
/* 3:55 */waypoints[4] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[4].origin =(1953.2, 2279.31, -63.875);
|
||||||
|
/* 3:55 */waypoints[4].type = "stand";
|
||||||
|
/* 3:55 */waypoints[4].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[4].children[0] = 3;
|
||||||
|
/* 3:55 */waypoints[4].children[1] = 5;
|
||||||
|
/* 3:55 */waypoints[5] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[5].origin =(1616.33, 2232.19, -3.875);
|
||||||
|
/* 3:55 */waypoints[5].type = "stand";
|
||||||
|
/* 3:55 */waypoints[5].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[5].children[0] = 4;
|
||||||
|
/* 3:55 */waypoints[5].children[1] = 6;
|
||||||
|
/* 3:55 */waypoints[5].children[2] = 10;
|
||||||
|
/* 3:55 */waypoints[6] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[6].origin =(1366.59, 2478.79, -3.875);
|
||||||
|
/* 3:55 */waypoints[6].type = "stand";
|
||||||
|
/* 3:55 */waypoints[6].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[6].children[0] = 5;
|
||||||
|
/* 3:55 */waypoints[6].children[1] = 7;
|
||||||
|
/* 3:55 */waypoints[7] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[7].origin =(1106.62, 2352.79, -3.875);
|
||||||
|
/* 3:55 */waypoints[7].type = "stand";
|
||||||
|
/* 3:55 */waypoints[7].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[7].children[0] = 6;
|
||||||
|
/* 3:55 */waypoints[7].children[1] = 8;
|
||||||
|
/* 3:55 */waypoints[8] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[8].origin =(1033.62, 2124.98, -3.875);
|
||||||
|
/* 3:55 */waypoints[8].type = "stand";
|
||||||
|
/* 3:55 */waypoints[8].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[8].children[0] = 7;
|
||||||
|
/* 3:55 */waypoints[8].children[1] = 9;
|
||||||
|
/* 3:55 */waypoints[8].children[2] = 11;
|
||||||
|
/* 3:55 */waypoints[9] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[9].origin =(1240.5, 1904.95, -3.875);
|
||||||
|
/* 3:55 */waypoints[9].type = "stand";
|
||||||
|
/* 3:55 */waypoints[9].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[9].children[0] = 8;
|
||||||
|
/* 3:55 */waypoints[9].children[1] = 10;
|
||||||
|
/* 3:55 */waypoints[10] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[10].origin =(1533.25, 1960.07, -3.875);
|
||||||
|
/* 3:55 */waypoints[10].type = "stand";
|
||||||
|
/* 3:55 */waypoints[10].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[10].children[0] = 9;
|
||||||
|
/* 3:55 */waypoints[10].children[1] = 5;
|
||||||
|
/* 3:55 */waypoints[11] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[11].origin =(891.122, 2103.49, -3.875);
|
||||||
|
/* 3:55 */waypoints[11].type = "stand";
|
||||||
|
/* 3:55 */waypoints[11].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[11].children[0] = 8;
|
||||||
|
/* 3:55 */waypoints[11].children[1] = 12;
|
||||||
|
/* 3:55 */waypoints[12] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[12].origin =(920.505, 1852.73, -3.875);
|
||||||
|
/* 3:55 */waypoints[12].type = "stand";
|
||||||
|
/* 3:55 */waypoints[12].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[12].children[0] = 11;
|
||||||
|
/* 3:55 */waypoints[12].children[1] = 13;
|
||||||
|
/* 3:55 */waypoints[13] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[13].origin =(454.062, 1790.85, 8.71387);
|
||||||
|
/* 3:55 */waypoints[13].type = "stand";
|
||||||
|
/* 3:55 */waypoints[13].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[13].children[0] = 12;
|
||||||
|
/* 3:55 */waypoints[13].children[1] = 14;
|
||||||
|
/* 3:55 */waypoints[14] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[14].origin =(107.625, 1317.98, -31.875);
|
||||||
|
/* 3:55 */waypoints[14].type = "stand";
|
||||||
|
/* 3:55 */waypoints[14].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[14].children[0] = 13;
|
||||||
|
/* 3:55 */waypoints[14].children[1] = 15;
|
||||||
|
/* 3:55 */waypoints[15] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[15].origin =(337.67, 1096.27, -63.875);
|
||||||
|
/* 3:55 */waypoints[15].type = "stand";
|
||||||
|
/* 3:55 */waypoints[15].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[15].children[0] = 14;
|
||||||
|
/* 3:55 */waypoints[15].children[1] = 16;
|
||||||
|
/* 3:55 */waypoints[15].children[2] = 106;
|
||||||
|
/* 3:55 */waypoints[16] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[16].origin =(664.742, 1396.8, -63.875);
|
||||||
|
/* 3:55 */waypoints[16].type = "stand";
|
||||||
|
/* 3:55 */waypoints[16].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[16].children[0] = 15;
|
||||||
|
/* 3:55 */waypoints[16].children[1] = 17;
|
||||||
|
/* 3:55 */waypoints[16].children[2] = 118;
|
||||||
|
/* 3:55 */waypoints[17] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[17].origin =(971.498, 1512.76, -63.875);
|
||||||
|
/* 3:55 */waypoints[17].type = "stand";
|
||||||
|
/* 3:55 */waypoints[17].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[17].children[0] = 16;
|
||||||
|
/* 3:55 */waypoints[17].children[1] = 18;
|
||||||
|
/* 3:55 */waypoints[18] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[18].origin =(1513.87, 1596.69, -63.875);
|
||||||
|
/* 3:55 */waypoints[18].type = "stand";
|
||||||
|
/* 3:55 */waypoints[18].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[18].children[0] = 17;
|
||||||
|
/* 3:55 */waypoints[18].children[1] = 0;
|
||||||
|
/* 3:55 */waypoints[18].children[2] = 19;
|
||||||
|
/* 3:55 */waypoints[19] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[19].origin =(1840.58, 1863.01, -63.875);
|
||||||
|
/* 3:55 */waypoints[19].type = "stand";
|
||||||
|
/* 3:55 */waypoints[19].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[19].children[0] = 18;
|
||||||
|
/* 3:55 */waypoints[19].children[1] = 3;
|
||||||
|
/* 3:55 */waypoints[20] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[20].origin =(2661.23, 1128.84, -62.8848);
|
||||||
|
/* 3:55 */waypoints[20].type = "stand";
|
||||||
|
/* 3:55 */waypoints[20].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[20].children[0] = 1;
|
||||||
|
/* 3:55 */waypoints[20].children[1] = 21;
|
||||||
|
/* 3:55 */waypoints[21] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[21].origin =(3035.08, 778.014, -55.2716);
|
||||||
|
/* 3:55 */waypoints[21].type = "stand";
|
||||||
|
/* 3:55 */waypoints[21].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[21].children[0] = 20;
|
||||||
|
/* 3:55 */waypoints[21].children[1] = 22;
|
||||||
|
/* 3:55 */waypoints[21].children[2] = 44;
|
||||||
|
/* 3:55 */waypoints[22] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[22].origin =(2812.8, 585.39, -51.875);
|
||||||
|
/* 3:55 */waypoints[22].type = "stand";
|
||||||
|
/* 3:55 */waypoints[22].childCount = 4;
|
||||||
|
/* 3:55 */waypoints[22].children[0] = 21;
|
||||||
|
/* 3:55 */waypoints[22].children[1] = 23;
|
||||||
|
/* 3:55 */waypoints[22].children[2] = 43;
|
||||||
|
/* 3:55 */waypoints[22].children[3] = 143;
|
||||||
|
/* 3:55 */waypoints[23] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[23].origin =(2450.11, 724.785, -63.875);
|
||||||
|
/* 3:55 */waypoints[23].type = "stand";
|
||||||
|
/* 3:55 */waypoints[23].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[23].children[0] = 22;
|
||||||
|
/* 3:55 */waypoints[23].children[1] = 24;
|
||||||
|
/* 3:55 */waypoints[24] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[24].origin =(2143.43, 954.41, -63.875);
|
||||||
|
/* 3:55 */waypoints[24].type = "stand";
|
||||||
|
/* 3:55 */waypoints[24].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[24].children[0] = 23;
|
||||||
|
/* 3:55 */waypoints[24].children[1] = 25;
|
||||||
|
/* 3:55 */waypoints[25] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[25].origin =(1944.81, 746.156, -63.875);
|
||||||
|
/* 3:55 */waypoints[25].type = "stand";
|
||||||
|
/* 3:55 */waypoints[25].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[25].children[0] = 24;
|
||||||
|
/* 3:55 */waypoints[25].children[1] = 26;
|
||||||
|
/* 3:55 */waypoints[25].children[2] = 29;
|
||||||
|
/* 3:55 */waypoints[26] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[26].origin =(1923.21, 571.454, -39.875);
|
||||||
|
/* 3:55 */waypoints[26].type = "stand";
|
||||||
|
/* 3:55 */waypoints[26].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[26].children[0] = 25;
|
||||||
|
/* 3:55 */waypoints[26].children[1] = 27;
|
||||||
|
/* 3:55 */waypoints[26].children[2] = 112;
|
||||||
|
/* 3:55 */waypoints[27] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[27].origin =(2030.82, 385.415, -63.875);
|
||||||
|
/* 3:55 */waypoints[27].type = "stand";
|
||||||
|
/* 3:55 */waypoints[27].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[27].children[0] = 26;
|
||||||
|
/* 3:55 */waypoints[27].children[1] = 28;
|
||||||
|
/* 3:55 */waypoints[28] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[28].origin =(2306.85, 194.756, -63.875);
|
||||||
|
/* 3:55 */waypoints[28].type = "stand";
|
||||||
|
/* 3:55 */waypoints[28].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[28].children[0] = 27;
|
||||||
|
/* 3:55 */waypoints[28].children[1] = 36;
|
||||||
|
/* 3:55 */waypoints[29] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[29].origin =(2272.95, 507.299, -63.875);
|
||||||
|
/* 3:55 */waypoints[29].type = "stand";
|
||||||
|
/* 3:55 */waypoints[29].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[29].children[0] = 25;
|
||||||
|
/* 3:55 */waypoints[29].children[1] = 30;
|
||||||
|
/* 3:55 */waypoints[30] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[30].origin =(2421.51, 548.867, -66.8462);
|
||||||
|
/* 3:55 */waypoints[30].type = "stand";
|
||||||
|
/* 3:55 */waypoints[30].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[30].children[0] = 29;
|
||||||
|
/* 3:55 */waypoints[30].children[1] = 31;
|
||||||
|
/* 3:55 */waypoints[31] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[31].origin =(2543.77, 454.032, -27.9903);
|
||||||
|
/* 3:55 */waypoints[31].type = "stand";
|
||||||
|
/* 3:55 */waypoints[31].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[31].children[0] = 30;
|
||||||
|
/* 3:55 */waypoints[31].children[1] = 32;
|
||||||
|
/* 3:55 */waypoints[32] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[32].origin =(2251, 84.2754, 126.125);
|
||||||
|
/* 3:55 */waypoints[32].type = "stand";
|
||||||
|
/* 3:55 */waypoints[32].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[32].children[0] = 31;
|
||||||
|
/* 3:55 */waypoints[32].children[1] = 33;
|
||||||
|
/* 3:55 */waypoints[33] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[33].origin =(1974.42, 290.231, 126.125);
|
||||||
|
/* 3:55 */waypoints[33].type = "stand";
|
||||||
|
/* 3:55 */waypoints[33].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[33].children[0] = 32;
|
||||||
|
/* 3:55 */waypoints[33].children[1] = 34;
|
||||||
|
/* 3:55 */waypoints[34] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[34].origin =(2038.11, 367.141, 128.125);
|
||||||
|
/* 3:55 */waypoints[34].type = "stand";
|
||||||
|
/* 3:55 */waypoints[34].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[34].children[0] = 33;
|
||||||
|
/* 3:55 */waypoints[34].children[1] = 35;
|
||||||
|
/* 3:55 */waypoints[35] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[35].origin =(1965.85, 814.585, 128.125);
|
||||||
|
/* 3:55 */waypoints[35].type = "stand";
|
||||||
|
/* 3:55 */waypoints[35].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[35].children[0] = 34;
|
||||||
|
/* 3:55 */waypoints[35].children[1] = 37;
|
||||||
|
/* 3:55 */waypoints[36] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[36].origin =(2510, 500.759, 128.125);
|
||||||
|
/* 3:55 */waypoints[36].type = "stand";
|
||||||
|
/* 3:55 */waypoints[36].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[36].children[0] = 37;
|
||||||
|
/* 3:55 */waypoints[36].children[1] = 28;
|
||||||
|
/* 3:55 */waypoints[36].children[2] = 38;
|
||||||
|
/* 3:55 */waypoints[37] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[37].origin =(2308.37, 602.376, 128.125);
|
||||||
|
/* 3:55 */waypoints[37].type = "stand";
|
||||||
|
/* 3:55 */waypoints[37].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[37].children[0] = 36;
|
||||||
|
/* 3:55 */waypoints[37].children[1] = 35;
|
||||||
|
/* 3:55 */waypoints[38] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[38].origin =(2912.3, 178.256, 100.467);
|
||||||
|
/* 3:55 */waypoints[38].type = "stand";
|
||||||
|
/* 3:55 */waypoints[38].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[38].children[0] = 36;
|
||||||
|
/* 3:55 */waypoints[38].children[1] = 39;
|
||||||
|
/* 3:55 */waypoints[38].children[2] = 142;
|
||||||
|
/* 3:55 */waypoints[39] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[39].origin =(3074.3, 47.4363, 42.5222);
|
||||||
|
/* 3:55 */waypoints[39].type = "stand";
|
||||||
|
/* 3:55 */waypoints[39].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[39].children[0] = 38;
|
||||||
|
/* 3:55 */waypoints[39].children[1] = 40;
|
||||||
|
/* 3:55 */waypoints[39].children[2] = 144;
|
||||||
|
/* 3:55 */waypoints[40] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[40].origin =(2773.63, -206.986, -45.4839);
|
||||||
|
/* 3:55 */waypoints[40].type = "stand";
|
||||||
|
/* 3:55 */waypoints[40].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[40].children[0] = 39;
|
||||||
|
/* 3:55 */waypoints[40].children[1] = 41;
|
||||||
|
/* 3:55 */waypoints[40].children[2] = 63;
|
||||||
|
/* 3:55 */waypoints[41] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[41].origin =(2961.44, -323.943, -53.7632);
|
||||||
|
/* 3:55 */waypoints[41].type = "stand";
|
||||||
|
/* 3:55 */waypoints[41].childCount = 4;
|
||||||
|
/* 3:55 */waypoints[41].children[0] = 40;
|
||||||
|
/* 3:55 */waypoints[41].children[1] = 42;
|
||||||
|
/* 3:55 */waypoints[41].children[2] = 45;
|
||||||
|
/* 3:55 */waypoints[41].children[3] = 57;
|
||||||
|
/* 3:55 */waypoints[42] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[42].origin =(3274.32, 171.371, -60.8485);
|
||||||
|
/* 3:55 */waypoints[42].type = "stand";
|
||||||
|
/* 3:55 */waypoints[42].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[42].children[0] = 41;
|
||||||
|
/* 3:55 */waypoints[42].children[1] = 43;
|
||||||
|
/* 3:55 */waypoints[42].children[2] = 44;
|
||||||
|
/* 3:55 */waypoints[43] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[43].origin =(2985.63, 464.971, -53.7425);
|
||||||
|
/* 3:55 */waypoints[43].type = "stand";
|
||||||
|
/* 3:55 */waypoints[43].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[43].children[0] = 42;
|
||||||
|
/* 3:55 */waypoints[43].children[1] = 22;
|
||||||
|
/* 3:55 */waypoints[44] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[44].origin =(3451.16, 429.082, -47.0662);
|
||||||
|
/* 3:55 */waypoints[44].type = "stand";
|
||||||
|
/* 3:55 */waypoints[44].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[44].children[0] = 21;
|
||||||
|
/* 3:55 */waypoints[44].children[1] = 42;
|
||||||
|
/* 3:55 */waypoints[45] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[45].origin =(2813.58, -878.7, -43.2767);
|
||||||
|
/* 3:55 */waypoints[45].type = "stand";
|
||||||
|
/* 3:55 */waypoints[45].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[45].children[0] = 41;
|
||||||
|
/* 3:55 */waypoints[45].children[1] = 46;
|
||||||
|
/* 3:55 */waypoints[46] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[46].origin =(2443.66, -1346.05, -25.4662);
|
||||||
|
/* 3:55 */waypoints[46].type = "stand";
|
||||||
|
/* 3:55 */waypoints[46].childCount = 4;
|
||||||
|
/* 3:55 */waypoints[46].children[0] = 45;
|
||||||
|
/* 3:55 */waypoints[46].children[1] = 47;
|
||||||
|
/* 3:55 */waypoints[46].children[2] = 56;
|
||||||
|
/* 3:55 */waypoints[46].children[3] = 59;
|
||||||
|
/* 3:55 */waypoints[47] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[47].origin =(2124.14, -1844.61, -50.6304);
|
||||||
|
/* 3:55 */waypoints[47].type = "stand";
|
||||||
|
/* 3:55 */waypoints[47].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[47].children[0] = 46;
|
||||||
|
/* 3:55 */waypoints[47].children[1] = 48;
|
||||||
|
/* 3:55 */waypoints[47].children[2] = 65;
|
||||||
|
/* 3:55 */waypoints[48] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[48].origin =(1752.99, -2107.98, -17.7433);
|
||||||
|
/* 3:55 */waypoints[48].type = "stand";
|
||||||
|
/* 3:55 */waypoints[48].childCount = 4;
|
||||||
|
/* 3:55 */waypoints[48].children[0] = 47;
|
||||||
|
/* 3:55 */waypoints[48].children[1] = 49;
|
||||||
|
/* 3:55 */waypoints[48].children[2] = 52;
|
||||||
|
/* 3:55 */waypoints[48].children[3] = 64;
|
||||||
|
/* 3:55 */waypoints[49] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[49].origin =(1882.16, -1864.84, 57.1378);
|
||||||
|
/* 3:55 */waypoints[49].type = "stand";
|
||||||
|
/* 3:55 */waypoints[49].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[49].children[0] = 48;
|
||||||
|
/* 3:55 */waypoints[49].children[1] = 50;
|
||||||
|
/* 3:55 */waypoints[50] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[50].origin =(2223.91, -1410.75, 121.911);
|
||||||
|
/* 3:55 */waypoints[50].type = "stand";
|
||||||
|
/* 3:55 */waypoints[50].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[50].children[0] = 49;
|
||||||
|
/* 3:55 */waypoints[50].children[1] = 51;
|
||||||
|
/* 3:55 */waypoints[51] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[51].origin =(2531.96, -999.769, 244.065);
|
||||||
|
/* 3:55 */waypoints[51].type = "stand";
|
||||||
|
/* 3:55 */waypoints[51].childCount = 1;
|
||||||
|
/* 3:55 */waypoints[51].children[0] = 50;
|
||||||
|
/* 3:55 */waypoints[52] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[52].origin =(1801.13, -2632, 42.694);
|
||||||
|
/* 3:55 */waypoints[52].type = "stand";
|
||||||
|
/* 3:55 */waypoints[52].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[52].children[0] = 48;
|
||||||
|
/* 3:55 */waypoints[52].children[1] = 53;
|
||||||
|
/* 3:55 */waypoints[53] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[53].origin =(2366.95, -2503.72, -35.1275);
|
||||||
|
/* 3:55 */waypoints[53].type = "stand";
|
||||||
|
/* 3:55 */waypoints[53].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[53].children[0] = 52;
|
||||||
|
/* 3:55 */waypoints[53].children[1] = 54;
|
||||||
|
/* 3:55 */waypoints[54] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[54].origin =(2803.87, -2234.76, -53.0336);
|
||||||
|
/* 3:55 */waypoints[54].type = "stand";
|
||||||
|
/* 3:55 */waypoints[54].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[54].children[0] = 53;
|
||||||
|
/* 3:55 */waypoints[54].children[1] = 55;
|
||||||
|
/* 3:55 */waypoints[55] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[55].origin =(3245.54, -1918.44, -62.3579);
|
||||||
|
/* 3:55 */waypoints[55].type = "stand";
|
||||||
|
/* 3:55 */waypoints[55].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[55].children[0] = 54;
|
||||||
|
/* 3:55 */waypoints[55].children[1] = 56;
|
||||||
|
/* 3:55 */waypoints[56] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[56].origin =(2765.4, -1695.82, 9.55535);
|
||||||
|
/* 3:55 */waypoints[56].type = "stand";
|
||||||
|
/* 3:55 */waypoints[56].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[56].children[0] = 55;
|
||||||
|
/* 3:55 */waypoints[56].children[1] = 46;
|
||||||
|
/* 3:55 */waypoints[57] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[57].origin =(2629.45, -661.84, -32.5459);
|
||||||
|
/* 3:55 */waypoints[57].type = "stand";
|
||||||
|
/* 3:55 */waypoints[57].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[57].children[0] = 41;
|
||||||
|
/* 3:55 */waypoints[57].children[1] = 58;
|
||||||
|
/* 3:55 */waypoints[58] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[58].origin =(2472.88, -849.104, -34.2909);
|
||||||
|
/* 3:55 */waypoints[58].type = "stand";
|
||||||
|
/* 3:55 */waypoints[58].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[58].children[0] = 57;
|
||||||
|
/* 3:55 */waypoints[58].children[1] = 59;
|
||||||
|
/* 3:55 */waypoints[58].children[2] = 60;
|
||||||
|
/* 3:55 */waypoints[59] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[59].origin =(2220.79, -1180.11, -17.6757);
|
||||||
|
/* 3:55 */waypoints[59].type = "stand";
|
||||||
|
/* 3:55 */waypoints[59].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[59].children[0] = 58;
|
||||||
|
/* 3:55 */waypoints[59].children[1] = 46;
|
||||||
|
/* 3:55 */waypoints[60] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[60].origin =(2225.98, -704.74, -17.875);
|
||||||
|
/* 3:55 */waypoints[60].type = "stand";
|
||||||
|
/* 3:55 */waypoints[60].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[60].children[0] = 58;
|
||||||
|
/* 3:55 */waypoints[60].children[1] = 61;
|
||||||
|
/* 3:55 */waypoints[61] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[61].origin =(2307.66, -587.213, -17.875);
|
||||||
|
/* 3:55 */waypoints[61].type = "stand";
|
||||||
|
/* 3:55 */waypoints[61].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[61].children[0] = 60;
|
||||||
|
/* 3:55 */waypoints[61].children[1] = 62;
|
||||||
|
/* 3:55 */waypoints[61].children[2] = 125;
|
||||||
|
/* 3:55 */waypoints[62] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[62].origin =(2582.16, -270.854, -17.875);
|
||||||
|
/* 3:55 */waypoints[62].type = "stand";
|
||||||
|
/* 3:55 */waypoints[62].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[62].children[0] = 61;
|
||||||
|
/* 3:55 */waypoints[62].children[1] = 63;
|
||||||
|
/* 3:55 */waypoints[63] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[63].origin =(2684.59, -344.943, -45.875);
|
||||||
|
/* 3:55 */waypoints[63].type = "stand";
|
||||||
|
/* 3:55 */waypoints[63].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[63].children[0] = 62;
|
||||||
|
/* 3:55 */waypoints[63].children[1] = 40;
|
||||||
|
/* 3:55 */waypoints[64] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[64].origin =(1503.84, -2078.76, -28.0403);
|
||||||
|
/* 3:55 */waypoints[64].type = "stand";
|
||||||
|
/* 3:55 */waypoints[64].childCount = 4;
|
||||||
|
/* 3:55 */waypoints[64].children[0] = 48;
|
||||||
|
/* 3:55 */waypoints[64].children[1] = 65;
|
||||||
|
/* 3:55 */waypoints[64].children[2] = 66;
|
||||||
|
/* 3:55 */waypoints[64].children[3] = 76;
|
||||||
|
/* 3:55 */waypoints[65] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[65].origin =(1849.59, -1669.6, -47.8914);
|
||||||
|
/* 3:55 */waypoints[65].type = "stand";
|
||||||
|
/* 3:55 */waypoints[65].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[65].children[0] = 64;
|
||||||
|
/* 3:55 */waypoints[65].children[1] = 47;
|
||||||
|
/* 3:55 */waypoints[66] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[66].origin =(1050.01, -1751.13, -56.4737);
|
||||||
|
/* 3:55 */waypoints[66].type = "stand";
|
||||||
|
/* 3:55 */waypoints[66].childCount = 5;
|
||||||
|
/* 3:55 */waypoints[66].children[0] = 64;
|
||||||
|
/* 3:55 */waypoints[66].children[1] = 67;
|
||||||
|
/* 3:55 */waypoints[66].children[2] = 75;
|
||||||
|
/* 3:55 */waypoints[66].children[3] = 77;
|
||||||
|
/* 3:55 */waypoints[66].children[4] = 134;
|
||||||
|
/* 3:55 */waypoints[67] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[67].origin =(1199.85, -1555.74, 48.125);
|
||||||
|
/* 3:55 */waypoints[67].type = "stand";
|
||||||
|
/* 3:55 */waypoints[67].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[67].children[0] = 66;
|
||||||
|
/* 3:55 */waypoints[67].children[1] = 68;
|
||||||
|
/* 3:55 */waypoints[68] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[68].origin =(764.237, -1232.65, 102.125);
|
||||||
|
/* 3:55 */waypoints[68].type = "stand";
|
||||||
|
/* 3:55 */waypoints[68].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[68].children[0] = 67;
|
||||||
|
/* 3:55 */waypoints[68].children[1] = 69;
|
||||||
|
/* 3:55 */waypoints[69] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[69].origin =(459.292, -1020.85, 80.125);
|
||||||
|
/* 3:55 */waypoints[69].type = "stand";
|
||||||
|
/* 3:55 */waypoints[69].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[69].children[0] = 68;
|
||||||
|
/* 3:55 */waypoints[69].children[1] = 70;
|
||||||
|
/* 3:55 */waypoints[70] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[70].origin =(222.024, -1291.55, 80.125);
|
||||||
|
/* 3:55 */waypoints[70].type = "stand";
|
||||||
|
/* 3:55 */waypoints[70].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[70].children[0] = 69;
|
||||||
|
/* 3:55 */waypoints[70].children[1] = 71;
|
||||||
|
/* 3:55 */waypoints[71] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[71].origin =(5.71331, -1569.45, 48.125);
|
||||||
|
/* 3:55 */waypoints[71].type = "stand";
|
||||||
|
/* 3:55 */waypoints[71].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[71].children[0] = 70;
|
||||||
|
/* 3:55 */waypoints[71].children[1] = 72;
|
||||||
|
/* 3:55 */waypoints[72] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[72].origin =(265.294, -1769.14, -57.5248);
|
||||||
|
/* 3:55 */waypoints[72].type = "stand";
|
||||||
|
/* 3:55 */waypoints[72].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[72].children[0] = 71;
|
||||||
|
/* 3:55 */waypoints[72].children[1] = 73;
|
||||||
|
/* 3:55 */waypoints[72].children[2] = 81;
|
||||||
|
/* 3:55 */waypoints[73] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[73].origin =(157.275, -1904.62, -57.875);
|
||||||
|
/* 3:55 */waypoints[73].type = "stand";
|
||||||
|
/* 3:55 */waypoints[73].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[73].children[0] = 72;
|
||||||
|
/* 3:55 */waypoints[73].children[1] = 74;
|
||||||
|
/* 3:55 */waypoints[74] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[74].origin =(539.41, -2227.1, -57.875);
|
||||||
|
/* 3:55 */waypoints[74].type = "stand";
|
||||||
|
/* 3:55 */waypoints[74].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[74].children[0] = 73;
|
||||||
|
/* 3:55 */waypoints[74].children[1] = 75;
|
||||||
|
/* 3:55 */waypoints[75] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[75].origin =(693.936, -2017.14, -59.5458);
|
||||||
|
/* 3:55 */waypoints[75].type = "stand";
|
||||||
|
/* 3:55 */waypoints[75].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[75].children[0] = 74;
|
||||||
|
/* 3:55 */waypoints[75].children[1] = 76;
|
||||||
|
/* 3:55 */waypoints[75].children[2] = 66;
|
||||||
|
/* 3:55 */waypoints[76] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[76].origin =(1014.23, -2134.61, -59.5283);
|
||||||
|
/* 3:55 */waypoints[76].type = "stand";
|
||||||
|
/* 3:55 */waypoints[76].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[76].children[0] = 75;
|
||||||
|
/* 3:55 */waypoints[76].children[1] = 64;
|
||||||
|
/* 3:55 */waypoints[77] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[77].origin =(746.349, -1365.62, -62.8987);
|
||||||
|
/* 3:55 */waypoints[77].type = "stand";
|
||||||
|
/* 3:55 */waypoints[77].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[77].children[0] = 66;
|
||||||
|
/* 3:55 */waypoints[77].children[1] = 78;
|
||||||
|
/* 3:55 */waypoints[77].children[2] = 133;
|
||||||
|
/* 3:55 */waypoints[78] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[78].origin =(400.018, -1078.31, -57.875);
|
||||||
|
/* 3:55 */waypoints[78].type = "stand";
|
||||||
|
/* 3:55 */waypoints[78].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[78].children[0] = 77;
|
||||||
|
/* 3:55 */waypoints[78].children[1] = 79;
|
||||||
|
/* 3:55 */waypoints[79] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[79].origin =(174.25, -1342.68, -57.875);
|
||||||
|
/* 3:55 */waypoints[79].type = "stand";
|
||||||
|
/* 3:55 */waypoints[79].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[79].children[0] = 78;
|
||||||
|
/* 3:55 */waypoints[79].children[1] = 80;
|
||||||
|
/* 3:55 */waypoints[79].children[2] = 82;
|
||||||
|
/* 3:55 */waypoints[80] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[80].origin =(119.528, -1424.9, -57.8354);
|
||||||
|
/* 3:55 */waypoints[80].type = "stand";
|
||||||
|
/* 3:55 */waypoints[80].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[80].children[0] = 79;
|
||||||
|
/* 3:55 */waypoints[80].children[1] = 81;
|
||||||
|
/* 3:55 */waypoints[81] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[81].origin =(318.895, -1564.23, -55.875);
|
||||||
|
/* 3:55 */waypoints[81].type = "stand";
|
||||||
|
/* 3:55 */waypoints[81].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[81].children[0] = 80;
|
||||||
|
/* 3:55 */waypoints[81].children[1] = 72;
|
||||||
|
/* 3:55 */waypoints[81].children[2] = 134;
|
||||||
|
/* 3:55 */waypoints[82] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[82].origin =(-173.908, -1094.7, -63.875);
|
||||||
|
/* 3:55 */waypoints[82].type = "stand";
|
||||||
|
/* 3:55 */waypoints[82].childCount = 5;
|
||||||
|
/* 3:55 */waypoints[82].children[0] = 79;
|
||||||
|
/* 3:55 */waypoints[82].children[1] = 83;
|
||||||
|
/* 3:55 */waypoints[82].children[2] = 88;
|
||||||
|
/* 3:55 */waypoints[82].children[3] = 85;
|
||||||
|
/* 3:55 */waypoints[82].children[4] = 86;
|
||||||
|
/* 3:55 */waypoints[83] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[83].origin =(-397.647, -1381.58, -63.875);
|
||||||
|
/* 3:55 */waypoints[83].type = "stand";
|
||||||
|
/* 3:55 */waypoints[83].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[83].children[0] = 82;
|
||||||
|
/* 3:55 */waypoints[83].children[1] = 84;
|
||||||
|
/* 3:55 */waypoints[84] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[84].origin =(-717.826, -1172.05, -63.875);
|
||||||
|
/* 3:55 */waypoints[84].type = "stand";
|
||||||
|
/* 3:55 */waypoints[84].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[84].children[0] = 83;
|
||||||
|
/* 3:55 */waypoints[84].children[1] = 85;
|
||||||
|
/* 3:55 */waypoints[84].children[2] = 90;
|
||||||
|
/* 3:55 */waypoints[85] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[85].origin =(-421.696, -829.086, -71.875);
|
||||||
|
/* 3:55 */waypoints[85].type = "stand";
|
||||||
|
/* 3:55 */waypoints[85].childCount = 5;
|
||||||
|
/* 3:55 */waypoints[85].children[0] = 84;
|
||||||
|
/* 3:55 */waypoints[85].children[1] = 86;
|
||||||
|
/* 3:55 */waypoints[85].children[2] = 87;
|
||||||
|
/* 3:55 */waypoints[85].children[3] = 82;
|
||||||
|
/* 3:55 */waypoints[85].children[4] = 89;
|
||||||
|
/* 3:55 */waypoints[86] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[86].origin =(-349.125, -840.418, -71.875);
|
||||||
|
/* 3:55 */waypoints[86].type = "stand";
|
||||||
|
/* 3:55 */waypoints[86].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[86].children[0] = 85;
|
||||||
|
/* 3:55 */waypoints[86].children[1] = 82;
|
||||||
|
/* 3:55 */waypoints[87] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[87].origin =(-106.316, -413.158, -63.875);
|
||||||
|
/* 3:55 */waypoints[87].type = "stand";
|
||||||
|
/* 3:55 */waypoints[87].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[87].children[0] = 85;
|
||||||
|
/* 3:55 */waypoints[87].children[1] = 88;
|
||||||
|
/* 3:55 */waypoints[87].children[2] = 97;
|
||||||
|
/* 3:55 */waypoints[88] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[88].origin =(171.667, -667.76, -63.875);
|
||||||
|
/* 3:55 */waypoints[88].type = "stand";
|
||||||
|
/* 3:55 */waypoints[88].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[88].children[0] = 87;
|
||||||
|
/* 3:55 */waypoints[88].children[1] = 82;
|
||||||
|
/* 3:55 */waypoints[89] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[89].origin =(-782.047, -637.027, -63.875);
|
||||||
|
/* 3:55 */waypoints[89].type = "stand";
|
||||||
|
/* 3:55 */waypoints[89].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[89].children[0] = 85;
|
||||||
|
/* 3:55 */waypoints[89].children[1] = 90;
|
||||||
|
/* 3:55 */waypoints[89].children[2] = 97;
|
||||||
|
/* 3:55 */waypoints[90] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[90].origin =(-1039.95, -990.766, -63.875);
|
||||||
|
/* 3:55 */waypoints[90].type = "stand";
|
||||||
|
/* 3:55 */waypoints[90].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[90].children[0] = 89;
|
||||||
|
/* 3:55 */waypoints[90].children[1] = 84;
|
||||||
|
/* 3:55 */waypoints[90].children[2] = 91;
|
||||||
|
/* 3:55 */waypoints[91] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[91].origin =(-1182.04, -859.729, -63.875);
|
||||||
|
/* 3:55 */waypoints[91].type = "stand";
|
||||||
|
/* 3:55 */waypoints[91].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[91].children[0] = 90;
|
||||||
|
/* 3:55 */waypoints[91].children[1] = 92;
|
||||||
|
/* 3:55 */waypoints[92] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[92].origin =(-843.247, -427.621, -63.875);
|
||||||
|
/* 3:55 */waypoints[92].type = "stand";
|
||||||
|
/* 3:55 */waypoints[92].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[92].children[0] = 91;
|
||||||
|
/* 3:55 */waypoints[92].children[1] = 93;
|
||||||
|
/* 3:55 */waypoints[93] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[93].origin =(-533.541, -40.4135, -62.9204);
|
||||||
|
/* 3:55 */waypoints[93].type = "stand";
|
||||||
|
/* 3:55 */waypoints[93].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[93].children[0] = 92;
|
||||||
|
/* 3:55 */waypoints[93].children[1] = 94;
|
||||||
|
/* 3:55 */waypoints[93].children[2] = 97;
|
||||||
|
/* 3:55 */waypoints[94] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[94].origin =(-769.326, 123.57, -61.5092);
|
||||||
|
/* 3:55 */waypoints[94].type = "stand";
|
||||||
|
/* 3:55 */waypoints[94].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[94].children[0] = 93;
|
||||||
|
/* 3:55 */waypoints[94].children[1] = 95;
|
||||||
|
/* 3:55 */waypoints[95] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[95].origin =(-549.532, 368.162, -67.875);
|
||||||
|
/* 3:55 */waypoints[95].type = "stand";
|
||||||
|
/* 3:55 */waypoints[95].childCount = 5;
|
||||||
|
/* 3:55 */waypoints[95].children[0] = 94;
|
||||||
|
/* 3:55 */waypoints[95].children[1] = 96;
|
||||||
|
/* 3:55 */waypoints[95].children[2] = 101;
|
||||||
|
/* 3:55 */waypoints[95].children[3] = 102;
|
||||||
|
/* 3:55 */waypoints[95].children[4] = 136;
|
||||||
|
/* 3:55 */waypoints[96] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[96].origin =(-213.36, 110.961, -67.8813);
|
||||||
|
/* 3:55 */waypoints[96].type = "stand";
|
||||||
|
/* 3:55 */waypoints[96].childCount = 4;
|
||||||
|
/* 3:55 */waypoints[96].children[0] = 95;
|
||||||
|
/* 3:55 */waypoints[96].children[1] = 97;
|
||||||
|
/* 3:55 */waypoints[96].children[2] = 98;
|
||||||
|
/* 3:55 */waypoints[96].children[3] = 100;
|
||||||
|
/* 3:55 */waypoints[97] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[97].origin =(-427.537, -185.917, -63.875);
|
||||||
|
/* 3:55 */waypoints[97].type = "stand";
|
||||||
|
/* 3:55 */waypoints[97].childCount = 4;
|
||||||
|
/* 3:55 */waypoints[97].children[0] = 96;
|
||||||
|
/* 3:55 */waypoints[97].children[1] = 87;
|
||||||
|
/* 3:55 */waypoints[97].children[2] = 93;
|
||||||
|
/* 3:55 */waypoints[97].children[3] = 89;
|
||||||
|
/* 3:55 */waypoints[98] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[98].origin =(251.611, -256.407, -62.875);
|
||||||
|
/* 3:55 */waypoints[98].type = "stand";
|
||||||
|
/* 3:55 */waypoints[98].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[98].children[0] = 96;
|
||||||
|
/* 3:55 */waypoints[98].children[1] = 99;
|
||||||
|
/* 3:55 */waypoints[99] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[99].origin =(402.389, -54.0425, -62.875);
|
||||||
|
/* 3:55 */waypoints[99].type = "stand";
|
||||||
|
/* 3:55 */waypoints[99].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[99].children[0] = 98;
|
||||||
|
/* 3:55 */waypoints[99].children[1] = 100;
|
||||||
|
/* 3:55 */waypoints[99].children[2] = 108;
|
||||||
|
/* 3:55 */waypoints[100] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[100].origin =(-16.9708, 309.764, -67.875);
|
||||||
|
/* 3:55 */waypoints[100].type = "stand";
|
||||||
|
/* 3:55 */waypoints[100].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[100].children[0] = 96;
|
||||||
|
/* 3:55 */waypoints[100].children[1] = 107;
|
||||||
|
/* 3:55 */waypoints[100].children[2] = 99;
|
||||||
|
/* 3:55 */waypoints[101] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[101].origin =(-180.902, 714, -63.875);
|
||||||
|
/* 3:55 */waypoints[101].type = "stand";
|
||||||
|
/* 3:55 */waypoints[101].childCount = 1;
|
||||||
|
/* 3:55 */waypoints[101].children[0] = 95;
|
||||||
|
/* 3:55 */waypoints[102] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[102].origin =(-831.028, 871.364, -63.875);
|
||||||
|
/* 3:55 */waypoints[102].type = "stand";
|
||||||
|
/* 3:55 */waypoints[102].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[102].children[0] = 95;
|
||||||
|
/* 3:55 */waypoints[102].children[1] = 103;
|
||||||
|
/* 3:55 */waypoints[103] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[103].origin =(-737.272, 1265.61, -63.875);
|
||||||
|
/* 3:55 */waypoints[103].type = "stand";
|
||||||
|
/* 3:55 */waypoints[103].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[103].children[0] = 102;
|
||||||
|
/* 3:55 */waypoints[103].children[1] = 104;
|
||||||
|
/* 3:55 */waypoints[104] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[104].origin =(-340.755, 1332.3, -63.875);
|
||||||
|
/* 3:55 */waypoints[104].type = "stand";
|
||||||
|
/* 3:55 */waypoints[104].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[104].children[0] = 103;
|
||||||
|
/* 3:55 */waypoints[104].children[1] = 105;
|
||||||
|
/* 3:55 */waypoints[105] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[105].origin =(106.751, 946.458, -61.875);
|
||||||
|
/* 3:55 */waypoints[105].type = "stand";
|
||||||
|
/* 3:55 */waypoints[105].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[105].children[0] = 104;
|
||||||
|
/* 3:55 */waypoints[105].children[1] = 106;
|
||||||
|
/* 3:55 */waypoints[106] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[106].origin =(214.838, 862.154, -67.875);
|
||||||
|
/* 3:55 */waypoints[106].type = "stand";
|
||||||
|
/* 3:55 */waypoints[106].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[106].children[0] = 105;
|
||||||
|
/* 3:55 */waypoints[106].children[1] = 15;
|
||||||
|
/* 3:55 */waypoints[106].children[2] = 107;
|
||||||
|
/* 3:55 */waypoints[107] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[107].origin =(361.074, 673.532, -61.875);
|
||||||
|
/* 3:55 */waypoints[107].type = "stand";
|
||||||
|
/* 3:55 */waypoints[107].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[107].children[0] = 106;
|
||||||
|
/* 3:55 */waypoints[107].children[1] = 100;
|
||||||
|
/* 3:55 */waypoints[108] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[108].origin =(640.75, 224.262, -64.0781);
|
||||||
|
/* 3:55 */waypoints[108].type = "stand";
|
||||||
|
/* 3:55 */waypoints[108].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[108].children[0] = 99;
|
||||||
|
/* 3:55 */waypoints[108].children[1] = 109;
|
||||||
|
/* 3:55 */waypoints[108].children[2] = 111;
|
||||||
|
/* 3:55 */waypoints[109] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[109].origin =(489.04, 366.609, -63.875);
|
||||||
|
/* 3:55 */waypoints[109].type = "stand";
|
||||||
|
/* 3:55 */waypoints[109].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[109].children[0] = 108;
|
||||||
|
/* 3:55 */waypoints[109].children[1] = 110;
|
||||||
|
/* 3:55 */waypoints[110] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[110].origin =(697.197, 621.367, -63.4597);
|
||||||
|
/* 3:55 */waypoints[110].type = "stand";
|
||||||
|
/* 3:55 */waypoints[110].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[110].children[0] = 109;
|
||||||
|
/* 3:55 */waypoints[110].children[1] = 111;
|
||||||
|
/* 3:55 */waypoints[111] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[111].origin =(925.097, 421.354, -67.875);
|
||||||
|
/* 3:55 */waypoints[111].type = "stand";
|
||||||
|
/* 3:55 */waypoints[111].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[111].children[0] = 110;
|
||||||
|
/* 3:55 */waypoints[111].children[1] = 108;
|
||||||
|
/* 3:55 */waypoints[111].children[2] = 112;
|
||||||
|
/* 3:55 */waypoints[112] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[112].origin =(1338.47, 584.911, -68.468);
|
||||||
|
/* 3:55 */waypoints[112].type = "stand";
|
||||||
|
/* 3:55 */waypoints[112].childCount = 4;
|
||||||
|
/* 3:55 */waypoints[112].children[0] = 111;
|
||||||
|
/* 3:55 */waypoints[112].children[1] = 113;
|
||||||
|
/* 3:55 */waypoints[112].children[2] = 26;
|
||||||
|
/* 3:55 */waypoints[112].children[3] = 121;
|
||||||
|
/* 3:55 */waypoints[113] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[113].origin =(1531.46, 899.336, -63.875);
|
||||||
|
/* 3:55 */waypoints[113].type = "stand";
|
||||||
|
/* 3:55 */waypoints[113].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[113].children[0] = 112;
|
||||||
|
/* 3:55 */waypoints[113].children[1] = 114;
|
||||||
|
/* 3:55 */waypoints[114] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[114].origin =(1778.54, 930.083, -63.3491);
|
||||||
|
/* 3:55 */waypoints[114].type = "stand";
|
||||||
|
/* 3:55 */waypoints[114].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[114].children[0] = 113;
|
||||||
|
/* 3:55 */waypoints[114].children[1] = 0;
|
||||||
|
/* 3:55 */waypoints[114].children[2] = 115;
|
||||||
|
/* 3:55 */waypoints[115] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[115].origin =(1485.38, 1097.43, -49.1369);
|
||||||
|
/* 3:55 */waypoints[115].type = "stand";
|
||||||
|
/* 3:55 */waypoints[115].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[115].children[0] = 114;
|
||||||
|
/* 3:55 */waypoints[115].children[1] = 116;
|
||||||
|
/* 3:55 */waypoints[116] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[116].origin =(1084.09, 993.811, 22.125);
|
||||||
|
/* 3:55 */waypoints[116].type = "stand";
|
||||||
|
/* 3:55 */waypoints[116].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[116].children[0] = 115;
|
||||||
|
/* 3:55 */waypoints[116].children[1] = 117;
|
||||||
|
/* 3:55 */waypoints[116].children[2] = 118;
|
||||||
|
/* 3:55 */waypoints[117] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[117].origin =(964.786, 830.18, 66.125);
|
||||||
|
/* 3:55 */waypoints[117].type = "climb";
|
||||||
|
/* 3:55 */waypoints[117].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[117].children[0] = 116;
|
||||||
|
/* 3:55 */waypoints[117].children[1] = 140;
|
||||||
|
/* 3:55 */waypoints[118] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[118].origin =(825.823, 1116.73, 19.484);
|
||||||
|
/* 3:55 */waypoints[118].type = "stand";
|
||||||
|
/* 3:55 */waypoints[118].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[118].children[0] = 116;
|
||||||
|
/* 3:55 */waypoints[118].children[1] = 119;
|
||||||
|
/* 3:55 */waypoints[118].children[2] = 16;
|
||||||
|
/* 3:55 */waypoints[119] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[119].origin =(700.96, 903.39, 24.125);
|
||||||
|
/* 3:55 */waypoints[119].type = "stand";
|
||||||
|
/* 3:55 */waypoints[119].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[119].children[0] = 118;
|
||||||
|
/* 3:55 */waypoints[119].children[1] = 120;
|
||||||
|
/* 3:55 */waypoints[120] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[120].origin =(661.093, 904.648, 24.125);
|
||||||
|
/* 3:55 */waypoints[120].type = "stand";
|
||||||
|
/* 3:55 */waypoints[120].childCount = 1;
|
||||||
|
/* 3:55 */waypoints[120].children[0] = 119;
|
||||||
|
/* 3:55 */waypoints[121] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[121].origin =(1432.68, 454.547, -66.8475);
|
||||||
|
/* 3:55 */waypoints[121].type = "stand";
|
||||||
|
/* 3:55 */waypoints[121].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[121].children[0] = 112;
|
||||||
|
/* 3:55 */waypoints[121].children[1] = 122;
|
||||||
|
/* 3:55 */waypoints[121].children[2] = 123;
|
||||||
|
/* 3:55 */waypoints[122] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[122].origin =(1766.57, 230.486, -67.875);
|
||||||
|
/* 3:55 */waypoints[122].type = "stand";
|
||||||
|
/* 3:55 */waypoints[122].childCount = 3;
|
||||||
|
/* 3:55 */waypoints[122].children[0] = 121;
|
||||||
|
/* 3:55 */waypoints[122].children[1] = 126;
|
||||||
|
/* 3:55 */waypoints[122].children[2] = 124;
|
||||||
|
/* 3:55 */waypoints[123] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[123].origin =(1285.56, 179.563, -67.875);
|
||||||
|
/* 3:55 */waypoints[123].type = "stand";
|
||||||
|
/* 3:55 */waypoints[123].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[123].children[0] = 121;
|
||||||
|
/* 3:55 */waypoints[123].children[1] = 124;
|
||||||
|
/* 3:55 */waypoints[124] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[124].origin =(1555.35, -20.2444, -67.875);
|
||||||
|
/* 3:55 */waypoints[124].type = "stand";
|
||||||
|
/* 3:55 */waypoints[124].childCount = 4;
|
||||||
|
/* 3:55 */waypoints[124].children[0] = 123;
|
||||||
|
/* 3:55 */waypoints[124].children[1] = 125;
|
||||||
|
/* 3:55 */waypoints[124].children[2] = 131;
|
||||||
|
/* 3:55 */waypoints[124].children[3] = 122;
|
||||||
|
/* 3:55 */waypoints[125] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[125].origin =(1911.16, -299.728, -67.875);
|
||||||
|
/* 3:55 */waypoints[125].type = "stand";
|
||||||
|
/* 3:55 */waypoints[125].childCount = 4;
|
||||||
|
/* 3:55 */waypoints[125].children[0] = 124;
|
||||||
|
/* 3:55 */waypoints[125].children[1] = 61;
|
||||||
|
/* 3:55 */waypoints[125].children[2] = 126;
|
||||||
|
/* 3:55 */waypoints[125].children[3] = 127;
|
||||||
|
/* 3:55 */waypoints[126] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[126].origin =(2174.32, -39.4204, -67.875);
|
||||||
|
/* 3:55 */waypoints[126].type = "stand";
|
||||||
|
/* 3:55 */waypoints[126].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[126].children[0] = 122;
|
||||||
|
/* 3:55 */waypoints[126].children[1] = 125;
|
||||||
|
/* 3:55 */waypoints[127] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[127].origin =(1950.02, -567.864, -61.875);
|
||||||
|
/* 3:55 */waypoints[127].type = "stand";
|
||||||
|
/* 3:55 */waypoints[127].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[127].children[0] = 125;
|
||||||
|
/* 3:55 */waypoints[127].children[1] = 128;
|
||||||
|
/* 3:55 */waypoints[128] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[128].origin =(1672.7, -714.63, -67.875);
|
||||||
|
/* 3:55 */waypoints[128].type = "stand";
|
||||||
|
/* 3:55 */waypoints[128].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[128].children[0] = 127;
|
||||||
|
/* 3:55 */waypoints[128].children[1] = 129;
|
||||||
|
/* 3:55 */waypoints[129] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[129].origin =(1407.39, -518.506, -67.875);
|
||||||
|
/* 3:55 */waypoints[129].type = "stand";
|
||||||
|
/* 3:55 */waypoints[129].childCount = 5;
|
||||||
|
/* 3:55 */waypoints[129].children[0] = 128;
|
||||||
|
/* 3:55 */waypoints[129].children[1] = 130;
|
||||||
|
/* 3:55 */waypoints[129].children[2] = 131;
|
||||||
|
/* 3:55 */waypoints[129].children[3] = 132;
|
||||||
|
/* 3:55 */waypoints[129].children[4] = 138;
|
||||||
|
/* 3:55 */waypoints[130] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[130].origin =(1378.33, -506.604, -67.875);
|
||||||
|
/* 3:55 */waypoints[130].type = "stand";
|
||||||
|
/* 3:55 */waypoints[130].childCount = 1;
|
||||||
|
/* 3:55 */waypoints[130].children[0] = 129;
|
||||||
|
/* 3:55 */waypoints[131] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[131].origin =(1319.96, -302.975, -67.875);
|
||||||
|
/* 3:55 */waypoints[131].type = "stand";
|
||||||
|
/* 3:55 */waypoints[131].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[131].children[0] = 129;
|
||||||
|
/* 3:55 */waypoints[131].children[1] = 124;
|
||||||
|
/* 3:55 */waypoints[132] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[132].origin =(1232.69, -736.088, -67.875);
|
||||||
|
/* 3:55 */waypoints[132].type = "stand";
|
||||||
|
/* 3:55 */waypoints[132].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[132].children[0] = 129;
|
||||||
|
/* 3:55 */waypoints[132].children[1] = 133;
|
||||||
|
/* 3:55 */waypoints[133] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[133].origin =(940.486, -1098.08, -55.875);
|
||||||
|
/* 3:55 */waypoints[133].type = "stand";
|
||||||
|
/* 3:55 */waypoints[133].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[133].children[0] = 132;
|
||||||
|
/* 3:55 */waypoints[133].children[1] = 77;
|
||||||
|
/* 3:55 */waypoints[134] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[134].origin =(585.565, -1642.06, -63.875);
|
||||||
|
/* 3:55 */waypoints[134].type = "stand";
|
||||||
|
/* 3:55 */waypoints[134].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[134].children[0] = 81;
|
||||||
|
/* 3:55 */waypoints[134].children[1] = 66;
|
||||||
|
/* 3:55 */waypoints[135] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[135].origin =(1979.34, 2106.92, -63.875);
|
||||||
|
/* 3:55 */waypoints[135].type = "stand";
|
||||||
|
/* 3:55 */waypoints[135].childCount = 1;
|
||||||
|
/* 3:55 */waypoints[135].children[0] = 3;
|
||||||
|
/* 3:55 */waypoints[136] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[136].origin =(-485.678, 371.612, -67.875);
|
||||||
|
/* 3:55 */waypoints[136].type = "stand";
|
||||||
|
/* 3:55 */waypoints[136].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[136].children[0] = 95;
|
||||||
|
/* 3:55 */waypoints[136].children[1] = 137;
|
||||||
|
/* 3:55 */waypoints[137] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[137].origin =(-414.353, 375.931, -67.875);
|
||||||
|
/* 3:55 */waypoints[137].type = "stand";
|
||||||
|
/* 3:55 */waypoints[137].childCount = 1;
|
||||||
|
/* 3:55 */waypoints[137].children[0] = 136;
|
||||||
|
/* 3:55 */waypoints[138] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[138].origin =(1426.18, -579.419, -67.875);
|
||||||
|
/* 3:55 */waypoints[138].type = "stand";
|
||||||
|
/* 3:55 */waypoints[138].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[138].children[0] = 129;
|
||||||
|
/* 3:55 */waypoints[138].children[1] = 139;
|
||||||
|
/* 3:55 */waypoints[139] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[139].origin =(1474.1, -684.276, -67.875);
|
||||||
|
/* 3:55 */waypoints[139].type = "stand";
|
||||||
|
/* 3:55 */waypoints[139].childCount = 1;
|
||||||
|
/* 3:55 */waypoints[139].children[0] = 138;
|
||||||
|
/* 3:55 */waypoints[140] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[140].origin =(963.146, 819.38, 267.51);
|
||||||
|
/* 3:55 */waypoints[140].type = "climb";
|
||||||
|
/* 3:55 */waypoints[140].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[140].children[0] = 117;
|
||||||
|
/* 3:55 */waypoints[140].children[1] = 141;
|
||||||
|
/* 3:55 */waypoints[140].angles = (61.0358, -125.963, 0);
|
||||||
|
/* 3:55 */waypoints[141] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[141].origin =(935.218, 782.827, 284.125);
|
||||||
|
/* 3:55 */waypoints[141].type = "stand";
|
||||||
|
/* 3:55 */waypoints[141].childCount = 1;
|
||||||
|
/* 3:55 */waypoints[141].children[0] = 140;
|
||||||
|
/* 3:55 */waypoints[141].angles = (43.0237, -132.615, 0);
|
||||||
|
/* 3:55 */waypoints[142] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[142].origin =(2851.99, 365.493, 125.855);
|
||||||
|
/* 3:55 */waypoints[142].type = "climb";
|
||||||
|
/* 3:55 */waypoints[142].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[142].children[0] = 38;
|
||||||
|
/* 3:55 */waypoints[142].children[1] = 143;
|
||||||
|
/* 3:55 */waypoints[142].angles = (59.5032, 141.499, 0);
|
||||||
|
/* 3:55 */waypoints[143] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[143].origin =(2781.1, 408.48, -19.875);
|
||||||
|
/* 3:55 */waypoints[143].type = "climb";
|
||||||
|
/* 3:55 */waypoints[143].childCount = 2;
|
||||||
|
/* 3:55 */waypoints[143].children[0] = 142;
|
||||||
|
/* 3:55 */waypoints[143].children[1] = 22;
|
||||||
|
/* 3:55 */waypoints[143].angles = (31.2573, 74.5704, 0);
|
||||||
|
/* 3:55 */waypoints[144] = spawnstruct();
|
||||||
|
/* 3:55 */waypoints[144].origin =(3357.47, 72.5815, 151.04);
|
||||||
|
/* 3:55 */waypoints[144].type = "stand";
|
||||||
|
/* 3:55 */waypoints[144].childCount = 1;
|
||||||
|
/* 3:55 */waypoints[144].children[0] = 39;
|
||||||
|
/* 3:55 */waypoints[144].angles = (6.79627, -9.42556, 0);
|
||||||
|
return waypoints;
|
||||||
|
}
|
1541
mods/bots/maps/mp/bots/waypoints/cliffhanger.gsc
Normal file
1541
mods/bots/maps/mp/bots/waypoints/cliffhanger.gsc
Normal file
File diff suppressed because it is too large
Load Diff
1141
mods/bots/maps/mp/bots/waypoints/contingency.gsc
Normal file
1141
mods/bots/maps/mp/bots/waypoints/contingency.gsc
Normal file
File diff suppressed because it is too large
Load Diff
1611
mods/bots/maps/mp/bots/waypoints/crash.gsc
Normal file
1611
mods/bots/maps/mp/bots/waypoints/crash.gsc
Normal file
File diff suppressed because it is too large
Load Diff
2189
mods/bots/maps/mp/bots/waypoints/crossfire.gsc
Normal file
2189
mods/bots/maps/mp/bots/waypoints/crossfire.gsc
Normal file
File diff suppressed because it is too large
Load Diff
4
mods/bots/maps/mp/bots/waypoints/dcburning.gsc
Normal file
4
mods/bots/maps/mp/bots/waypoints/dcburning.gsc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
DCBurning()
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
477
mods/bots/maps/mp/bots/waypoints/dcemp.gsc
Normal file
477
mods/bots/maps/mp/bots/waypoints/dcemp.gsc
Normal file
@ -0,0 +1,477 @@
|
|||||||
|
DCEMP()
|
||||||
|
{
|
||||||
|
/* 8:13 */waypoints = [];
|
||||||
|
/* 8:13 */waypoints[0] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[0].origin =(-44582.3, 15555.8, -83.875);
|
||||||
|
/* 8:13 */waypoints[0].type = "stand";
|
||||||
|
/* 8:13 */waypoints[0].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[0].children[0] = 1;
|
||||||
|
/* 8:13 */waypoints[0].children[1] = 2;
|
||||||
|
/* 8:13 */waypoints[1] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[1].origin =(-44449.6, 15470.7, -83.875);
|
||||||
|
/* 8:13 */waypoints[1].type = "stand";
|
||||||
|
/* 8:13 */waypoints[1].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[1].children[0] = 0;
|
||||||
|
/* 8:13 */waypoints[2] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[2].origin =(-44512.6, 15662, -83.875);
|
||||||
|
/* 8:13 */waypoints[2].type = "stand";
|
||||||
|
/* 8:13 */waypoints[2].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[2].children[0] = 0;
|
||||||
|
/* 8:13 */waypoints[2].children[1] = 3;
|
||||||
|
/* 8:13 */waypoints[2].children[2] = 15;
|
||||||
|
/* 8:13 */waypoints[3] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[3].origin =(-44675.6, 15765.6, -83.875);
|
||||||
|
/* 8:13 */waypoints[3].type = "stand";
|
||||||
|
/* 8:13 */waypoints[3].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[3].children[0] = 2;
|
||||||
|
/* 8:13 */waypoints[3].children[1] = 4;
|
||||||
|
/* 8:13 */waypoints[3].children[2] = 5;
|
||||||
|
/* 8:13 */waypoints[4] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[4].origin =(-44739.7, 15662.6, -83.875);
|
||||||
|
/* 8:13 */waypoints[4].type = "stand";
|
||||||
|
/* 8:13 */waypoints[4].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[4].children[0] = 3;
|
||||||
|
/* 8:13 */waypoints[5] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[5].origin =(-44682.3, 16010.7, -83.875);
|
||||||
|
/* 8:13 */waypoints[5].type = "stand";
|
||||||
|
/* 8:13 */waypoints[5].childCount = 5;
|
||||||
|
/* 8:13 */waypoints[5].children[0] = 3;
|
||||||
|
/* 8:13 */waypoints[5].children[1] = 6;
|
||||||
|
/* 8:13 */waypoints[5].children[2] = 9;
|
||||||
|
/* 8:13 */waypoints[5].children[3] = 10;
|
||||||
|
/* 8:13 */waypoints[5].children[4] = 33;
|
||||||
|
/* 8:13 */waypoints[6] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[6].origin =(-44538.3, 16262.6, -83.875);
|
||||||
|
/* 8:13 */waypoints[6].type = "stand";
|
||||||
|
/* 8:13 */waypoints[6].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[6].children[0] = 5;
|
||||||
|
/* 8:13 */waypoints[6].children[1] = 7;
|
||||||
|
/* 8:13 */waypoints[6].children[2] = 8;
|
||||||
|
/* 8:13 */waypoints[7] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[7].origin =(-44332.4, 16157.4, -83.3756);
|
||||||
|
/* 8:13 */waypoints[7].type = "stand";
|
||||||
|
/* 8:13 */waypoints[7].childCount = 4;
|
||||||
|
/* 8:13 */waypoints[7].children[0] = 6;
|
||||||
|
/* 8:13 */waypoints[7].children[1] = 11;
|
||||||
|
/* 8:13 */waypoints[7].children[2] = 14;
|
||||||
|
/* 8:13 */waypoints[7].children[3] = 33;
|
||||||
|
/* 8:13 */waypoints[8] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[8].origin =(-44728.9, 16339.4, -83.875);
|
||||||
|
/* 8:13 */waypoints[8].type = "stand";
|
||||||
|
/* 8:13 */waypoints[8].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[8].children[0] = 6;
|
||||||
|
/* 8:13 */waypoints[9] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[9].origin =(-44771.8, 16160.3, -83.875);
|
||||||
|
/* 8:13 */waypoints[9].type = "stand";
|
||||||
|
/* 8:13 */waypoints[9].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[9].children[0] = 5;
|
||||||
|
/* 8:13 */waypoints[10] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[10].origin =(-44531.9, 15898.7, -83.875);
|
||||||
|
/* 8:13 */waypoints[10].type = "stand";
|
||||||
|
/* 8:13 */waypoints[10].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[10].children[0] = 5;
|
||||||
|
/* 8:13 */waypoints[11] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[11].origin =(-44217.8, 16087.9, -80.5611);
|
||||||
|
/* 8:13 */waypoints[11].type = "stand";
|
||||||
|
/* 8:13 */waypoints[11].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[11].children[0] = 7;
|
||||||
|
/* 8:13 */waypoints[11].children[1] = 12;
|
||||||
|
/* 8:13 */waypoints[11].children[2] = 14;
|
||||||
|
/* 8:13 */waypoints[12] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[12].origin =(-43941.8, 15960.1, -83.875);
|
||||||
|
/* 8:13 */waypoints[12].type = "stand";
|
||||||
|
/* 8:13 */waypoints[12].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[12].children[0] = 11;
|
||||||
|
/* 8:13 */waypoints[12].children[1] = 13;
|
||||||
|
/* 8:13 */waypoints[12].children[2] = 24;
|
||||||
|
/* 8:13 */waypoints[13] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[13].origin =(-44030.6, 15639.2, -83.875);
|
||||||
|
/* 8:13 */waypoints[13].type = "stand";
|
||||||
|
/* 8:13 */waypoints[13].childCount = 4;
|
||||||
|
/* 8:13 */waypoints[13].children[0] = 12;
|
||||||
|
/* 8:13 */waypoints[13].children[1] = 14;
|
||||||
|
/* 8:13 */waypoints[13].children[2] = 19;
|
||||||
|
/* 8:13 */waypoints[13].children[3] = 20;
|
||||||
|
/* 8:13 */waypoints[14] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[14].origin =(-44291, 15735, -83.875);
|
||||||
|
/* 8:13 */waypoints[14].type = "stand";
|
||||||
|
/* 8:13 */waypoints[14].childCount = 4;
|
||||||
|
/* 8:13 */waypoints[14].children[0] = 13;
|
||||||
|
/* 8:13 */waypoints[14].children[1] = 15;
|
||||||
|
/* 8:13 */waypoints[14].children[2] = 7;
|
||||||
|
/* 8:13 */waypoints[14].children[3] = 11;
|
||||||
|
/* 8:13 */waypoints[15] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[15].origin =(-44365.4, 15603.7, -83.875);
|
||||||
|
/* 8:13 */waypoints[15].type = "stand";
|
||||||
|
/* 8:13 */waypoints[15].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[15].children[0] = 14;
|
||||||
|
/* 8:13 */waypoints[15].children[1] = 2;
|
||||||
|
/* 8:13 */waypoints[15].children[2] = 16;
|
||||||
|
/* 8:13 */waypoints[16] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[16].origin =(-44183.1, 15512.2, -83.875);
|
||||||
|
/* 8:13 */waypoints[16].type = "stand";
|
||||||
|
/* 8:13 */waypoints[16].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[16].children[0] = 15;
|
||||||
|
/* 8:13 */waypoints[16].children[1] = 17;
|
||||||
|
/* 8:13 */waypoints[16].children[2] = 19;
|
||||||
|
/* 8:13 */waypoints[17] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[17].origin =(-44237.4, 15387.6, -83.875);
|
||||||
|
/* 8:13 */waypoints[17].type = "stand";
|
||||||
|
/* 8:13 */waypoints[17].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[17].children[0] = 16;
|
||||||
|
/* 8:13 */waypoints[17].children[1] = 18;
|
||||||
|
/* 8:13 */waypoints[18] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[18].origin =(-44089.5, 15297.3, -83.875);
|
||||||
|
/* 8:13 */waypoints[18].type = "stand";
|
||||||
|
/* 8:13 */waypoints[18].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[18].children[0] = 17;
|
||||||
|
/* 8:13 */waypoints[19] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[19].origin =(-44108.6, 15489.2, -83.875);
|
||||||
|
/* 8:13 */waypoints[19].type = "stand";
|
||||||
|
/* 8:13 */waypoints[19].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[19].children[0] = 16;
|
||||||
|
/* 8:13 */waypoints[19].children[1] = 13;
|
||||||
|
/* 8:13 */waypoints[19].children[2] = 25;
|
||||||
|
/* 8:13 */waypoints[20] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[20].origin =(-43802, 15502.9, -83.875);
|
||||||
|
/* 8:13 */waypoints[20].type = "stand";
|
||||||
|
/* 8:13 */waypoints[20].childCount = 4;
|
||||||
|
/* 8:13 */waypoints[20].children[0] = 13;
|
||||||
|
/* 8:13 */waypoints[20].children[1] = 21;
|
||||||
|
/* 8:13 */waypoints[20].children[2] = 25;
|
||||||
|
/* 8:13 */waypoints[20].children[3] = 31;
|
||||||
|
/* 8:13 */waypoints[21] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[21].origin =(-43671.9, 15724.7, -83.875);
|
||||||
|
/* 8:13 */waypoints[21].type = "stand";
|
||||||
|
/* 8:13 */waypoints[21].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[21].children[0] = 20;
|
||||||
|
/* 8:13 */waypoints[21].children[1] = 22;
|
||||||
|
/* 8:13 */waypoints[21].children[2] = 24;
|
||||||
|
/* 8:13 */waypoints[22] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[22].origin =(-43576, 15586.4, -83.875);
|
||||||
|
/* 8:13 */waypoints[22].type = "stand";
|
||||||
|
/* 8:13 */waypoints[22].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[22].children[0] = 21;
|
||||||
|
/* 8:13 */waypoints[22].children[1] = 23;
|
||||||
|
/* 8:13 */waypoints[23] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[23].origin =(-43470.7, 15615.7, -83.875);
|
||||||
|
/* 8:13 */waypoints[23].type = "stand";
|
||||||
|
/* 8:13 */waypoints[23].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[23].children[0] = 22;
|
||||||
|
/* 8:13 */waypoints[24] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[24].origin =(-43649.9, 15806.1, -83.875);
|
||||||
|
/* 8:13 */waypoints[24].type = "stand";
|
||||||
|
/* 8:13 */waypoints[24].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[24].children[0] = 21;
|
||||||
|
/* 8:13 */waypoints[24].children[1] = 12;
|
||||||
|
/* 8:13 */waypoints[25] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[25].origin =(-43889.7, 15372.7, -83.875);
|
||||||
|
/* 8:13 */waypoints[25].type = "stand";
|
||||||
|
/* 8:13 */waypoints[25].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[25].children[0] = 20;
|
||||||
|
/* 8:13 */waypoints[25].children[1] = 19;
|
||||||
|
/* 8:13 */waypoints[25].children[2] = 26;
|
||||||
|
/* 8:13 */waypoints[26] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[26].origin =(-43771.7, 15266.6, -83.875);
|
||||||
|
/* 8:13 */waypoints[26].type = "stand";
|
||||||
|
/* 8:13 */waypoints[26].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[26].children[0] = 25;
|
||||||
|
/* 8:13 */waypoints[26].children[1] = 27;
|
||||||
|
/* 8:13 */waypoints[26].children[2] = 28;
|
||||||
|
/* 8:13 */waypoints[27] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[27].origin =(-43888.2, 15194.3, -83.875);
|
||||||
|
/* 8:13 */waypoints[27].type = "stand";
|
||||||
|
/* 8:13 */waypoints[27].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[27].children[0] = 26;
|
||||||
|
/* 8:13 */waypoints[28] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[28].origin =(-43576.5, 15384.9, -83.875);
|
||||||
|
/* 8:13 */waypoints[28].type = "stand";
|
||||||
|
/* 8:13 */waypoints[28].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[28].children[0] = 26;
|
||||||
|
/* 8:13 */waypoints[28].children[1] = 29;
|
||||||
|
/* 8:13 */waypoints[28].children[2] = 30;
|
||||||
|
/* 8:13 */waypoints[29] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[29].origin =(-43422.6, 15475, -83.875);
|
||||||
|
/* 8:13 */waypoints[29].type = "stand";
|
||||||
|
/* 8:13 */waypoints[29].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[29].children[0] = 28;
|
||||||
|
/* 8:13 */waypoints[30] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[30].origin =(-43535.4, 15267.4, -83.875);
|
||||||
|
/* 8:13 */waypoints[30].type = "stand";
|
||||||
|
/* 8:13 */waypoints[30].childCount = 5;
|
||||||
|
/* 8:13 */waypoints[30].children[0] = 28;
|
||||||
|
/* 8:13 */waypoints[30].children[1] = 34;
|
||||||
|
/* 8:13 */waypoints[30].children[2] = 36;
|
||||||
|
/* 8:13 */waypoints[30].children[3] = 37;
|
||||||
|
/* 8:13 */waypoints[30].children[4] = 38;
|
||||||
|
/* 8:13 */waypoints[31] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[31].origin =(-43710.9, 15469.8, -83.875);
|
||||||
|
/* 8:13 */waypoints[31].type = "stand";
|
||||||
|
/* 8:13 */waypoints[31].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[31].children[0] = 20;
|
||||||
|
/* 8:13 */waypoints[32] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[32].origin =(-44473.6, 15991.2, -83.875);
|
||||||
|
/* 8:13 */waypoints[32].type = "stand";
|
||||||
|
/* 8:13 */waypoints[32].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[32].children[0] = 33;
|
||||||
|
/* 8:13 */waypoints[33] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[33].origin =(-44488.2, 16066, -83.875);
|
||||||
|
/* 8:13 */waypoints[33].type = "stand";
|
||||||
|
/* 8:13 */waypoints[33].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[33].children[0] = 32;
|
||||||
|
/* 8:13 */waypoints[33].children[1] = 5;
|
||||||
|
/* 8:13 */waypoints[33].children[2] = 7;
|
||||||
|
/* 8:13 */waypoints[34] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[34].origin =(-43311.1, 15347.1, -83.875);
|
||||||
|
/* 8:13 */waypoints[34].type = "stand";
|
||||||
|
/* 8:13 */waypoints[34].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[34].children[0] = 30;
|
||||||
|
/* 8:13 */waypoints[34].children[1] = 35;
|
||||||
|
/* 8:13 */waypoints[35] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[35].origin =(-43298.9, 15142.6, -83.875);
|
||||||
|
/* 8:13 */waypoints[35].type = "stand";
|
||||||
|
/* 8:13 */waypoints[35].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[35].children[0] = 34;
|
||||||
|
/* 8:13 */waypoints[35].children[1] = 36;
|
||||||
|
/* 8:13 */waypoints[36] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[36].origin =(-43461.7, 15143, -83.875);
|
||||||
|
/* 8:13 */waypoints[36].type = "stand";
|
||||||
|
/* 8:13 */waypoints[36].childCount = 4;
|
||||||
|
/* 8:13 */waypoints[36].children[0] = 35;
|
||||||
|
/* 8:13 */waypoints[36].children[1] = 30;
|
||||||
|
/* 8:13 */waypoints[36].children[2] = 62;
|
||||||
|
/* 8:13 */waypoints[36].children[3] = 64;
|
||||||
|
/* 8:13 */waypoints[37] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[37].origin =(-43593.3, 14950.6, -83.875);
|
||||||
|
/* 8:13 */waypoints[37].type = "stand";
|
||||||
|
/* 8:13 */waypoints[37].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[37].children[0] = 30;
|
||||||
|
/* 8:13 */waypoints[38] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[38].origin =(-43786.4, 15055.9, -83.875);
|
||||||
|
/* 8:13 */waypoints[38].type = "stand";
|
||||||
|
/* 8:13 */waypoints[38].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[38].children[0] = 30;
|
||||||
|
/* 8:13 */waypoints[38].children[1] = 39;
|
||||||
|
/* 8:13 */waypoints[38].children[2] = 40;
|
||||||
|
/* 8:13 */waypoints[39] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[39].origin =(-43887.9, 15025, -83.875);
|
||||||
|
/* 8:13 */waypoints[39].type = "stand";
|
||||||
|
/* 8:13 */waypoints[39].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[39].children[0] = 38;
|
||||||
|
/* 8:13 */waypoints[40] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[40].origin =(-43771, 14840.1, -83.875);
|
||||||
|
/* 8:13 */waypoints[40].type = "stand";
|
||||||
|
/* 8:13 */waypoints[40].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[40].children[0] = 38;
|
||||||
|
/* 8:13 */waypoints[40].children[1] = 41;
|
||||||
|
/* 8:13 */waypoints[40].children[2] = 43;
|
||||||
|
/* 8:13 */waypoints[41] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[41].origin =(-43897.1, 14839.6, -83.875);
|
||||||
|
/* 8:13 */waypoints[41].type = "stand";
|
||||||
|
/* 8:13 */waypoints[41].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[41].children[0] = 40;
|
||||||
|
/* 8:13 */waypoints[41].children[1] = 42;
|
||||||
|
/* 8:13 */waypoints[42] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[42].origin =(-43901.6, 14671.9, -83.875);
|
||||||
|
/* 8:13 */waypoints[42].type = "stand";
|
||||||
|
/* 8:13 */waypoints[42].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[42].children[0] = 41;
|
||||||
|
/* 8:13 */waypoints[43] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[43].origin =(-43773.5, 14671.3, -83.875);
|
||||||
|
/* 8:13 */waypoints[43].type = "stand";
|
||||||
|
/* 8:13 */waypoints[43].childCount = 4;
|
||||||
|
/* 8:13 */waypoints[43].children[0] = 40;
|
||||||
|
/* 8:13 */waypoints[43].children[1] = 44;
|
||||||
|
/* 8:13 */waypoints[43].children[2] = 61;
|
||||||
|
/* 8:13 */waypoints[43].children[3] = 62;
|
||||||
|
/* 8:13 */waypoints[44] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[44].origin =(-43736.4, 14459.9, -83.875);
|
||||||
|
/* 8:13 */waypoints[44].type = "stand";
|
||||||
|
/* 8:13 */waypoints[44].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[44].children[0] = 43;
|
||||||
|
/* 8:13 */waypoints[44].children[1] = 45;
|
||||||
|
/* 8:13 */waypoints[44].children[2] = 47;
|
||||||
|
/* 8:13 */waypoints[45] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[45].origin =(-43881.7, 14468.2, -83.875);
|
||||||
|
/* 8:13 */waypoints[45].type = "stand";
|
||||||
|
/* 8:13 */waypoints[45].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[45].children[0] = 44;
|
||||||
|
/* 8:13 */waypoints[45].children[1] = 46;
|
||||||
|
/* 8:13 */waypoints[46] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[46].origin =(-43898.6, 14265.2, -83.875);
|
||||||
|
/* 8:13 */waypoints[46].type = "stand";
|
||||||
|
/* 8:13 */waypoints[46].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[46].children[0] = 45;
|
||||||
|
/* 8:13 */waypoints[47] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[47].origin =(-43733.4, 14352.9, -83.875);
|
||||||
|
/* 8:13 */waypoints[47].type = "stand";
|
||||||
|
/* 8:13 */waypoints[47].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[47].children[0] = 44;
|
||||||
|
/* 8:13 */waypoints[47].children[1] = 48;
|
||||||
|
/* 8:13 */waypoints[47].children[2] = 59;
|
||||||
|
/* 8:13 */waypoints[48] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[48].origin =(-43582.4, 14346.3, -83.875);
|
||||||
|
/* 8:13 */waypoints[48].type = "stand";
|
||||||
|
/* 8:13 */waypoints[48].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[48].children[0] = 47;
|
||||||
|
/* 8:13 */waypoints[48].children[1] = 49;
|
||||||
|
/* 8:13 */waypoints[48].children[2] = 57;
|
||||||
|
/* 8:13 */waypoints[49] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[49].origin =(-43581.1, 14498.7, -83.875);
|
||||||
|
/* 8:13 */waypoints[49].type = "stand";
|
||||||
|
/* 8:13 */waypoints[49].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[49].children[0] = 48;
|
||||||
|
/* 8:13 */waypoints[49].children[1] = 50;
|
||||||
|
/* 8:13 */waypoints[50] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[50].origin =(-43507.3, 14482, -83.875);
|
||||||
|
/* 8:13 */waypoints[50].type = "stand";
|
||||||
|
/* 8:13 */waypoints[50].childCount = 4;
|
||||||
|
/* 8:13 */waypoints[50].children[0] = 49;
|
||||||
|
/* 8:13 */waypoints[50].children[1] = 51;
|
||||||
|
/* 8:13 */waypoints[50].children[2] = 52;
|
||||||
|
/* 8:13 */waypoints[50].children[3] = 61;
|
||||||
|
/* 8:13 */waypoints[51] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[51].origin =(-43487.7, 14375.4, -83.875);
|
||||||
|
/* 8:13 */waypoints[51].type = "stand";
|
||||||
|
/* 8:13 */waypoints[51].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[51].children[0] = 50;
|
||||||
|
/* 8:13 */waypoints[52] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[52].origin =(-43283.6, 14466.5, -83.875);
|
||||||
|
/* 8:13 */waypoints[52].type = "stand";
|
||||||
|
/* 8:13 */waypoints[52].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[52].children[0] = 50;
|
||||||
|
/* 8:13 */waypoints[52].children[1] = 53;
|
||||||
|
/* 8:13 */waypoints[52].children[2] = 62;
|
||||||
|
/* 8:13 */waypoints[53] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[53].origin =(-43223.5, 14405.2, -83.875);
|
||||||
|
/* 8:13 */waypoints[53].type = "stand";
|
||||||
|
/* 8:13 */waypoints[53].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[53].children[0] = 52;
|
||||||
|
/* 8:13 */waypoints[53].children[1] = 54;
|
||||||
|
/* 8:13 */waypoints[54] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[54].origin =(-43258.3, 14133.8, -83.875);
|
||||||
|
/* 8:13 */waypoints[54].type = "stand";
|
||||||
|
/* 8:13 */waypoints[54].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[54].children[0] = 53;
|
||||||
|
/* 8:13 */waypoints[54].children[1] = 55;
|
||||||
|
/* 8:13 */waypoints[54].children[2] = 57;
|
||||||
|
/* 8:13 */waypoints[55] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[55].origin =(-43438.1, 13969.5, -83.875);
|
||||||
|
/* 8:13 */waypoints[55].type = "stand";
|
||||||
|
/* 8:13 */waypoints[55].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[55].children[0] = 54;
|
||||||
|
/* 8:13 */waypoints[55].children[1] = 56;
|
||||||
|
/* 8:13 */waypoints[56] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[56].origin =(-43336.4, 13879.9, -83.875);
|
||||||
|
/* 8:13 */waypoints[56].type = "stand";
|
||||||
|
/* 8:13 */waypoints[56].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[56].children[0] = 55;
|
||||||
|
/* 8:13 */waypoints[57] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[57].origin =(-43579.8, 14196.1, -83.875);
|
||||||
|
/* 8:13 */waypoints[57].type = "stand";
|
||||||
|
/* 8:13 */waypoints[57].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[57].children[0] = 54;
|
||||||
|
/* 8:13 */waypoints[57].children[1] = 48;
|
||||||
|
/* 8:13 */waypoints[57].children[2] = 58;
|
||||||
|
/* 8:13 */waypoints[58] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[58].origin =(-43589.1, 14057, -83.875);
|
||||||
|
/* 8:13 */waypoints[58].type = "stand";
|
||||||
|
/* 8:13 */waypoints[58].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[58].children[0] = 57;
|
||||||
|
/* 8:13 */waypoints[58].children[1] = 59;
|
||||||
|
/* 8:13 */waypoints[59] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[59].origin =(-43744.6, 14013.5, -83.875);
|
||||||
|
/* 8:13 */waypoints[59].type = "stand";
|
||||||
|
/* 8:13 */waypoints[59].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[59].children[0] = 58;
|
||||||
|
/* 8:13 */waypoints[59].children[1] = 47;
|
||||||
|
/* 8:13 */waypoints[59].children[2] = 60;
|
||||||
|
/* 8:13 */waypoints[60] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[60].origin =(-43888.7, 14011.7, -83.875);
|
||||||
|
/* 8:13 */waypoints[60].type = "stand";
|
||||||
|
/* 8:13 */waypoints[60].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[60].children[0] = 59;
|
||||||
|
/* 8:13 */waypoints[60].children[1] = 65;
|
||||||
|
/* 8:13 */waypoints[61] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[61].origin =(-43516.3, 14608.9, -83.875);
|
||||||
|
/* 8:13 */waypoints[61].type = "stand";
|
||||||
|
/* 8:13 */waypoints[61].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[61].children[0] = 50;
|
||||||
|
/* 8:13 */waypoints[61].children[1] = 43;
|
||||||
|
/* 8:13 */waypoints[62] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[62].origin =(-43318.7, 14807.3, -83.875);
|
||||||
|
/* 8:13 */waypoints[62].type = "stand";
|
||||||
|
/* 8:13 */waypoints[62].childCount = 4;
|
||||||
|
/* 8:13 */waypoints[62].children[0] = 43;
|
||||||
|
/* 8:13 */waypoints[62].children[1] = 63;
|
||||||
|
/* 8:13 */waypoints[62].children[2] = 52;
|
||||||
|
/* 8:13 */waypoints[62].children[3] = 36;
|
||||||
|
/* 8:13 */waypoints[63] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[63].origin =(-43389.8, 14644.5, -83.875);
|
||||||
|
/* 8:13 */waypoints[63].type = "stand";
|
||||||
|
/* 8:13 */waypoints[63].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[63].children[0] = 62;
|
||||||
|
/* 8:13 */waypoints[64] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[64].origin =(-43455, 14956.8, -83.875);
|
||||||
|
/* 8:13 */waypoints[64].type = "stand";
|
||||||
|
/* 8:13 */waypoints[64].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[64].children[0] = 36;
|
||||||
|
/* 8:13 */waypoints[65] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[65].origin =(-43889.7, 13894.2, -83.875);
|
||||||
|
/* 8:13 */waypoints[65].type = "stand";
|
||||||
|
/* 8:13 */waypoints[65].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[65].children[0] = 60;
|
||||||
|
/* 8:13 */waypoints[65].children[1] = 66;
|
||||||
|
/* 8:13 */waypoints[65].children[2] = 67;
|
||||||
|
/* 8:13 */waypoints[66] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[66].origin =(-44481.6, 13879.5, -83.875);
|
||||||
|
/* 8:13 */waypoints[66].type = "stand";
|
||||||
|
/* 8:13 */waypoints[66].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[66].children[0] = 65;
|
||||||
|
/* 8:13 */waypoints[67] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[67].origin =(-43602.7, 13860.6, -83.875);
|
||||||
|
/* 8:13 */waypoints[67].type = "stand";
|
||||||
|
/* 8:13 */waypoints[67].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[67].children[0] = 65;
|
||||||
|
/* 8:13 */waypoints[67].children[1] = 68;
|
||||||
|
/* 8:13 */waypoints[68] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[68].origin =(-43629.6, 13480.7, -259.875);
|
||||||
|
/* 8:13 */waypoints[68].type = "stand";
|
||||||
|
/* 8:13 */waypoints[68].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[68].children[0] = 67;
|
||||||
|
/* 8:13 */waypoints[68].children[1] = 69;
|
||||||
|
/* 8:13 */waypoints[68].children[2] = 71;
|
||||||
|
/* 8:13 */waypoints[69] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[69].origin =(-43781.3, 13269.6, -259.875);
|
||||||
|
/* 8:13 */waypoints[69].type = "stand";
|
||||||
|
/* 8:13 */waypoints[69].childCount = 3;
|
||||||
|
/* 8:13 */waypoints[69].children[0] = 68;
|
||||||
|
/* 8:13 */waypoints[69].children[1] = 70;
|
||||||
|
/* 8:13 */waypoints[69].children[2] = 71;
|
||||||
|
/* 8:13 */waypoints[70] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[70].origin =(-43880.9, 13414.1, -259.875);
|
||||||
|
/* 8:13 */waypoints[70].type = "stand";
|
||||||
|
/* 8:13 */waypoints[70].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[70].children[0] = 69;
|
||||||
|
/* 8:13 */waypoints[70].children[1] = 71;
|
||||||
|
/* 8:13 */waypoints[71] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[71].origin =(-43806.7, 13518, -259.875);
|
||||||
|
/* 8:13 */waypoints[71].type = "stand";
|
||||||
|
/* 8:13 */waypoints[71].childCount = 4;
|
||||||
|
/* 8:13 */waypoints[71].children[0] = 70;
|
||||||
|
/* 8:13 */waypoints[71].children[1] = 68;
|
||||||
|
/* 8:13 */waypoints[71].children[2] = 72;
|
||||||
|
/* 8:13 */waypoints[71].children[3] = 69;
|
||||||
|
/* 8:13 */waypoints[72] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[72].origin =(-43974.8, 13676.7, -259.875);
|
||||||
|
/* 8:13 */waypoints[72].type = "stand";
|
||||||
|
/* 8:13 */waypoints[72].childCount = 2;
|
||||||
|
/* 8:13 */waypoints[72].children[0] = 71;
|
||||||
|
/* 8:13 */waypoints[72].children[1] = 73;
|
||||||
|
/* 8:13 */waypoints[73] = spawnstruct();
|
||||||
|
/* 8:13 */waypoints[73].origin =(-43719.7, 13724.1, -259.875);
|
||||||
|
/* 8:13 */waypoints[73].type = "stand";
|
||||||
|
/* 8:13 */waypoints[73].childCount = 1;
|
||||||
|
/* 8:13 */waypoints[73].children[0] = 72;
|
||||||
|
/* 8:13 */return waypoints;
|
||||||
|
}
|
1737
mods/bots/maps/mp/bots/waypoints/derail.gsc
Normal file
1737
mods/bots/maps/mp/bots/waypoints/derail.gsc
Normal file
File diff suppressed because it is too large
Load Diff
4
mods/bots/maps/mp/bots/waypoints/downtown.gsc
Normal file
4
mods/bots/maps/mp/bots/waypoints/downtown.gsc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Downtown()
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
1326
mods/bots/maps/mp/bots/waypoints/estate.gsc
Normal file
1326
mods/bots/maps/mp/bots/waypoints/estate.gsc
Normal file
File diff suppressed because it is too large
Load Diff
4
mods/bots/maps/mp/bots/waypoints/estatesp.gsc
Normal file
4
mods/bots/maps/mp/bots/waypoints/estatesp.gsc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
EstateSP()
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
1093
mods/bots/maps/mp/bots/waypoints/favela.gsc
Normal file
1093
mods/bots/maps/mp/bots/waypoints/favela.gsc
Normal file
File diff suppressed because it is too large
Load Diff
4
mods/bots/maps/mp/bots/waypoints/favelaescape.gsc
Normal file
4
mods/bots/maps/mp/bots/waypoints/favelaescape.gsc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
FavelaEscape()
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
4
mods/bots/maps/mp/bots/waypoints/favelasp.gsc
Normal file
4
mods/bots/maps/mp/bots/waypoints/favelasp.gsc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
FavelaSP()
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
1434
mods/bots/maps/mp/bots/waypoints/firingrange.gsc
Normal file
1434
mods/bots/maps/mp/bots/waypoints/firingrange.gsc
Normal file
File diff suppressed because it is too large
Load Diff
1619
mods/bots/maps/mp/bots/waypoints/fuel.gsc
Normal file
1619
mods/bots/maps/mp/bots/waypoints/fuel.gsc
Normal file
File diff suppressed because it is too large
Load Diff
631
mods/bots/maps/mp/bots/waypoints/gulag.gsc
Normal file
631
mods/bots/maps/mp/bots/waypoints/gulag.gsc
Normal file
@ -0,0 +1,631 @@
|
|||||||
|
Gulag()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
/* 4:28 */waypoints[0] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[0].origin =(-3671.16, 238.066, 1594.13);
|
||||||
|
/* 4:28 */waypoints[0].type = "stand";
|
||||||
|
/* 4:28 */waypoints[0].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[0].children[0] = 1;
|
||||||
|
/* 4:28 */waypoints[0].children[1] = 8;
|
||||||
|
/* 4:28 */waypoints[1] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[1].origin =(-3741.01, 163.309, 1594.13);
|
||||||
|
/* 4:28 */waypoints[1].type = "stand";
|
||||||
|
/* 4:28 */waypoints[1].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[1].children[0] = 0;
|
||||||
|
/* 4:28 */waypoints[1].children[1] = 2;
|
||||||
|
/* 4:28 */waypoints[2] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[2].origin =(-4104.97, 412.117, 1672.13);
|
||||||
|
/* 4:28 */waypoints[2].type = "stand";
|
||||||
|
/* 4:28 */waypoints[2].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[2].children[0] = 1;
|
||||||
|
/* 4:28 */waypoints[2].children[1] = 3;
|
||||||
|
/* 4:28 */waypoints[2].children[2] = 8;
|
||||||
|
/* 4:28 */waypoints[3] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[3].origin =(-4134.12, 595.487, 1672.13);
|
||||||
|
/* 4:28 */waypoints[3].type = "stand";
|
||||||
|
/* 4:28 */waypoints[3].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[3].children[0] = 2;
|
||||||
|
/* 4:28 */waypoints[3].children[1] = 4;
|
||||||
|
/* 4:28 */waypoints[3].children[2] = 8;
|
||||||
|
/* 4:28 */waypoints[4] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[4].origin =(-3939.28, 874.525, 1760.13);
|
||||||
|
/* 4:28 */waypoints[4].type = "stand";
|
||||||
|
/* 4:28 */waypoints[4].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[4].children[0] = 3;
|
||||||
|
/* 4:28 */waypoints[4].children[1] = 5;
|
||||||
|
/* 4:28 */waypoints[4].children[2] = 7;
|
||||||
|
/* 4:28 */waypoints[5] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[5].origin =(-3677.17, 1253.13, 1864.13);
|
||||||
|
/* 4:28 */waypoints[5].type = "stand";
|
||||||
|
/* 4:28 */waypoints[5].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[5].children[0] = 4;
|
||||||
|
/* 4:28 */waypoints[5].children[1] = 6;
|
||||||
|
/* 4:28 */waypoints[5].children[2] = 9;
|
||||||
|
/* 4:28 */waypoints[6] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[6].origin =(-3591.87, 1193.01, 1864.13);
|
||||||
|
/* 4:28 */waypoints[6].type = "stand";
|
||||||
|
/* 4:28 */waypoints[6].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[6].children[0] = 5;
|
||||||
|
/* 4:28 */waypoints[6].children[1] = 7;
|
||||||
|
/* 4:28 */waypoints[6].children[2] = 9;
|
||||||
|
/* 4:28 */waypoints[7] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[7].origin =(-3864.71, 816.154, 1760.13);
|
||||||
|
/* 4:28 */waypoints[7].type = "stand";
|
||||||
|
/* 4:28 */waypoints[7].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[7].children[0] = 6;
|
||||||
|
/* 4:28 */waypoints[7].children[1] = 4;
|
||||||
|
/* 4:28 */waypoints[7].children[2] = 8;
|
||||||
|
/* 4:28 */waypoints[8] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[8].origin =(-4039.63, 501.935, 1672.13);
|
||||||
|
/* 4:28 */waypoints[8].type = "stand";
|
||||||
|
/* 4:28 */waypoints[8].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[8].children[0] = 7;
|
||||||
|
/* 4:28 */waypoints[8].children[1] = 2;
|
||||||
|
/* 4:28 */waypoints[8].children[2] = 3;
|
||||||
|
/* 4:28 */waypoints[8].children[3] = 0;
|
||||||
|
/* 4:28 */waypoints[9] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[9].origin =(-3438.55, 1517.88, 1866.89);
|
||||||
|
/* 4:28 */waypoints[9].type = "stand";
|
||||||
|
/* 4:28 */waypoints[9].childCount = 5;
|
||||||
|
/* 4:28 */waypoints[9].children[0] = 6;
|
||||||
|
/* 4:28 */waypoints[9].children[1] = 10;
|
||||||
|
/* 4:28 */waypoints[9].children[2] = 5;
|
||||||
|
/* 4:28 */waypoints[9].children[3] = 14;
|
||||||
|
/* 4:28 */waypoints[9].children[4] = 16;
|
||||||
|
/* 4:28 */waypoints[10] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[10].origin =(-3501.86, 1596.79, 1869.59);
|
||||||
|
/* 4:28 */waypoints[10].type = "stand";
|
||||||
|
/* 4:28 */waypoints[10].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[10].children[0] = 9;
|
||||||
|
/* 4:28 */waypoints[10].children[1] = 11;
|
||||||
|
/* 4:28 */waypoints[11] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[11].origin =(-3352.35, 1831.07, 1988.13);
|
||||||
|
/* 4:28 */waypoints[11].type = "stand";
|
||||||
|
/* 4:28 */waypoints[11].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[11].children[0] = 10;
|
||||||
|
/* 4:28 */waypoints[11].children[1] = 12;
|
||||||
|
/* 4:28 */waypoints[12] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[12].origin =(-3447.24, 1888.77, 1988.13);
|
||||||
|
/* 4:28 */waypoints[12].type = "stand";
|
||||||
|
/* 4:28 */waypoints[12].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[12].children[0] = 11;
|
||||||
|
/* 4:28 */waypoints[12].children[1] = 13;
|
||||||
|
/* 4:28 */waypoints[13] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[13].origin =(-3690.92, 1574.4, 1988.13);
|
||||||
|
/* 4:28 */waypoints[13].type = "stand";
|
||||||
|
/* 4:28 */waypoints[13].childCount = 1;
|
||||||
|
/* 4:28 */waypoints[13].children[0] = 12;
|
||||||
|
/* 4:28 */waypoints[14] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[14].origin =(-3055.35, 1354.1, 1869.63);
|
||||||
|
/* 4:28 */waypoints[14].type = "stand";
|
||||||
|
/* 4:28 */waypoints[14].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[14].children[0] = 9;
|
||||||
|
/* 4:28 */waypoints[14].children[1] = 15;
|
||||||
|
/* 4:28 */waypoints[15] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[15].origin =(-2850.01, 1346.11, 1870.93);
|
||||||
|
/* 4:28 */waypoints[15].type = "stand";
|
||||||
|
/* 4:28 */waypoints[15].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[15].children[0] = 16;
|
||||||
|
/* 4:28 */waypoints[15].children[1] = 14;
|
||||||
|
/* 4:28 */waypoints[15].children[2] = 18;
|
||||||
|
/* 4:28 */waypoints[16] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[16].origin =(-2862.63, 1642.03, 1871.8);
|
||||||
|
/* 4:28 */waypoints[16].type = "stand";
|
||||||
|
/* 4:28 */waypoints[16].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[16].children[0] = 15;
|
||||||
|
/* 4:28 */waypoints[16].children[1] = 9;
|
||||||
|
/* 4:28 */waypoints[17] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[17].origin =(-2486.82, 1202.89, 1875.67);
|
||||||
|
/* 4:28 */waypoints[17].type = "stand";
|
||||||
|
/* 4:28 */waypoints[17].childCount = 1;
|
||||||
|
/* 4:28 */waypoints[17].children[0] = 18;
|
||||||
|
/* 4:28 */waypoints[18] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[18].origin =(-2683.43, 1109.24, 1869.55);
|
||||||
|
/* 4:28 */waypoints[18].type = "stand";
|
||||||
|
/* 4:28 */waypoints[18].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[18].children[0] = 17;
|
||||||
|
/* 4:28 */waypoints[18].children[1] = 15;
|
||||||
|
/* 4:28 */waypoints[18].children[2] = 19;
|
||||||
|
/* 4:28 */waypoints[19] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[19].origin =(-2645.36, 895.112, 1869.48);
|
||||||
|
/* 4:28 */waypoints[19].type = "stand";
|
||||||
|
/* 4:28 */waypoints[19].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[19].children[0] = 18;
|
||||||
|
/* 4:28 */waypoints[19].children[1] = 20;
|
||||||
|
/* 4:28 */waypoints[19].children[2] = 26;
|
||||||
|
/* 4:28 */waypoints[19].children[3] = 31;
|
||||||
|
/* 4:28 */waypoints[20] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[20].origin =(-2969.05, 730.048, 1892.18);
|
||||||
|
/* 4:28 */waypoints[20].type = "stand";
|
||||||
|
/* 4:28 */waypoints[20].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[20].children[0] = 19;
|
||||||
|
/* 4:28 */waypoints[20].children[1] = 21;
|
||||||
|
/* 4:28 */waypoints[21] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[21].origin =(-2843.3, 379.002, 1890.13);
|
||||||
|
/* 4:28 */waypoints[21].type = "stand";
|
||||||
|
/* 4:28 */waypoints[21].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[21].children[0] = 20;
|
||||||
|
/* 4:28 */waypoints[21].children[1] = 22;
|
||||||
|
/* 4:28 */waypoints[21].children[2] = 25;
|
||||||
|
/* 4:28 */waypoints[21].children[3] = 31;
|
||||||
|
/* 4:28 */waypoints[22] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[22].origin =(-2953.87, 191.461, 1900.37);
|
||||||
|
/* 4:28 */waypoints[22].type = "stand";
|
||||||
|
/* 4:28 */waypoints[22].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[22].children[0] = 21;
|
||||||
|
/* 4:28 */waypoints[22].children[1] = 23;
|
||||||
|
/* 4:28 */waypoints[22].children[2] = 24;
|
||||||
|
/* 4:28 */waypoints[23] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[23].origin =(-3240.71, 388.413, 1895.59);
|
||||||
|
/* 4:28 */waypoints[23].type = "stand";
|
||||||
|
/* 4:28 */waypoints[23].childCount = 1;
|
||||||
|
/* 4:28 */waypoints[23].children[0] = 22;
|
||||||
|
/* 4:28 */waypoints[24] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[24].origin =(-2634.62, -48.582, 1904.77);
|
||||||
|
/* 4:28 */waypoints[24].type = "stand";
|
||||||
|
/* 4:28 */waypoints[24].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[24].children[0] = 22;
|
||||||
|
/* 4:28 */waypoints[24].children[1] = 25;
|
||||||
|
/* 4:28 */waypoints[25] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[25].origin =(-2512.45, 147.555, 1888.63);
|
||||||
|
/* 4:28 */waypoints[25].type = "stand";
|
||||||
|
/* 4:28 */waypoints[25].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[25].children[0] = 24;
|
||||||
|
/* 4:28 */waypoints[25].children[1] = 21;
|
||||||
|
/* 4:28 */waypoints[25].children[2] = 30;
|
||||||
|
/* 4:28 */waypoints[26] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[26].origin =(-2281.34, 946.523, 1869.67);
|
||||||
|
/* 4:28 */waypoints[26].type = "stand";
|
||||||
|
/* 4:28 */waypoints[26].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[26].children[0] = 19;
|
||||||
|
/* 4:28 */waypoints[26].children[1] = 27;
|
||||||
|
/* 4:28 */waypoints[26].children[2] = 31;
|
||||||
|
/* 4:28 */waypoints[27] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[27].origin =(-1959.54, 759.388, 1869.37);
|
||||||
|
/* 4:28 */waypoints[27].type = "stand";
|
||||||
|
/* 4:28 */waypoints[27].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[27].children[0] = 26;
|
||||||
|
/* 4:28 */waypoints[27].children[1] = 28;
|
||||||
|
/* 4:28 */waypoints[27].children[2] = 35;
|
||||||
|
/* 4:28 */waypoints[28] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[28].origin =(-2062.06, 597.116, 1868.47);
|
||||||
|
/* 4:28 */waypoints[28].type = "stand";
|
||||||
|
/* 4:28 */waypoints[28].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[28].children[0] = 27;
|
||||||
|
/* 4:28 */waypoints[28].children[1] = 29;
|
||||||
|
/* 4:28 */waypoints[28].children[2] = 51;
|
||||||
|
/* 4:28 */waypoints[29] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[29].origin =(-2144.51, 467.145, 1869.52);
|
||||||
|
/* 4:28 */waypoints[29].type = "stand";
|
||||||
|
/* 4:28 */waypoints[29].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[29].children[0] = 28;
|
||||||
|
/* 4:28 */waypoints[29].children[1] = 30;
|
||||||
|
/* 4:28 */waypoints[30] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[30].origin =(-2325.13, 511.607, 1870.03);
|
||||||
|
/* 4:28 */waypoints[30].type = "stand";
|
||||||
|
/* 4:28 */waypoints[30].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[30].children[0] = 29;
|
||||||
|
/* 4:28 */waypoints[30].children[1] = 25;
|
||||||
|
/* 4:28 */waypoints[30].children[2] = 31;
|
||||||
|
/* 4:28 */waypoints[31] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[31].origin =(-2524.03, 649.648, 1868.63);
|
||||||
|
/* 4:28 */waypoints[31].type = "stand";
|
||||||
|
/* 4:28 */waypoints[31].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[31].children[0] = 21;
|
||||||
|
/* 4:28 */waypoints[31].children[1] = 19;
|
||||||
|
/* 4:28 */waypoints[31].children[2] = 30;
|
||||||
|
/* 4:28 */waypoints[31].children[3] = 26;
|
||||||
|
/* 4:28 */waypoints[32] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[32].origin =(-1918.91, 943.482, 1872.13);
|
||||||
|
/* 4:28 */waypoints[32].type = "crouch";
|
||||||
|
/* 4:28 */waypoints[32].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[32].children[0] = 33;
|
||||||
|
/* 4:28 */waypoints[32].children[1] = 35;
|
||||||
|
/* 4:28 */waypoints[33] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[33].origin =(-1660.67, 1151.82, 1872.13);
|
||||||
|
/* 4:28 */waypoints[33].type = "stand";
|
||||||
|
/* 4:28 */waypoints[33].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[33].children[0] = 32;
|
||||||
|
/* 4:28 */waypoints[33].children[1] = 34;
|
||||||
|
/* 4:28 */waypoints[34] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[34].origin =(-1495.83, 1044.74, 1870.09);
|
||||||
|
/* 4:28 */waypoints[34].type = "stand";
|
||||||
|
/* 4:28 */waypoints[34].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[34].children[0] = 33;
|
||||||
|
/* 4:28 */waypoints[34].children[1] = 36;
|
||||||
|
/* 4:28 */waypoints[34].children[2] = 52;
|
||||||
|
/* 4:28 */waypoints[35] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[35].origin =(-1948.23, 900.444, 1883.94);
|
||||||
|
/* 4:28 */waypoints[35].type = "crouch";
|
||||||
|
/* 4:28 */waypoints[35].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[35].children[0] = 27;
|
||||||
|
/* 4:28 */waypoints[35].children[1] = 32;
|
||||||
|
/* 4:28 */waypoints[36] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[36].origin =(-1372.3, 1188.1, 1868.04);
|
||||||
|
/* 4:28 */waypoints[36].type = "stand";
|
||||||
|
/* 4:28 */waypoints[36].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[36].children[0] = 34;
|
||||||
|
/* 4:28 */waypoints[36].children[1] = 37;
|
||||||
|
/* 4:28 */waypoints[37] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[37].origin =(-835.847, 794.02, 1866.13);
|
||||||
|
/* 4:28 */waypoints[37].type = "stand";
|
||||||
|
/* 4:28 */waypoints[37].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[37].children[0] = 36;
|
||||||
|
/* 4:28 */waypoints[37].children[1] = 38;
|
||||||
|
/* 4:28 */waypoints[37].children[2] = 56;
|
||||||
|
/* 4:28 */waypoints[38] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[38].origin =(-366.447, 371.406, 1876.51);
|
||||||
|
/* 4:28 */waypoints[38].type = "stand";
|
||||||
|
/* 4:28 */waypoints[38].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[38].children[0] = 37;
|
||||||
|
/* 4:28 */waypoints[38].children[1] = 39;
|
||||||
|
/* 4:28 */waypoints[39] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[39].origin =(-488.778, -91.7065, 1867.24);
|
||||||
|
/* 4:28 */waypoints[39].type = "stand";
|
||||||
|
/* 4:28 */waypoints[39].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[39].children[0] = 38;
|
||||||
|
/* 4:28 */waypoints[39].children[1] = 40;
|
||||||
|
/* 4:28 */waypoints[39].children[2] = 46;
|
||||||
|
/* 4:28 */waypoints[39].children[3] = 47;
|
||||||
|
/* 4:28 */waypoints[40] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[40].origin =(-69.1026, -400.614, 1879.28);
|
||||||
|
/* 4:28 */waypoints[40].type = "stand";
|
||||||
|
/* 4:28 */waypoints[40].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[40].children[0] = 39;
|
||||||
|
/* 4:28 */waypoints[40].children[1] = 41;
|
||||||
|
/* 4:28 */waypoints[41] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[41].origin =(-60.3195, -699.82, 1943.4);
|
||||||
|
/* 4:28 */waypoints[41].type = "stand";
|
||||||
|
/* 4:28 */waypoints[41].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[41].children[0] = 40;
|
||||||
|
/* 4:28 */waypoints[41].children[1] = 42;
|
||||||
|
/* 4:28 */waypoints[42] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[42].origin =(-179.363, -826.13, 1907.93);
|
||||||
|
/* 4:28 */waypoints[42].type = "stand";
|
||||||
|
/* 4:28 */waypoints[42].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[42].children[0] = 41;
|
||||||
|
/* 4:28 */waypoints[42].children[1] = 43;
|
||||||
|
/* 4:28 */waypoints[43] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[43].origin =(-523.635, -627.98, 1871.73);
|
||||||
|
/* 4:28 */waypoints[43].type = "stand";
|
||||||
|
/* 4:28 */waypoints[43].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[43].children[0] = 42;
|
||||||
|
/* 4:28 */waypoints[43].children[1] = 44;
|
||||||
|
/* 4:28 */waypoints[43].children[2] = 46;
|
||||||
|
/* 4:28 */waypoints[44] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[44].origin =(-672.756, -838.516, 1868.74);
|
||||||
|
/* 4:28 */waypoints[44].type = "stand";
|
||||||
|
/* 4:28 */waypoints[44].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[44].children[0] = 43;
|
||||||
|
/* 4:28 */waypoints[44].children[1] = 45;
|
||||||
|
/* 4:28 */waypoints[45] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[45].origin =(-861.661, -707.195, 1868.83);
|
||||||
|
/* 4:28 */waypoints[45].type = "stand";
|
||||||
|
/* 4:28 */waypoints[45].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[45].children[0] = 44;
|
||||||
|
/* 4:28 */waypoints[45].children[1] = 46;
|
||||||
|
/* 4:28 */waypoints[45].children[2] = 49;
|
||||||
|
/* 4:28 */waypoints[45].children[3] = 77;
|
||||||
|
/* 4:28 */waypoints[46] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[46].origin =(-744.822, -350.219, 1870.2);
|
||||||
|
/* 4:28 */waypoints[46].type = "stand";
|
||||||
|
/* 4:28 */waypoints[46].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[46].children[0] = 45;
|
||||||
|
/* 4:28 */waypoints[46].children[1] = 43;
|
||||||
|
/* 4:28 */waypoints[46].children[2] = 39;
|
||||||
|
/* 4:28 */waypoints[46].children[3] = 48;
|
||||||
|
/* 4:28 */waypoints[47] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[47].origin =(-871.14, -78.3074, 1865.13);
|
||||||
|
/* 4:28 */waypoints[47].type = "stand";
|
||||||
|
/* 4:28 */waypoints[47].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[47].children[0] = 39;
|
||||||
|
/* 4:28 */waypoints[47].children[1] = 48;
|
||||||
|
/* 4:28 */waypoints[47].children[2] = 57;
|
||||||
|
/* 4:28 */waypoints[47].children[3] = 54;
|
||||||
|
/* 4:28 */waypoints[48] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[48].origin =(-985.682, -263.466, 1867.87);
|
||||||
|
/* 4:28 */waypoints[48].type = "stand";
|
||||||
|
/* 4:28 */waypoints[48].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[48].children[0] = 47;
|
||||||
|
/* 4:28 */waypoints[48].children[1] = 49;
|
||||||
|
/* 4:28 */waypoints[48].children[2] = 50;
|
||||||
|
/* 4:28 */waypoints[48].children[3] = 46;
|
||||||
|
/* 4:28 */waypoints[49] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[49].origin =(-1151.74, -488.809, 1868.07);
|
||||||
|
/* 4:28 */waypoints[49].type = "stand";
|
||||||
|
/* 4:28 */waypoints[49].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[49].children[0] = 48;
|
||||||
|
/* 4:28 */waypoints[49].children[1] = 45;
|
||||||
|
/* 4:28 */waypoints[49].children[2] = 58;
|
||||||
|
/* 4:28 */waypoints[50] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[50].origin =(-1942.71, 347.719, 1885.43);
|
||||||
|
/* 4:28 */waypoints[50].type = "stand";
|
||||||
|
/* 4:28 */waypoints[50].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[50].children[0] = 48;
|
||||||
|
/* 4:28 */waypoints[50].children[1] = 51;
|
||||||
|
/* 4:28 */waypoints[51] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[51].origin =(-1860.08, 457.368, 1866.13);
|
||||||
|
/* 4:28 */waypoints[51].type = "stand";
|
||||||
|
/* 4:28 */waypoints[51].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[51].children[0] = 50;
|
||||||
|
/* 4:28 */waypoints[51].children[1] = 28;
|
||||||
|
/* 4:28 */waypoints[51].children[2] = 52;
|
||||||
|
/* 4:28 */waypoints[52] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[52].origin =(-1529.09, 898.983, 1866.13);
|
||||||
|
/* 4:28 */waypoints[52].type = "stand";
|
||||||
|
/* 4:28 */waypoints[52].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[52].children[0] = 51;
|
||||||
|
/* 4:28 */waypoints[52].children[1] = 34;
|
||||||
|
/* 4:28 */waypoints[52].children[2] = 53;
|
||||||
|
/* 4:28 */waypoints[53] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[53].origin =(-1233.04, 691.125, 1865.03);
|
||||||
|
/* 4:28 */waypoints[53].type = "stand";
|
||||||
|
/* 4:28 */waypoints[53].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[53].children[0] = 52;
|
||||||
|
/* 4:28 */waypoints[53].children[1] = 54;
|
||||||
|
/* 4:28 */waypoints[53].children[2] = 56;
|
||||||
|
/* 4:28 */waypoints[54] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[54].origin =(-1405.68, 292.453, 1865.12);
|
||||||
|
/* 4:28 */waypoints[54].type = "stand";
|
||||||
|
/* 4:28 */waypoints[54].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[54].children[0] = 53;
|
||||||
|
/* 4:28 */waypoints[54].children[1] = 55;
|
||||||
|
/* 4:28 */waypoints[54].children[2] = 47;
|
||||||
|
/* 4:28 */waypoints[55] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[55].origin =(-729.123, 358.767, 1865.12);
|
||||||
|
/* 4:28 */waypoints[55].type = "stand";
|
||||||
|
/* 4:28 */waypoints[55].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[55].children[0] = 54;
|
||||||
|
/* 4:28 */waypoints[55].children[1] = 56;
|
||||||
|
/* 4:28 */waypoints[55].children[2] = 57;
|
||||||
|
/* 4:28 */waypoints[56] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[56].origin =(-962.562, 574.792, 1865.12);
|
||||||
|
/* 4:28 */waypoints[56].type = "stand";
|
||||||
|
/* 4:28 */waypoints[56].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[56].children[0] = 55;
|
||||||
|
/* 4:28 */waypoints[56].children[1] = 53;
|
||||||
|
/* 4:28 */waypoints[56].children[2] = 37;
|
||||||
|
/* 4:28 */waypoints[57] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[57].origin =(-674.36, 181.24, 1865.13);
|
||||||
|
/* 4:28 */waypoints[57].type = "stand";
|
||||||
|
/* 4:28 */waypoints[57].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[57].children[0] = 55;
|
||||||
|
/* 4:28 */waypoints[57].children[1] = 47;
|
||||||
|
/* 4:28 */waypoints[58] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[58].origin =(-1739.68, -100.718, 1870.13);
|
||||||
|
/* 4:28 */waypoints[58].type = "stand";
|
||||||
|
/* 4:28 */waypoints[58].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[58].children[0] = 49;
|
||||||
|
/* 4:28 */waypoints[58].children[1] = 59;
|
||||||
|
/* 4:28 */waypoints[58].children[2] = 81;
|
||||||
|
/* 4:28 */waypoints[59] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[59].origin =(-2097.58, 150.798, 1868.9);
|
||||||
|
/* 4:28 */waypoints[59].type = "stand";
|
||||||
|
/* 4:28 */waypoints[59].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[59].children[0] = 58;
|
||||||
|
/* 4:28 */waypoints[59].children[1] = 60;
|
||||||
|
/* 4:28 */waypoints[60] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[60].origin =(-2366.74, -216.526, 1868.13);
|
||||||
|
/* 4:28 */waypoints[60].type = "stand";
|
||||||
|
/* 4:28 */waypoints[60].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[60].children[0] = 59;
|
||||||
|
/* 4:28 */waypoints[60].children[1] = 61;
|
||||||
|
/* 4:28 */waypoints[60].children[2] = 81;
|
||||||
|
/* 4:28 */waypoints[60].children[3] = 82;
|
||||||
|
/* 4:28 */waypoints[61] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[61].origin =(-2494.89, -114.465, 1867.18);
|
||||||
|
/* 4:28 */waypoints[61].type = "stand";
|
||||||
|
/* 4:28 */waypoints[61].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[61].children[0] = 60;
|
||||||
|
/* 4:28 */waypoints[61].children[1] = 62;
|
||||||
|
/* 4:28 */waypoints[62] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[62].origin =(-2592.52, -217.352, 1868.13);
|
||||||
|
/* 4:28 */waypoints[62].type = "stand";
|
||||||
|
/* 4:28 */waypoints[62].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[62].children[0] = 61;
|
||||||
|
/* 4:28 */waypoints[62].children[1] = 63;
|
||||||
|
/* 4:28 */waypoints[62].children[2] = 67;
|
||||||
|
/* 4:28 */waypoints[63] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[63].origin =(-3235.45, 200.417, 1868.12);
|
||||||
|
/* 4:28 */waypoints[63].type = "stand";
|
||||||
|
/* 4:28 */waypoints[63].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[63].children[0] = 62;
|
||||||
|
/* 4:28 */waypoints[63].children[1] = 64;
|
||||||
|
/* 4:28 */waypoints[64] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[64].origin =(-3350.5, -29.0039, 1868.48);
|
||||||
|
/* 4:28 */waypoints[64].type = "stand";
|
||||||
|
/* 4:28 */waypoints[64].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[64].children[0] = 63;
|
||||||
|
/* 4:28 */waypoints[64].children[1] = 65;
|
||||||
|
/* 4:28 */waypoints[64].children[2] = 67;
|
||||||
|
/* 4:28 */waypoints[65] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[65].origin =(-3501.99, -281.401, 1868.13);
|
||||||
|
/* 4:28 */waypoints[65].type = "stand";
|
||||||
|
/* 4:28 */waypoints[65].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[65].children[0] = 64;
|
||||||
|
/* 4:28 */waypoints[65].children[1] = 66;
|
||||||
|
/* 4:28 */waypoints[66] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[66].origin =(-2977.03, -633.164, 1870.11);
|
||||||
|
/* 4:28 */waypoints[66].type = "stand";
|
||||||
|
/* 4:28 */waypoints[66].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[66].children[0] = 65;
|
||||||
|
/* 4:28 */waypoints[66].children[1] = 67;
|
||||||
|
/* 4:28 */waypoints[66].children[2] = 68;
|
||||||
|
/* 4:28 */waypoints[67] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[67].origin =(-2873.88, -417.357, 1869.4);
|
||||||
|
/* 4:28 */waypoints[67].type = "stand";
|
||||||
|
/* 4:28 */waypoints[67].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[67].children[0] = 66;
|
||||||
|
/* 4:28 */waypoints[67].children[1] = 64;
|
||||||
|
/* 4:28 */waypoints[67].children[2] = 62;
|
||||||
|
/* 4:28 */waypoints[67].children[3] = 82;
|
||||||
|
/* 4:28 */waypoints[68] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[68].origin =(-3063.04, -1055.46, 1868.13);
|
||||||
|
/* 4:28 */waypoints[68].type = "stand";
|
||||||
|
/* 4:28 */waypoints[68].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[68].children[0] = 66;
|
||||||
|
/* 4:28 */waypoints[68].children[1] = 69;
|
||||||
|
/* 4:28 */waypoints[69] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[69].origin =(-2855.69, -1215.9, 1867.99);
|
||||||
|
/* 4:28 */waypoints[69].type = "stand";
|
||||||
|
/* 4:28 */waypoints[69].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[69].children[0] = 68;
|
||||||
|
/* 4:28 */waypoints[69].children[1] = 70;
|
||||||
|
/* 4:28 */waypoints[69].children[2] = 83;
|
||||||
|
/* 4:28 */waypoints[70] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[70].origin =(-2952.49, -1418.81, 1866.98);
|
||||||
|
/* 4:28 */waypoints[70].type = "stand";
|
||||||
|
/* 4:28 */waypoints[70].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[70].children[0] = 69;
|
||||||
|
/* 4:28 */waypoints[70].children[1] = 71;
|
||||||
|
/* 4:28 */waypoints[71] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[71].origin =(-2432.48, -1768.27, 1866.13);
|
||||||
|
/* 4:28 */waypoints[71].type = "stand";
|
||||||
|
/* 4:28 */waypoints[71].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[71].children[0] = 70;
|
||||||
|
/* 4:28 */waypoints[71].children[1] = 72;
|
||||||
|
/* 4:28 */waypoints[71].children[2] = 84;
|
||||||
|
/* 4:28 */waypoints[72] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[72].origin =(-1916.47, -2139.04, 1869.8);
|
||||||
|
/* 4:28 */waypoints[72].type = "stand";
|
||||||
|
/* 4:28 */waypoints[72].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[72].children[0] = 71;
|
||||||
|
/* 4:28 */waypoints[72].children[1] = 73;
|
||||||
|
/* 4:28 */waypoints[72].children[2] = 86;
|
||||||
|
/* 4:28 */waypoints[72].children[3] = 88;
|
||||||
|
/* 4:28 */waypoints[73] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[73].origin =(-1635.86, -2346.52, 1876.79);
|
||||||
|
/* 4:28 */waypoints[73].type = "stand";
|
||||||
|
/* 4:28 */waypoints[73].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[73].children[0] = 72;
|
||||||
|
/* 4:28 */waypoints[73].children[1] = 74;
|
||||||
|
/* 4:28 */waypoints[74] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[74].origin =(-1429.55, -2020.25, 1868.64);
|
||||||
|
/* 4:28 */waypoints[74].type = "stand";
|
||||||
|
/* 4:28 */waypoints[74].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[74].children[0] = 73;
|
||||||
|
/* 4:28 */waypoints[74].children[1] = 85;
|
||||||
|
/* 4:28 */waypoints[74].children[2] = 88;
|
||||||
|
/* 4:28 */waypoints[75] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[75].origin =(-898.979, -1244.51, 1868.13);
|
||||||
|
/* 4:28 */waypoints[75].type = "stand";
|
||||||
|
/* 4:28 */waypoints[75].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[75].children[0] = 76;
|
||||||
|
/* 4:28 */waypoints[75].children[1] = 85;
|
||||||
|
/* 4:28 */waypoints[75].children[2] = 90;
|
||||||
|
/* 4:28 */waypoints[76] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[76].origin =(-762.475, -1013.73, 1870.09);
|
||||||
|
/* 4:28 */waypoints[76].type = "stand";
|
||||||
|
/* 4:28 */waypoints[76].childCount = 2;
|
||||||
|
/* 4:28 */waypoints[76].children[0] = 75;
|
||||||
|
/* 4:28 */waypoints[76].children[1] = 77;
|
||||||
|
/* 4:28 */waypoints[77] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[77].origin =(-966.193, -860.731, 1868.8);
|
||||||
|
/* 4:28 */waypoints[77].type = "stand";
|
||||||
|
/* 4:28 */waypoints[77].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[77].children[0] = 76;
|
||||||
|
/* 4:28 */waypoints[77].children[1] = 45;
|
||||||
|
/* 4:28 */waypoints[77].children[2] = 78;
|
||||||
|
/* 4:28 */waypoints[78] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[78].origin =(-1260.56, -793.078, 1869);
|
||||||
|
/* 4:28 */waypoints[78].type = "stand";
|
||||||
|
/* 4:28 */waypoints[78].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[78].children[0] = 77;
|
||||||
|
/* 4:28 */waypoints[78].children[1] = 79;
|
||||||
|
/* 4:28 */waypoints[78].children[2] = 87;
|
||||||
|
/* 4:28 */waypoints[78].children[3] = 90;
|
||||||
|
/* 4:28 */waypoints[79] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[79].origin =(-1553.8, -1218.95, 1908.13);
|
||||||
|
/* 4:28 */waypoints[79].type = "stand";
|
||||||
|
/* 4:28 */waypoints[79].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[79].children[0] = 78;
|
||||||
|
/* 4:28 */waypoints[79].children[1] = 80;
|
||||||
|
/* 4:28 */waypoints[79].children[2] = 86;
|
||||||
|
/* 4:28 */waypoints[79].children[3] = 89;
|
||||||
|
/* 4:28 */waypoints[80] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[80].origin =(-2000.65, -940.007, 1908.13);
|
||||||
|
/* 4:28 */waypoints[80].type = "stand";
|
||||||
|
/* 4:28 */waypoints[80].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[80].children[0] = 79;
|
||||||
|
/* 4:28 */waypoints[80].children[1] = 82;
|
||||||
|
/* 4:28 */waypoints[80].children[2] = 84;
|
||||||
|
/* 4:28 */waypoints[80].children[3] = 87;
|
||||||
|
/* 4:28 */waypoints[81] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[81].origin =(-1914.77, -335.959, 1868.52);
|
||||||
|
/* 4:28 */waypoints[81].type = "stand";
|
||||||
|
/* 4:28 */waypoints[81].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[81].children[0] = 58;
|
||||||
|
/* 4:28 */waypoints[81].children[1] = 60;
|
||||||
|
/* 4:28 */waypoints[81].children[2] = 82;
|
||||||
|
/* 4:28 */waypoints[81].children[3] = 87;
|
||||||
|
/* 4:28 */waypoints[82] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[82].origin =(-2447.18, -689.31, 1866.75);
|
||||||
|
/* 4:28 */waypoints[82].type = "stand";
|
||||||
|
/* 4:28 */waypoints[82].childCount = 5;
|
||||||
|
/* 4:28 */waypoints[82].children[0] = 60;
|
||||||
|
/* 4:28 */waypoints[82].children[1] = 80;
|
||||||
|
/* 4:28 */waypoints[82].children[2] = 81;
|
||||||
|
/* 4:28 */waypoints[82].children[3] = 67;
|
||||||
|
/* 4:28 */waypoints[82].children[4] = 83;
|
||||||
|
/* 4:28 */waypoints[83] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[83].origin =(-2605.58, -1029.94, 1871.36);
|
||||||
|
/* 4:28 */waypoints[83].type = "stand";
|
||||||
|
/* 4:28 */waypoints[83].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[83].children[0] = 82;
|
||||||
|
/* 4:28 */waypoints[83].children[1] = 84;
|
||||||
|
/* 4:28 */waypoints[83].children[2] = 69;
|
||||||
|
/* 4:28 */waypoints[84] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[84].origin =(-2158.65, -1374.81, 1868.13);
|
||||||
|
/* 4:28 */waypoints[84].type = "stand";
|
||||||
|
/* 4:28 */waypoints[84].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[84].children[0] = 83;
|
||||||
|
/* 4:28 */waypoints[84].children[1] = 80;
|
||||||
|
/* 4:28 */waypoints[84].children[2] = 86;
|
||||||
|
/* 4:28 */waypoints[84].children[3] = 71;
|
||||||
|
/* 4:28 */waypoints[85] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[85].origin =(-1132.66, -1537.64, 1869.6);
|
||||||
|
/* 4:28 */waypoints[85].type = "stand";
|
||||||
|
/* 4:28 */waypoints[85].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[85].children[0] = 74;
|
||||||
|
/* 4:28 */waypoints[85].children[1] = 75;
|
||||||
|
/* 4:28 */waypoints[85].children[2] = 89;
|
||||||
|
/* 4:28 */waypoints[86] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[86].origin =(-1838.95, -1583.87, 1868.13);
|
||||||
|
/* 4:28 */waypoints[86].type = "stand";
|
||||||
|
/* 4:28 */waypoints[86].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[86].children[0] = 79;
|
||||||
|
/* 4:28 */waypoints[86].children[1] = 84;
|
||||||
|
/* 4:28 */waypoints[86].children[2] = 72;
|
||||||
|
/* 4:28 */waypoints[86].children[3] = 88;
|
||||||
|
/* 4:28 */waypoints[87] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[87].origin =(-1704.79, -500.338, 1868.88);
|
||||||
|
/* 4:28 */waypoints[87].type = "stand";
|
||||||
|
/* 4:28 */waypoints[87].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[87].children[0] = 80;
|
||||||
|
/* 4:28 */waypoints[87].children[1] = 81;
|
||||||
|
/* 4:28 */waypoints[87].children[2] = 78;
|
||||||
|
/* 4:28 */waypoints[88] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[88].origin =(-1569.45, -1783.71, 1868.36);
|
||||||
|
/* 4:28 */waypoints[88].type = "stand";
|
||||||
|
/* 4:28 */waypoints[88].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[88].children[0] = 86;
|
||||||
|
/* 4:28 */waypoints[88].children[1] = 74;
|
||||||
|
/* 4:28 */waypoints[88].children[2] = 89;
|
||||||
|
/* 4:28 */waypoints[88].children[3] = 72;
|
||||||
|
/* 4:28 */waypoints[89] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[89].origin =(-1314.41, -1407.03, 1872.53);
|
||||||
|
/* 4:28 */waypoints[89].type = "stand";
|
||||||
|
/* 4:28 */waypoints[89].childCount = 4;
|
||||||
|
/* 4:28 */waypoints[89].children[0] = 79;
|
||||||
|
/* 4:28 */waypoints[89].children[1] = 85;
|
||||||
|
/* 4:28 */waypoints[89].children[2] = 88;
|
||||||
|
/* 4:28 */waypoints[89].children[3] = 90;
|
||||||
|
/* 4:28 */waypoints[90] = spawnstruct();
|
||||||
|
/* 4:28 */waypoints[90].origin =(-1108.59, -1131.63, 1872.01);
|
||||||
|
/* 4:28 */waypoints[90].type = "stand";
|
||||||
|
/* 4:28 */waypoints[90].childCount = 3;
|
||||||
|
/* 4:28 */waypoints[90].children[0] = 89;
|
||||||
|
/* 4:28 */waypoints[90].children[1] = 78;
|
||||||
|
/* 4:28 */waypoints[90].children[2] = 75;
|
||||||
|
return waypoints;
|
||||||
|
}
|
1408
mods/bots/maps/mp/bots/waypoints/highrise.gsc
Normal file
1408
mods/bots/maps/mp/bots/waypoints/highrise.gsc
Normal file
File diff suppressed because it is too large
Load Diff
513
mods/bots/maps/mp/bots/waypoints/hunted.gsc
Normal file
513
mods/bots/maps/mp/bots/waypoints/hunted.gsc
Normal file
@ -0,0 +1,513 @@
|
|||||||
|
hunted()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
waypoints[0] = spawnstruct();
|
||||||
|
waypoints[0].origin =(2043, 3223, 48.125);
|
||||||
|
waypoints[0].type = "stand";
|
||||||
|
waypoints[0].childCount = 1;
|
||||||
|
waypoints[0].children[0] = 1;
|
||||||
|
waypoints[1] = spawnstruct();
|
||||||
|
waypoints[1].origin =(1831.54, 3198.69, 48.125);
|
||||||
|
waypoints[1].type = "stand";
|
||||||
|
waypoints[1].childCount = 2;
|
||||||
|
waypoints[1].children[0] = 0;
|
||||||
|
waypoints[1].children[1] = 2;
|
||||||
|
waypoints[2] = spawnstruct();
|
||||||
|
waypoints[2].origin =(1771.53, 3109.12, 48.125);
|
||||||
|
waypoints[2].type = "stand";
|
||||||
|
waypoints[2].childCount = 2;
|
||||||
|
waypoints[2].children[0] = 1;
|
||||||
|
waypoints[2].children[1] = 3;
|
||||||
|
waypoints[3] = spawnstruct();
|
||||||
|
waypoints[3].origin =(1614.05, 3055.79, 48.125);
|
||||||
|
waypoints[3].type = "stand";
|
||||||
|
waypoints[3].childCount = 4;
|
||||||
|
waypoints[3].children[0] = 2;
|
||||||
|
waypoints[3].children[1] = 4;
|
||||||
|
waypoints[3].children[2] = 5;
|
||||||
|
waypoints[3].children[3] = 48;
|
||||||
|
waypoints[4] = spawnstruct();
|
||||||
|
waypoints[4].origin =(1802.37, 2907.46, 48.125);
|
||||||
|
waypoints[4].type = "stand";
|
||||||
|
waypoints[4].childCount = 3;
|
||||||
|
waypoints[4].children[0] = 3;
|
||||||
|
waypoints[4].children[1] = 15;
|
||||||
|
waypoints[4].children[2] = 52;
|
||||||
|
waypoints[5] = spawnstruct();
|
||||||
|
waypoints[5].origin =(1294.6, 2914.98, 48.125);
|
||||||
|
waypoints[5].type = "stand";
|
||||||
|
waypoints[5].childCount = 2;
|
||||||
|
waypoints[5].children[0] = 3;
|
||||||
|
waypoints[5].children[1] = 6;
|
||||||
|
waypoints[6] = spawnstruct();
|
||||||
|
waypoints[6].origin =(1010.56, 2856.75, 48.125);
|
||||||
|
waypoints[6].type = "stand";
|
||||||
|
waypoints[6].childCount = 3;
|
||||||
|
waypoints[6].children[0] = 5;
|
||||||
|
waypoints[6].children[1] = 7;
|
||||||
|
waypoints[6].children[2] = 47;
|
||||||
|
waypoints[7] = spawnstruct();
|
||||||
|
waypoints[7].origin =(1152.23, 2441.07, 48.1784);
|
||||||
|
waypoints[7].type = "stand";
|
||||||
|
waypoints[7].childCount = 3;
|
||||||
|
waypoints[7].children[0] = 8;
|
||||||
|
waypoints[7].children[1] = 8;
|
||||||
|
waypoints[7].children[2] = 6;
|
||||||
|
waypoints[8] = spawnstruct();
|
||||||
|
waypoints[8].origin =(1113.75, 2379.53, 48.4586);
|
||||||
|
waypoints[8].type = "stand";
|
||||||
|
waypoints[8].childCount = 3;
|
||||||
|
waypoints[8].children[0] = 7;
|
||||||
|
waypoints[8].children[1] = 7;
|
||||||
|
waypoints[8].children[2] = 9;
|
||||||
|
waypoints[9] = spawnstruct();
|
||||||
|
waypoints[9].origin =(1283.64, 2192.96, 49.2232);
|
||||||
|
waypoints[9].type = "stand";
|
||||||
|
waypoints[9].childCount = 3;
|
||||||
|
waypoints[9].children[0] = 8;
|
||||||
|
waypoints[9].children[1] = 10;
|
||||||
|
waypoints[9].children[2] = 11;
|
||||||
|
waypoints[10] = spawnstruct();
|
||||||
|
waypoints[10].origin =(1155.48, 1964.01, 48.4915);
|
||||||
|
waypoints[10].type = "stand";
|
||||||
|
waypoints[10].childCount = 4;
|
||||||
|
waypoints[10].children[0] = 9;
|
||||||
|
waypoints[10].children[1] = 11;
|
||||||
|
waypoints[10].children[2] = 16;
|
||||||
|
waypoints[10].children[3] = 43;
|
||||||
|
waypoints[11] = spawnstruct();
|
||||||
|
waypoints[11].origin =(1396.81, 2078.67, 48.125);
|
||||||
|
waypoints[11].type = "stand";
|
||||||
|
waypoints[11].childCount = 3;
|
||||||
|
waypoints[11].children[0] = 9;
|
||||||
|
waypoints[11].children[1] = 12;
|
||||||
|
waypoints[11].children[2] = 10;
|
||||||
|
waypoints[12] = spawnstruct();
|
||||||
|
waypoints[12].origin =(1568.91, 2137.36, 48.125);
|
||||||
|
waypoints[12].type = "stand";
|
||||||
|
waypoints[12].childCount = 2;
|
||||||
|
waypoints[12].children[0] = 11;
|
||||||
|
waypoints[12].children[1] = 13;
|
||||||
|
waypoints[13] = spawnstruct();
|
||||||
|
waypoints[13].origin =(1811.1, 2217.06, 48.125);
|
||||||
|
waypoints[13].type = "stand";
|
||||||
|
waypoints[13].childCount = 2;
|
||||||
|
waypoints[13].children[0] = 12;
|
||||||
|
waypoints[13].children[1] = 14;
|
||||||
|
waypoints[14] = spawnstruct();
|
||||||
|
waypoints[14].origin =(1782.95, 2464.88, 48.125);
|
||||||
|
waypoints[14].type = "stand";
|
||||||
|
waypoints[14].childCount = 2;
|
||||||
|
waypoints[14].children[0] = 13;
|
||||||
|
waypoints[14].children[1] = 15;
|
||||||
|
waypoints[15] = spawnstruct();
|
||||||
|
waypoints[15].origin =(1746.15, 2627.32, 48.1104);
|
||||||
|
waypoints[15].type = "stand";
|
||||||
|
waypoints[15].childCount = 5;
|
||||||
|
waypoints[15].children[0] = 14;
|
||||||
|
waypoints[15].children[1] = 4;
|
||||||
|
waypoints[15].children[2] = 48;
|
||||||
|
waypoints[15].children[3] = 49;
|
||||||
|
waypoints[15].children[4] = 52;
|
||||||
|
waypoints[16] = spawnstruct();
|
||||||
|
waypoints[16].origin =(988.8, 1759.26, 39.3681);
|
||||||
|
waypoints[16].type = "stand";
|
||||||
|
waypoints[16].childCount = 3;
|
||||||
|
waypoints[16].children[0] = 10;
|
||||||
|
waypoints[16].children[1] = 17;
|
||||||
|
waypoints[16].children[2] = 43;
|
||||||
|
waypoints[17] = spawnstruct();
|
||||||
|
waypoints[17].origin =(898.079, 1482.12, 48.0862);
|
||||||
|
waypoints[17].type = "stand";
|
||||||
|
waypoints[17].childCount = 3;
|
||||||
|
waypoints[17].children[0] = 16;
|
||||||
|
waypoints[17].children[1] = 18;
|
||||||
|
waypoints[17].children[2] = 38;
|
||||||
|
waypoints[18] = spawnstruct();
|
||||||
|
waypoints[18].origin =(875.185, 1205.34, 48.0212);
|
||||||
|
waypoints[18].type = "stand";
|
||||||
|
waypoints[18].childCount = 2;
|
||||||
|
waypoints[18].children[0] = 17;
|
||||||
|
waypoints[18].children[1] = 19;
|
||||||
|
waypoints[19] = spawnstruct();
|
||||||
|
waypoints[19].origin =(874.6, 969.342, 48.125);
|
||||||
|
waypoints[19].type = "stand";
|
||||||
|
waypoints[19].childCount = 4;
|
||||||
|
waypoints[19].children[0] = 18;
|
||||||
|
waypoints[19].children[1] = 20;
|
||||||
|
waypoints[19].children[2] = 28;
|
||||||
|
waypoints[19].children[3] = 36;
|
||||||
|
waypoints[20] = spawnstruct();
|
||||||
|
waypoints[20].origin =(1099.8, 876.364, 48.125);
|
||||||
|
waypoints[20].type = "stand";
|
||||||
|
waypoints[20].childCount = 4;
|
||||||
|
waypoints[20].children[0] = 19;
|
||||||
|
waypoints[20].children[1] = 21;
|
||||||
|
waypoints[20].children[2] = 26;
|
||||||
|
waypoints[20].children[3] = 27;
|
||||||
|
waypoints[21] = spawnstruct();
|
||||||
|
waypoints[21].origin =(1418.52, 982.567, 48.125);
|
||||||
|
waypoints[21].type = "stand";
|
||||||
|
waypoints[21].childCount = 3;
|
||||||
|
waypoints[21].children[0] = 20;
|
||||||
|
waypoints[21].children[1] = 22;
|
||||||
|
waypoints[21].children[2] = 26;
|
||||||
|
waypoints[22] = spawnstruct();
|
||||||
|
waypoints[22].origin =(1591.97, 1018.84, 48.125);
|
||||||
|
waypoints[22].type = "stand";
|
||||||
|
waypoints[22].childCount = 2;
|
||||||
|
waypoints[22].children[0] = 21;
|
||||||
|
waypoints[22].children[1] = 23;
|
||||||
|
waypoints[23] = spawnstruct();
|
||||||
|
waypoints[23].origin =(1591.72, 729.26, 48.125);
|
||||||
|
waypoints[23].type = "stand";
|
||||||
|
waypoints[23].childCount = 3;
|
||||||
|
waypoints[23].children[0] = 22;
|
||||||
|
waypoints[23].children[1] = 24;
|
||||||
|
waypoints[23].children[2] = 26;
|
||||||
|
waypoints[24] = spawnstruct();
|
||||||
|
waypoints[24].origin =(1565.03, 553.248, 48.125);
|
||||||
|
waypoints[24].type = "stand";
|
||||||
|
waypoints[24].childCount = 2;
|
||||||
|
waypoints[24].children[0] = 23;
|
||||||
|
waypoints[24].children[1] = 25;
|
||||||
|
waypoints[25] = spawnstruct();
|
||||||
|
waypoints[25].origin =(1339.89, 548.266, 49.4065);
|
||||||
|
waypoints[25].type = "stand";
|
||||||
|
waypoints[25].childCount = 2;
|
||||||
|
waypoints[25].children[0] = 24;
|
||||||
|
waypoints[25].children[1] = 26;
|
||||||
|
waypoints[26] = spawnstruct();
|
||||||
|
waypoints[26].origin =(1350.5, 803.367, 48.125);
|
||||||
|
waypoints[26].type = "stand";
|
||||||
|
waypoints[26].childCount = 4;
|
||||||
|
waypoints[26].children[0] = 21;
|
||||||
|
waypoints[26].children[1] = 25;
|
||||||
|
waypoints[26].children[2] = 23;
|
||||||
|
waypoints[26].children[3] = 20;
|
||||||
|
waypoints[27] = spawnstruct();
|
||||||
|
waypoints[27].origin =(1013.83, 729.909, 48.125);
|
||||||
|
waypoints[27].type = "stand";
|
||||||
|
waypoints[27].childCount = 2;
|
||||||
|
waypoints[27].children[0] = 20;
|
||||||
|
waypoints[27].children[1] = 28;
|
||||||
|
waypoints[28] = spawnstruct();
|
||||||
|
waypoints[28].origin =(890.876, 723.648, 48.8701);
|
||||||
|
waypoints[28].type = "stand";
|
||||||
|
waypoints[28].childCount = 4;
|
||||||
|
waypoints[28].children[0] = 27;
|
||||||
|
waypoints[28].children[1] = 33;
|
||||||
|
waypoints[28].children[2] = 34;
|
||||||
|
waypoints[28].children[3] = 19;
|
||||||
|
waypoints[29] = spawnstruct();
|
||||||
|
waypoints[29].origin =(591.601, 364.798, 60.875);
|
||||||
|
waypoints[29].type = "stand";
|
||||||
|
waypoints[29].childCount = 1;
|
||||||
|
waypoints[29].children[0] = 30;
|
||||||
|
waypoints[30] = spawnstruct();
|
||||||
|
waypoints[30].origin =(602.413, 491.391, 60.4593);
|
||||||
|
waypoints[30].type = "stand";
|
||||||
|
waypoints[30].childCount = 2;
|
||||||
|
waypoints[30].children[0] = 29;
|
||||||
|
waypoints[30].children[1] = 31;
|
||||||
|
waypoints[31] = spawnstruct();
|
||||||
|
waypoints[31].origin =(723.719, 494.235, 59.7507);
|
||||||
|
waypoints[31].type = "stand";
|
||||||
|
waypoints[31].childCount = 2;
|
||||||
|
waypoints[31].children[0] = 30;
|
||||||
|
waypoints[31].children[1] = 32;
|
||||||
|
waypoints[32] = spawnstruct();
|
||||||
|
waypoints[32].origin =(705.415, 640.985, 51.0084);
|
||||||
|
waypoints[32].type = "stand";
|
||||||
|
waypoints[32].childCount = 2;
|
||||||
|
waypoints[32].children[0] = 31;
|
||||||
|
waypoints[32].children[1] = 33;
|
||||||
|
waypoints[33] = spawnstruct();
|
||||||
|
waypoints[33].origin =(820.615, 690.08, 48.804);
|
||||||
|
waypoints[33].type = "stand";
|
||||||
|
waypoints[33].childCount = 3;
|
||||||
|
waypoints[33].children[0] = 32;
|
||||||
|
waypoints[33].children[1] = 28;
|
||||||
|
waypoints[33].children[2] = 36;
|
||||||
|
waypoints[34] = spawnstruct();
|
||||||
|
waypoints[34].origin =(906.734, 636.255, 49.8304);
|
||||||
|
waypoints[34].type = "stand";
|
||||||
|
waypoints[34].childCount = 1;
|
||||||
|
waypoints[34].children[0] = 28;
|
||||||
|
waypoints[35] = spawnstruct();
|
||||||
|
waypoints[35].origin =(570.52, 879.728, 49.125);
|
||||||
|
waypoints[35].type = "stand";
|
||||||
|
waypoints[35].childCount = 1;
|
||||||
|
waypoints[35].children[0] = 36;
|
||||||
|
waypoints[36] = spawnstruct();
|
||||||
|
waypoints[36].origin =(730.906, 864.001, 49.125);
|
||||||
|
waypoints[36].type = "stand";
|
||||||
|
waypoints[36].childCount = 3;
|
||||||
|
waypoints[36].children[0] = 35;
|
||||||
|
waypoints[36].children[1] = 19;
|
||||||
|
waypoints[36].children[2] = 33;
|
||||||
|
waypoints[37] = spawnstruct();
|
||||||
|
waypoints[37].origin =(586.109, 1521.44, 53.6003);
|
||||||
|
waypoints[37].type = "stand";
|
||||||
|
waypoints[37].childCount = 2;
|
||||||
|
waypoints[37].children[0] = 38;
|
||||||
|
waypoints[37].children[1] = 39;
|
||||||
|
waypoints[38] = spawnstruct();
|
||||||
|
waypoints[38].origin =(797.224, 1536.13, 48.67);
|
||||||
|
waypoints[38].type = "stand";
|
||||||
|
waypoints[38].childCount = 2;
|
||||||
|
waypoints[38].children[0] = 37;
|
||||||
|
waypoints[38].children[1] = 17;
|
||||||
|
waypoints[39] = spawnstruct();
|
||||||
|
waypoints[39].origin =(390.375, 1611.66, 58.9374);
|
||||||
|
waypoints[39].type = "stand";
|
||||||
|
waypoints[39].childCount = 2;
|
||||||
|
waypoints[39].children[0] = 37;
|
||||||
|
waypoints[39].children[1] = 40;
|
||||||
|
waypoints[40] = spawnstruct();
|
||||||
|
waypoints[40].origin =(321.187, 1847.62, 50.6148);
|
||||||
|
waypoints[40].type = "stand";
|
||||||
|
waypoints[40].childCount = 2;
|
||||||
|
waypoints[40].children[0] = 39;
|
||||||
|
waypoints[40].children[1] = 41;
|
||||||
|
waypoints[41] = spawnstruct();
|
||||||
|
waypoints[41].origin =(394.033, 2072.21, 56.2713);
|
||||||
|
waypoints[41].type = "stand";
|
||||||
|
waypoints[41].childCount = 3;
|
||||||
|
waypoints[41].children[0] = 40;
|
||||||
|
waypoints[41].children[1] = 42;
|
||||||
|
waypoints[41].children[2] = 44;
|
||||||
|
waypoints[42] = spawnstruct();
|
||||||
|
waypoints[42].origin =(632.933, 2021.41, 50.9029);
|
||||||
|
waypoints[42].type = "stand";
|
||||||
|
waypoints[42].childCount = 2;
|
||||||
|
waypoints[42].children[0] = 41;
|
||||||
|
waypoints[42].children[1] = 43;
|
||||||
|
waypoints[43] = spawnstruct();
|
||||||
|
waypoints[43].origin =(854.963, 2005.5, 53.47);
|
||||||
|
waypoints[43].type = "stand";
|
||||||
|
waypoints[43].childCount = 3;
|
||||||
|
waypoints[43].children[0] = 42;
|
||||||
|
waypoints[43].children[1] = 10;
|
||||||
|
waypoints[43].children[2] = 16;
|
||||||
|
waypoints[44] = spawnstruct();
|
||||||
|
waypoints[44].origin =(471.238, 2366.12, 59.7767);
|
||||||
|
waypoints[44].type = "stand";
|
||||||
|
waypoints[44].childCount = 2;
|
||||||
|
waypoints[44].children[0] = 41;
|
||||||
|
waypoints[44].children[1] = 45;
|
||||||
|
waypoints[45] = spawnstruct();
|
||||||
|
waypoints[45].origin =(532.644, 2551.39, 63.9027);
|
||||||
|
waypoints[45].type = "stand";
|
||||||
|
waypoints[45].childCount = 2;
|
||||||
|
waypoints[45].children[0] = 44;
|
||||||
|
waypoints[45].children[1] = 46;
|
||||||
|
waypoints[46] = spawnstruct();
|
||||||
|
waypoints[46].origin =(834.357, 2567.29, 54.4027);
|
||||||
|
waypoints[46].type = "stand";
|
||||||
|
waypoints[46].childCount = 2;
|
||||||
|
waypoints[46].children[0] = 45;
|
||||||
|
waypoints[46].children[1] = 47;
|
||||||
|
waypoints[47] = spawnstruct();
|
||||||
|
waypoints[47].origin =(989.059, 2683.33, 48.125);
|
||||||
|
waypoints[47].type = "stand";
|
||||||
|
waypoints[47].childCount = 2;
|
||||||
|
waypoints[47].children[0] = 46;
|
||||||
|
waypoints[47].children[1] = 6;
|
||||||
|
waypoints[48] = spawnstruct();
|
||||||
|
waypoints[48].origin =(1623.82, 2835.06, 48.125);
|
||||||
|
waypoints[48].type = "stand";
|
||||||
|
waypoints[48].childCount = 2;
|
||||||
|
waypoints[48].children[0] = 3;
|
||||||
|
waypoints[48].children[1] = 15;
|
||||||
|
waypoints[49] = spawnstruct();
|
||||||
|
waypoints[49].origin =(2056.03, 2972.15, 48.125);
|
||||||
|
waypoints[49].type = "stand";
|
||||||
|
waypoints[49].childCount = 2;
|
||||||
|
waypoints[49].children[0] = 15;
|
||||||
|
waypoints[49].children[1] = 50;
|
||||||
|
waypoints[50] = spawnstruct();
|
||||||
|
waypoints[50].origin =(2112.76, 2853.73, 48.125);
|
||||||
|
waypoints[50].type = "stand";
|
||||||
|
waypoints[50].childCount = 3;
|
||||||
|
waypoints[50].children[0] = 49;
|
||||||
|
waypoints[50].children[1] = 51;
|
||||||
|
waypoints[50].children[2] = 52;
|
||||||
|
waypoints[51] = spawnstruct();
|
||||||
|
waypoints[51].origin =(2284.9, 2602.65, 48.0569);
|
||||||
|
waypoints[51].type = "stand";
|
||||||
|
waypoints[51].childCount = 4;
|
||||||
|
waypoints[51].children[0] = 50;
|
||||||
|
waypoints[51].children[1] = 53;
|
||||||
|
waypoints[51].children[2] = 58;
|
||||||
|
waypoints[51].children[3] = 59;
|
||||||
|
waypoints[52] = spawnstruct();
|
||||||
|
waypoints[52].origin =(1954.6, 2722.9, 48.125);
|
||||||
|
waypoints[52].type = "stand";
|
||||||
|
waypoints[52].childCount = 3;
|
||||||
|
waypoints[52].children[0] = 15;
|
||||||
|
waypoints[52].children[1] = 50;
|
||||||
|
waypoints[52].children[2] = 4;
|
||||||
|
waypoints[53] = spawnstruct();
|
||||||
|
waypoints[53].origin =(2149.56, 2278.61, 48.0859);
|
||||||
|
waypoints[53].type = "stand";
|
||||||
|
waypoints[53].childCount = 2;
|
||||||
|
waypoints[53].children[0] = 51;
|
||||||
|
waypoints[53].children[1] = 54;
|
||||||
|
waypoints[54] = spawnstruct();
|
||||||
|
waypoints[54].origin =(2355.04, 1878.48, 47.5598);
|
||||||
|
waypoints[54].type = "stand";
|
||||||
|
waypoints[54].childCount = 3;
|
||||||
|
waypoints[54].children[0] = 53;
|
||||||
|
waypoints[54].children[1] = 55;
|
||||||
|
waypoints[54].children[2] = 56;
|
||||||
|
waypoints[55] = spawnstruct();
|
||||||
|
waypoints[55].origin =(2557.16, 1988.49, 50.9365);
|
||||||
|
waypoints[55].type = "stand";
|
||||||
|
waypoints[55].childCount = 4;
|
||||||
|
waypoints[55].children[0] = 54;
|
||||||
|
waypoints[55].children[1] = 57;
|
||||||
|
waypoints[55].children[2] = 56;
|
||||||
|
waypoints[55].children[3] = 58;
|
||||||
|
waypoints[56] = spawnstruct();
|
||||||
|
waypoints[56].origin =(2460.31, 1613.44, 52.476);
|
||||||
|
waypoints[56].type = "stand";
|
||||||
|
waypoints[56].childCount = 3;
|
||||||
|
waypoints[56].children[0] = 54;
|
||||||
|
waypoints[56].children[1] = 57;
|
||||||
|
waypoints[56].children[2] = 55;
|
||||||
|
waypoints[57] = spawnstruct();
|
||||||
|
waypoints[57].origin =(2744.78, 1723.83, 50.9572);
|
||||||
|
waypoints[57].type = "stand";
|
||||||
|
waypoints[57].childCount = 2;
|
||||||
|
waypoints[57].children[0] = 55;
|
||||||
|
waypoints[57].children[1] = 56;
|
||||||
|
waypoints[58] = spawnstruct();
|
||||||
|
waypoints[58].origin =(2435.8, 2271.85, 48.125);
|
||||||
|
waypoints[58].type = "stand";
|
||||||
|
waypoints[58].childCount = 3;
|
||||||
|
waypoints[58].children[0] = 55;
|
||||||
|
waypoints[58].children[1] = 51;
|
||||||
|
waypoints[58].children[2] = 61;
|
||||||
|
waypoints[59] = spawnstruct();
|
||||||
|
waypoints[59].origin =(2470.18, 2623.46, 47.3385);
|
||||||
|
waypoints[59].type = "stand";
|
||||||
|
waypoints[59].childCount = 3;
|
||||||
|
waypoints[59].children[0] = 51;
|
||||||
|
waypoints[59].children[1] = 60;
|
||||||
|
waypoints[59].children[2] = 66;
|
||||||
|
waypoints[60] = spawnstruct();
|
||||||
|
waypoints[60].origin =(2486.87, 2753.57, 48.0464);
|
||||||
|
waypoints[60].type = "stand";
|
||||||
|
waypoints[60].childCount = 3;
|
||||||
|
waypoints[60].children[0] = 59;
|
||||||
|
waypoints[60].children[1] = 71;
|
||||||
|
waypoints[60].children[2] = 71;
|
||||||
|
waypoints[61] = spawnstruct();
|
||||||
|
waypoints[61].origin =(2928.79, 2260.74, 48.125);
|
||||||
|
waypoints[61].type = "stand";
|
||||||
|
waypoints[61].childCount = 3;
|
||||||
|
waypoints[61].children[0] = 58;
|
||||||
|
waypoints[61].children[1] = 64;
|
||||||
|
waypoints[61].children[2] = 65;
|
||||||
|
waypoints[62] = spawnstruct();
|
||||||
|
waypoints[62].origin =(3014.42, 2090.28, 54.4085);
|
||||||
|
waypoints[62].type = "stand";
|
||||||
|
waypoints[62].childCount = 1;
|
||||||
|
waypoints[62].children[0] = 63;
|
||||||
|
waypoints[63] = spawnstruct();
|
||||||
|
waypoints[63].origin =(2997.03, 2145.99, 52.2499);
|
||||||
|
waypoints[63].type = "stand";
|
||||||
|
waypoints[63].childCount = 2;
|
||||||
|
waypoints[63].children[0] = 62;
|
||||||
|
waypoints[63].children[1] = 64;
|
||||||
|
waypoints[64] = spawnstruct();
|
||||||
|
waypoints[64].origin =(2972.71, 2205.98, 49.4658);
|
||||||
|
waypoints[64].type = "stand";
|
||||||
|
waypoints[64].childCount = 2;
|
||||||
|
waypoints[64].children[0] = 63;
|
||||||
|
waypoints[64].children[1] = 61;
|
||||||
|
waypoints[65] = spawnstruct();
|
||||||
|
waypoints[65].origin =(2832.97, 2503.88, 48.0374);
|
||||||
|
waypoints[65].type = "stand";
|
||||||
|
waypoints[65].childCount = 2;
|
||||||
|
waypoints[65].children[0] = 61;
|
||||||
|
waypoints[65].children[1] = 67;
|
||||||
|
waypoints[66] = spawnstruct();
|
||||||
|
waypoints[66].origin =(2747.8, 2689.17, 48.125);
|
||||||
|
waypoints[66].type = "stand";
|
||||||
|
waypoints[66].childCount = 2;
|
||||||
|
waypoints[66].children[0] = 67;
|
||||||
|
waypoints[66].children[1] = 59;
|
||||||
|
waypoints[67] = spawnstruct();
|
||||||
|
waypoints[67].origin =(2779.92, 2589.36, 48.125);
|
||||||
|
waypoints[67].type = "stand";
|
||||||
|
waypoints[67].childCount = 2;
|
||||||
|
waypoints[67].children[0] = 65;
|
||||||
|
waypoints[67].children[1] = 66;
|
||||||
|
waypoints[68] = spawnstruct();
|
||||||
|
waypoints[68].origin =(2381.92, 3499.16, 52.125);
|
||||||
|
waypoints[68].type = "stand";
|
||||||
|
waypoints[68].childCount = 1;
|
||||||
|
waypoints[68].children[0] = 69;
|
||||||
|
waypoints[69] = spawnstruct();
|
||||||
|
waypoints[69].origin =(2442.63, 3356.5, 52.125);
|
||||||
|
waypoints[69].type = "stand";
|
||||||
|
waypoints[69].childCount = 2;
|
||||||
|
waypoints[69].children[0] = 68;
|
||||||
|
waypoints[69].children[1] = 70;
|
||||||
|
waypoints[70] = spawnstruct();
|
||||||
|
waypoints[70].origin =(2474.98, 3242.92, 52.125);
|
||||||
|
waypoints[70].type = "stand";
|
||||||
|
waypoints[70].childCount = 2;
|
||||||
|
waypoints[70].children[0] = 69;
|
||||||
|
waypoints[70].children[1] = 71;
|
||||||
|
waypoints[71] = spawnstruct();
|
||||||
|
waypoints[71].origin =(2553.66, 3031.6, 48.125);
|
||||||
|
waypoints[71].type = "stand";
|
||||||
|
waypoints[71].childCount = 5;
|
||||||
|
waypoints[71].children[0] = 70;
|
||||||
|
waypoints[71].children[1] = 60;
|
||||||
|
waypoints[71].children[2] = 72;
|
||||||
|
waypoints[71].children[3] = 74;
|
||||||
|
waypoints[71].children[4] = 60;
|
||||||
|
waypoints[72] = spawnstruct();
|
||||||
|
waypoints[72].origin =(2721.51, 2974.06, 48.1127);
|
||||||
|
waypoints[72].type = "stand";
|
||||||
|
waypoints[72].childCount = 2;
|
||||||
|
waypoints[72].children[0] = 71;
|
||||||
|
waypoints[72].children[1] = 73;
|
||||||
|
waypoints[73] = spawnstruct();
|
||||||
|
waypoints[73].origin =(2913.97, 2904.22, 48.125);
|
||||||
|
waypoints[73].type = "stand";
|
||||||
|
waypoints[73].childCount = 3;
|
||||||
|
waypoints[73].children[0] = 72;
|
||||||
|
waypoints[73].children[1] = 74;
|
||||||
|
waypoints[73].children[2] = 76;
|
||||||
|
waypoints[74] = spawnstruct();
|
||||||
|
waypoints[74].origin =(2939.03, 3162.09, 48.125);
|
||||||
|
waypoints[74].type = "stand";
|
||||||
|
waypoints[74].childCount = 3;
|
||||||
|
waypoints[74].children[0] = 73;
|
||||||
|
waypoints[74].children[1] = 71;
|
||||||
|
waypoints[74].children[2] = 77;
|
||||||
|
waypoints[75] = spawnstruct();
|
||||||
|
waypoints[75].origin =(3325.14, 2975.96, 50.1482);
|
||||||
|
waypoints[75].type = "stand";
|
||||||
|
waypoints[75].childCount = 1;
|
||||||
|
waypoints[75].children[0] = 76;
|
||||||
|
waypoints[76] = spawnstruct();
|
||||||
|
waypoints[76].origin =(3140.22, 2928.42, 48.125);
|
||||||
|
waypoints[76].type = "stand";
|
||||||
|
waypoints[76].childCount = 3;
|
||||||
|
waypoints[76].children[0] = 75;
|
||||||
|
waypoints[76].children[1] = 73;
|
||||||
|
waypoints[76].children[2] = 77;
|
||||||
|
waypoints[77] = spawnstruct();
|
||||||
|
waypoints[77].origin =(3032.11, 2982.09, 48.125);
|
||||||
|
waypoints[77].type = "stand";
|
||||||
|
waypoints[77].childCount = 2;
|
||||||
|
waypoints[77].children[0] = 76;
|
||||||
|
waypoints[77].children[1] = 74;
|
||||||
|
return waypoints;
|
||||||
|
}
|
1291
mods/bots/maps/mp/bots/waypoints/invasion.gsc
Normal file
1291
mods/bots/maps/mp/bots/waypoints/invasion.gsc
Normal file
File diff suppressed because it is too large
Load Diff
1013
mods/bots/maps/mp/bots/waypoints/karachi.gsc
Normal file
1013
mods/bots/maps/mp/bots/waypoints/karachi.gsc
Normal file
File diff suppressed because it is too large
Load Diff
715
mods/bots/maps/mp/bots/waypoints/killhouse.gsc
Normal file
715
mods/bots/maps/mp/bots/waypoints/killhouse.gsc
Normal file
@ -0,0 +1,715 @@
|
|||||||
|
Killhouse()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
waypoints[0] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[0].origin =(3102.01, -957.248, 4.125);
|
||||||
|
/* 7:24 */waypoints[0].type = "stand";
|
||||||
|
/* 7:24 */waypoints[0].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[0].children[0] = 1;
|
||||||
|
/* 7:24 */waypoints[0].children[1] = 9;
|
||||||
|
/* 7:24 */waypoints[0].children[2] = 82;
|
||||||
|
/* 7:24 */waypoints[1] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[1].origin =(3472.49, -937.254, 4.125);
|
||||||
|
/* 7:24 */waypoints[1].type = "stand";
|
||||||
|
/* 7:24 */waypoints[1].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[1].children[0] = 0;
|
||||||
|
/* 7:24 */waypoints[1].children[1] = 2;
|
||||||
|
/* 7:24 */waypoints[1].children[2] = 18;
|
||||||
|
/* 7:24 */waypoints[2] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[2].origin =(3687.13, -912.002, 4.125);
|
||||||
|
/* 7:24 */waypoints[2].type = "stand";
|
||||||
|
/* 7:24 */waypoints[2].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[2].children[0] = 1;
|
||||||
|
/* 7:24 */waypoints[2].children[1] = 3;
|
||||||
|
/* 7:24 */waypoints[2].children[2] = 4;
|
||||||
|
/* 7:24 */waypoints[2].children[3] = 97;
|
||||||
|
/* 7:24 */waypoints[3] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[3].origin =(3691.21, -596.374, 4.125);
|
||||||
|
/* 7:24 */waypoints[3].type = "stand";
|
||||||
|
/* 7:24 */waypoints[3].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[3].children[0] = 2;
|
||||||
|
/* 7:24 */waypoints[3].children[1] = 91;
|
||||||
|
/* 7:24 */waypoints[3].children[2] = 92;
|
||||||
|
/* 7:24 */waypoints[4] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[4].origin =(3846.31, -903.945, 4.125);
|
||||||
|
/* 7:24 */waypoints[4].type = "stand";
|
||||||
|
/* 7:24 */waypoints[4].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[4].children[0] = 2;
|
||||||
|
/* 7:24 */waypoints[4].children[1] = 5;
|
||||||
|
/* 7:24 */waypoints[4].children[2] = 10;
|
||||||
|
/* 7:24 */waypoints[5] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[5].origin =(3946.81, -913.937, 4.125);
|
||||||
|
/* 7:24 */waypoints[5].type = "stand";
|
||||||
|
/* 7:24 */waypoints[5].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[5].children[0] = 4;
|
||||||
|
/* 7:24 */waypoints[5].children[1] = 6;
|
||||||
|
/* 7:24 */waypoints[5].children[2] = 11;
|
||||||
|
/* 7:24 */waypoints[5].children[3] = 81;
|
||||||
|
/* 7:24 */waypoints[6] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[6].origin =(4127.19, -909.679, 4.125);
|
||||||
|
/* 7:24 */waypoints[6].type = "stand";
|
||||||
|
/* 7:24 */waypoints[6].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[6].children[0] = 5;
|
||||||
|
/* 7:24 */waypoints[6].children[1] = 7;
|
||||||
|
/* 7:24 */waypoints[6].children[2] = 80;
|
||||||
|
/* 7:24 */waypoints[7] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[7].origin =(4154.72, -1132.14, 4.125);
|
||||||
|
/* 7:24 */waypoints[7].type = "stand";
|
||||||
|
/* 7:24 */waypoints[7].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[7].children[0] = 6;
|
||||||
|
/* 7:24 */waypoints[7].children[1] = 8;
|
||||||
|
/* 7:24 */waypoints[8] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[8].origin =(3778.14, -1126.64, 56.125);
|
||||||
|
/* 7:24 */waypoints[8].type = "stand";
|
||||||
|
/* 7:24 */waypoints[8].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[8].children[0] = 7;
|
||||||
|
/* 7:24 */waypoints[8].children[1] = 9;
|
||||||
|
/* 7:24 */waypoints[8].children[2] = 66;
|
||||||
|
/* 7:24 */waypoints[8].children[3] = 67;
|
||||||
|
/* 7:24 */waypoints[9] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[9].origin =(3357, -1129.46, 4.125);
|
||||||
|
/* 7:24 */waypoints[9].type = "stand";
|
||||||
|
/* 7:24 */waypoints[9].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[9].children[0] = 8;
|
||||||
|
/* 7:24 */waypoints[9].children[1] = 0;
|
||||||
|
/* 7:24 */waypoints[10] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[10].origin =(3841.02, -585.889, 132.125);
|
||||||
|
/* 7:24 */waypoints[10].type = "stand";
|
||||||
|
/* 7:24 */waypoints[10].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[10].children[0] = 4;
|
||||||
|
/* 7:24 */waypoints[10].children[1] = 93;
|
||||||
|
/* 7:24 */waypoints[11] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[11].origin =(3962.1, -618.355, 4.125);
|
||||||
|
/* 7:24 */waypoints[11].type = "stand";
|
||||||
|
/* 7:24 */waypoints[11].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[11].children[0] = 5;
|
||||||
|
/* 7:24 */waypoints[11].children[1] = 12;
|
||||||
|
/* 7:24 */waypoints[12] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[12].origin =(4050.84, -604.686, 4.125);
|
||||||
|
/* 7:24 */waypoints[12].type = "stand";
|
||||||
|
/* 7:24 */waypoints[12].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[12].children[0] = 11;
|
||||||
|
/* 7:24 */waypoints[12].children[1] = 13;
|
||||||
|
/* 7:24 */waypoints[12].children[2] = 15;
|
||||||
|
/* 7:24 */waypoints[13] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[13].origin =(4026.45, -454.039, 4.125);
|
||||||
|
/* 7:24 */waypoints[13].type = "stand";
|
||||||
|
/* 7:24 */waypoints[13].childCount = 5;
|
||||||
|
/* 7:24 */waypoints[13].children[0] = 12;
|
||||||
|
/* 7:24 */waypoints[13].children[1] = 14;
|
||||||
|
/* 7:24 */waypoints[13].children[2] = 16;
|
||||||
|
/* 7:24 */waypoints[13].children[3] = 25;
|
||||||
|
/* 7:24 */waypoints[13].children[4] = 105;
|
||||||
|
/* 7:24 */waypoints[14] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[14].origin =(4240.67, -465.507, 4.125);
|
||||||
|
/* 7:24 */waypoints[14].type = "stand";
|
||||||
|
/* 7:24 */waypoints[14].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[14].children[0] = 13;
|
||||||
|
/* 7:24 */waypoints[14].children[1] = 15;
|
||||||
|
/* 7:24 */waypoints[14].children[2] = 94;
|
||||||
|
/* 7:24 */waypoints[15] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[15].origin =(4238.98, -646.208, 4.125);
|
||||||
|
/* 7:24 */waypoints[15].type = "stand";
|
||||||
|
/* 7:24 */waypoints[15].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[15].children[0] = 12;
|
||||||
|
/* 7:24 */waypoints[15].children[1] = 14;
|
||||||
|
/* 7:24 */waypoints[15].children[2] = 79;
|
||||||
|
/* 7:24 */waypoints[16] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[16].origin =(3610.61, -431.841, 4.125);
|
||||||
|
/* 7:24 */waypoints[16].type = "stand";
|
||||||
|
/* 7:24 */waypoints[16].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[16].children[0] = 13;
|
||||||
|
/* 7:24 */waypoints[16].children[1] = 17;
|
||||||
|
/* 7:24 */waypoints[16].children[2] = 23;
|
||||||
|
/* 7:24 */waypoints[17] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[17].origin =(3446.64, -445.561, 4.125);
|
||||||
|
/* 7:24 */waypoints[17].type = "stand";
|
||||||
|
/* 7:24 */waypoints[17].childCount = 5;
|
||||||
|
/* 7:24 */waypoints[17].children[0] = 16;
|
||||||
|
/* 7:24 */waypoints[17].children[1] = 18;
|
||||||
|
/* 7:24 */waypoints[17].children[2] = 20;
|
||||||
|
/* 7:24 */waypoints[17].children[3] = 21;
|
||||||
|
/* 7:24 */waypoints[17].children[4] = 98;
|
||||||
|
/* 7:24 */waypoints[18] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[18].origin =(3449.45, -661.359, 4.125);
|
||||||
|
/* 7:24 */waypoints[18].type = "stand";
|
||||||
|
/* 7:24 */waypoints[18].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[18].children[0] = 17;
|
||||||
|
/* 7:24 */waypoints[18].children[1] = 1;
|
||||||
|
/* 7:24 */waypoints[18].children[2] = 19;
|
||||||
|
/* 7:24 */waypoints[19] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[19].origin =(3093.49, -657.663, 4.125);
|
||||||
|
/* 7:24 */waypoints[19].type = "stand";
|
||||||
|
/* 7:24 */waypoints[19].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[19].children[0] = 18;
|
||||||
|
/* 7:24 */waypoints[19].children[1] = 58;
|
||||||
|
/* 7:24 */waypoints[19].children[2] = 59;
|
||||||
|
/* 7:24 */waypoints[19].children[3] = 83;
|
||||||
|
/* 7:24 */waypoints[20] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[20].origin =(3309.09, -259.478, 4.125);
|
||||||
|
/* 7:24 */waypoints[20].type = "stand";
|
||||||
|
/* 7:24 */waypoints[20].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[20].children[0] = 17;
|
||||||
|
/* 7:24 */waypoints[20].children[1] = 22;
|
||||||
|
/* 7:24 */waypoints[20].children[2] = 23;
|
||||||
|
/* 7:24 */waypoints[21] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[21].origin =(3040.16, -424.941, 4.125);
|
||||||
|
/* 7:24 */waypoints[21].type = "stand";
|
||||||
|
/* 7:24 */waypoints[21].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[21].children[0] = 17;
|
||||||
|
/* 7:24 */waypoints[21].children[1] = 22;
|
||||||
|
/* 7:24 */waypoints[22] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[22].origin =(3021.87, 51.056, 4.125);
|
||||||
|
/* 7:24 */waypoints[22].type = "stand";
|
||||||
|
/* 7:24 */waypoints[22].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[22].children[0] = 21;
|
||||||
|
/* 7:24 */waypoints[22].children[1] = 20;
|
||||||
|
/* 7:24 */waypoints[22].children[2] = 56;
|
||||||
|
/* 7:24 */waypoints[22].children[3] = 76;
|
||||||
|
/* 7:24 */waypoints[23] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[23].origin =(3616.67, -146.263, 4.125);
|
||||||
|
/* 7:24 */waypoints[23].type = "stand";
|
||||||
|
/* 7:24 */waypoints[23].childCount = 5;
|
||||||
|
/* 7:24 */waypoints[23].children[0] = 20;
|
||||||
|
/* 7:24 */waypoints[23].children[1] = 16;
|
||||||
|
/* 7:24 */waypoints[23].children[2] = 24;
|
||||||
|
/* 7:24 */waypoints[23].children[3] = 54;
|
||||||
|
/* 7:24 */waypoints[23].children[4] = 57;
|
||||||
|
/* 7:24 */waypoints[24] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[24].origin =(3876.58, -137.099, 4.125);
|
||||||
|
/* 7:24 */waypoints[24].type = "stand";
|
||||||
|
/* 7:24 */waypoints[24].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[24].children[0] = 23;
|
||||||
|
/* 7:24 */waypoints[24].children[1] = 25;
|
||||||
|
/* 7:24 */waypoints[24].children[2] = 52;
|
||||||
|
/* 7:24 */waypoints[25] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[25].origin =(4174.39, -202.823, 4.125);
|
||||||
|
/* 7:24 */waypoints[25].type = "stand";
|
||||||
|
/* 7:24 */waypoints[25].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[25].children[0] = 24;
|
||||||
|
/* 7:24 */waypoints[25].children[1] = 13;
|
||||||
|
/* 7:24 */waypoints[25].children[2] = 26;
|
||||||
|
/* 7:24 */waypoints[25].children[3] = 78;
|
||||||
|
/* 7:24 */waypoints[26] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[26].origin =(4169.16, 81.2772, 4.125);
|
||||||
|
/* 7:24 */waypoints[26].type = "stand";
|
||||||
|
/* 7:24 */waypoints[26].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[26].children[0] = 25;
|
||||||
|
/* 7:24 */waypoints[26].children[1] = 27;
|
||||||
|
/* 7:24 */waypoints[26].children[2] = 88;
|
||||||
|
/* 7:24 */waypoints[26].children[3] = 89;
|
||||||
|
/* 7:24 */waypoints[27] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[27].origin =(4098.76, 284.277, 4.125);
|
||||||
|
/* 7:24 */waypoints[27].type = "stand";
|
||||||
|
/* 7:24 */waypoints[27].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[27].children[0] = 26;
|
||||||
|
/* 7:24 */waypoints[27].children[1] = 28;
|
||||||
|
/* 7:24 */waypoints[27].children[2] = 87;
|
||||||
|
/* 7:24 */waypoints[27].children[3] = 90;
|
||||||
|
/* 7:24 */waypoints[28] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[28].origin =(4185.43, 592.608, 4.125);
|
||||||
|
/* 7:24 */waypoints[28].type = "stand";
|
||||||
|
/* 7:24 */waypoints[28].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[28].children[0] = 27;
|
||||||
|
/* 7:24 */waypoints[28].children[1] = 29;
|
||||||
|
/* 7:24 */waypoints[28].children[2] = 30;
|
||||||
|
/* 7:24 */waypoints[29] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[29].origin =(4221.56, 798.646, 4.125);
|
||||||
|
/* 7:24 */waypoints[29].type = "stand";
|
||||||
|
/* 7:24 */waypoints[29].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[29].children[0] = 28;
|
||||||
|
/* 7:24 */waypoints[29].children[1] = 32;
|
||||||
|
/* 7:24 */waypoints[30] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[30].origin =(4030.29, 680.176, 4.125);
|
||||||
|
/* 7:24 */waypoints[30].type = "stand";
|
||||||
|
/* 7:24 */waypoints[30].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[30].children[0] = 28;
|
||||||
|
/* 7:24 */waypoints[30].children[1] = 31;
|
||||||
|
/* 7:24 */waypoints[30].children[2] = 51;
|
||||||
|
/* 7:24 */waypoints[31] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[31].origin =(4089.15, 1055.9, 4.125);
|
||||||
|
/* 7:24 */waypoints[31].type = "stand";
|
||||||
|
/* 7:24 */waypoints[31].childCount = 5;
|
||||||
|
/* 7:24 */waypoints[31].children[0] = 30;
|
||||||
|
/* 7:24 */waypoints[31].children[1] = 32;
|
||||||
|
/* 7:24 */waypoints[31].children[2] = 33;
|
||||||
|
/* 7:24 */waypoints[31].children[3] = 72;
|
||||||
|
/* 7:24 */waypoints[31].children[4] = 73;
|
||||||
|
/* 7:24 */waypoints[32] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[32].origin =(4223, 1027.76, 4.125);
|
||||||
|
/* 7:24 */waypoints[32].type = "stand";
|
||||||
|
/* 7:24 */waypoints[32].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[32].children[0] = 31;
|
||||||
|
/* 7:24 */waypoints[32].children[1] = 29;
|
||||||
|
/* 7:24 */waypoints[33] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[33].origin =(3846.6, 1061.98, 4.125);
|
||||||
|
/* 7:24 */waypoints[33].type = "stand";
|
||||||
|
/* 7:24 */waypoints[33].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[33].children[0] = 31;
|
||||||
|
/* 7:24 */waypoints[33].children[1] = 34;
|
||||||
|
/* 7:24 */waypoints[33].children[2] = 100;
|
||||||
|
/* 7:24 */waypoints[34] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[34].origin =(3860.63, 1255.63, 4.125);
|
||||||
|
/* 7:24 */waypoints[34].type = "stand";
|
||||||
|
/* 7:24 */waypoints[34].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[34].children[0] = 33;
|
||||||
|
/* 7:24 */waypoints[34].children[1] = 35;
|
||||||
|
/* 7:24 */waypoints[34].children[2] = 36;
|
||||||
|
/* 7:24 */waypoints[35] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[35].origin =(4151.97, 1277.01, 4.125);
|
||||||
|
/* 7:24 */waypoints[35].type = "stand";
|
||||||
|
/* 7:24 */waypoints[35].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[35].children[0] = 34;
|
||||||
|
/* 7:24 */waypoints[35].children[1] = 60;
|
||||||
|
/* 7:24 */waypoints[35].children[2] = 71;
|
||||||
|
/* 7:24 */waypoints[36] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[36].origin =(3681.6, 1236.82, 4.125);
|
||||||
|
/* 7:24 */waypoints[36].type = "stand";
|
||||||
|
/* 7:24 */waypoints[36].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[36].children[0] = 34;
|
||||||
|
/* 7:24 */waypoints[36].children[1] = 37;
|
||||||
|
/* 7:24 */waypoints[36].children[2] = 38;
|
||||||
|
/* 7:24 */waypoints[37] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[37].origin =(3679.65, 884.771, 4.125);
|
||||||
|
/* 7:24 */waypoints[37].type = "stand";
|
||||||
|
/* 7:24 */waypoints[37].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[37].children[0] = 36;
|
||||||
|
/* 7:24 */waypoints[37].children[1] = 85;
|
||||||
|
/* 7:24 */waypoints[38] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[38].origin =(3521.36, 1211.28, 4.125);
|
||||||
|
/* 7:24 */waypoints[38].type = "stand";
|
||||||
|
/* 7:24 */waypoints[38].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[38].children[0] = 36;
|
||||||
|
/* 7:24 */waypoints[38].children[1] = 39;
|
||||||
|
/* 7:24 */waypoints[38].children[2] = 40;
|
||||||
|
/* 7:24 */waypoints[39] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[39].origin =(3537.13, 877.264, 132.125);
|
||||||
|
/* 7:24 */waypoints[39].type = "stand";
|
||||||
|
/* 7:24 */waypoints[39].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[39].children[0] = 38;
|
||||||
|
/* 7:24 */waypoints[39].children[1] = 86;
|
||||||
|
/* 7:24 */waypoints[40] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[40].origin =(3376.26, 1241.63, 4.125);
|
||||||
|
/* 7:24 */waypoints[40].type = "stand";
|
||||||
|
/* 7:24 */waypoints[40].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[40].children[0] = 38;
|
||||||
|
/* 7:24 */waypoints[40].children[1] = 41;
|
||||||
|
/* 7:24 */waypoints[40].children[2] = 42;
|
||||||
|
/* 7:24 */waypoints[41] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[41].origin =(3082.99, 1258.97, 4.125);
|
||||||
|
/* 7:24 */waypoints[41].type = "stand";
|
||||||
|
/* 7:24 */waypoints[41].childCount = 5;
|
||||||
|
/* 7:24 */waypoints[41].children[0] = 40;
|
||||||
|
/* 7:24 */waypoints[41].children[1] = 62;
|
||||||
|
/* 7:24 */waypoints[41].children[2] = 63;
|
||||||
|
/* 7:24 */waypoints[41].children[3] = 70;
|
||||||
|
/* 7:24 */waypoints[41].children[4] = 75;
|
||||||
|
/* 7:24 */waypoints[42] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[42].origin =(3364.23, 988.241, 4.125);
|
||||||
|
/* 7:24 */waypoints[42].type = "stand";
|
||||||
|
/* 7:24 */waypoints[42].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[42].children[0] = 40;
|
||||||
|
/* 7:24 */waypoints[42].children[1] = 43;
|
||||||
|
/* 7:24 */waypoints[42].children[2] = 99;
|
||||||
|
/* 7:24 */waypoints[43] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[43].origin =(3182.21, 958.801, 4.125);
|
||||||
|
/* 7:24 */waypoints[43].type = "stand";
|
||||||
|
/* 7:24 */waypoints[43].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[43].children[0] = 42;
|
||||||
|
/* 7:24 */waypoints[43].children[1] = 44;
|
||||||
|
/* 7:24 */waypoints[43].children[2] = 45;
|
||||||
|
/* 7:24 */waypoints[44] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[44].origin =(3049.94, 1013.28, 4.125);
|
||||||
|
/* 7:24 */waypoints[44].type = "stand";
|
||||||
|
/* 7:24 */waypoints[44].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[44].children[0] = 43;
|
||||||
|
/* 7:24 */waypoints[44].children[1] = 64;
|
||||||
|
/* 7:24 */waypoints[44].children[2] = 74;
|
||||||
|
/* 7:24 */waypoints[45] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[45].origin =(3191.6, 731.597, 4.125);
|
||||||
|
/* 7:24 */waypoints[45].type = "stand";
|
||||||
|
/* 7:24 */waypoints[45].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[45].children[0] = 43;
|
||||||
|
/* 7:24 */waypoints[45].children[1] = 46;
|
||||||
|
/* 7:24 */waypoints[45].children[2] = 50;
|
||||||
|
/* 7:24 */waypoints[45].children[3] = 104;
|
||||||
|
/* 7:24 */waypoints[46] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[46].origin =(3027.43, 730.399, 4.125);
|
||||||
|
/* 7:24 */waypoints[46].type = "stand";
|
||||||
|
/* 7:24 */waypoints[46].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[46].children[0] = 45;
|
||||||
|
/* 7:24 */waypoints[46].children[1] = 47;
|
||||||
|
/* 7:24 */waypoints[46].children[2] = 64;
|
||||||
|
/* 7:24 */waypoints[47] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[47].origin =(3047.45, 416.651, 4.125);
|
||||||
|
/* 7:24 */waypoints[47].type = "stand";
|
||||||
|
/* 7:24 */waypoints[47].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[47].children[0] = 46;
|
||||||
|
/* 7:24 */waypoints[47].children[1] = 48;
|
||||||
|
/* 7:24 */waypoints[48] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[48].origin =(3312.04, 402.144, 4.125);
|
||||||
|
/* 7:24 */waypoints[48].type = "stand";
|
||||||
|
/* 7:24 */waypoints[48].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[48].children[0] = 47;
|
||||||
|
/* 7:24 */waypoints[48].children[1] = 49;
|
||||||
|
/* 7:24 */waypoints[48].children[2] = 56;
|
||||||
|
/* 7:24 */waypoints[48].children[3] = 77;
|
||||||
|
/* 7:24 */waypoints[49] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[49].origin =(3380.93, 514.826, 4.125);
|
||||||
|
/* 7:24 */waypoints[49].type = "stand";
|
||||||
|
/* 7:24 */waypoints[49].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[49].children[0] = 48;
|
||||||
|
/* 7:24 */waypoints[49].children[1] = 50;
|
||||||
|
/* 7:24 */waypoints[50] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[50].origin =(3388.5, 728.205, 4.125);
|
||||||
|
/* 7:24 */waypoints[50].type = "stand";
|
||||||
|
/* 7:24 */waypoints[50].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[50].children[0] = 49;
|
||||||
|
/* 7:24 */waypoints[50].children[1] = 45;
|
||||||
|
/* 7:24 */waypoints[50].children[2] = 51;
|
||||||
|
/* 7:24 */waypoints[51] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[51].origin =(3853.49, 688.763, 4.125);
|
||||||
|
/* 7:24 */waypoints[51].type = "stand";
|
||||||
|
/* 7:24 */waypoints[51].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[51].children[0] = 50;
|
||||||
|
/* 7:24 */waypoints[51].children[1] = 30;
|
||||||
|
/* 7:24 */waypoints[51].children[2] = 52;
|
||||||
|
/* 7:24 */waypoints[52] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[52].origin =(3848, 361.723, 4.125);
|
||||||
|
/* 7:24 */waypoints[52].type = "stand";
|
||||||
|
/* 7:24 */waypoints[52].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[52].children[0] = 51;
|
||||||
|
/* 7:24 */waypoints[52].children[1] = 24;
|
||||||
|
/* 7:24 */waypoints[52].children[2] = 53;
|
||||||
|
/* 7:24 */waypoints[52].children[3] = 57;
|
||||||
|
/* 7:24 */waypoints[53] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[53].origin =(3485.29, 355.107, 4.125);
|
||||||
|
/* 7:24 */waypoints[53].type = "stand";
|
||||||
|
/* 7:24 */waypoints[53].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[53].children[0] = 52;
|
||||||
|
/* 7:24 */waypoints[53].children[1] = 54;
|
||||||
|
/* 7:24 */waypoints[54] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[54].origin =(3471.95, 157.885, 4.125);
|
||||||
|
/* 7:24 */waypoints[54].type = "stand";
|
||||||
|
/* 7:24 */waypoints[54].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[54].children[0] = 53;
|
||||||
|
/* 7:24 */waypoints[54].children[1] = 55;
|
||||||
|
/* 7:24 */waypoints[54].children[2] = 56;
|
||||||
|
/* 7:24 */waypoints[54].children[3] = 23;
|
||||||
|
/* 7:24 */waypoints[55] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[55].origin =(3589.58, 168.056, 16.125);
|
||||||
|
/* 7:24 */waypoints[55].type = "stand";
|
||||||
|
/* 7:24 */waypoints[55].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[55].children[0] = 54;
|
||||||
|
/* 7:24 */waypoints[56] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[56].origin =(3218.78, 219.476, 4.125);
|
||||||
|
/* 7:24 */waypoints[56].type = "stand";
|
||||||
|
/* 7:24 */waypoints[56].childCount = 4;
|
||||||
|
/* 7:24 */waypoints[56].children[0] = 54;
|
||||||
|
/* 7:24 */waypoints[56].children[1] = 22;
|
||||||
|
/* 7:24 */waypoints[56].children[2] = 48;
|
||||||
|
/* 7:24 */waypoints[56].children[3] = 76;
|
||||||
|
/* 7:24 */waypoints[57] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[57].origin =(3755.28, 170.838, 4.125);
|
||||||
|
/* 7:24 */waypoints[57].type = "stand";
|
||||||
|
/* 7:24 */waypoints[57].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[57].children[0] = 23;
|
||||||
|
/* 7:24 */waypoints[57].children[1] = 52;
|
||||||
|
/* 7:24 */waypoints[57].children[2] = 68;
|
||||||
|
/* 7:24 */waypoints[58] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[58].origin =(3027.85, -740.791, 4.125);
|
||||||
|
/* 7:24 */waypoints[58].type = "stand";
|
||||||
|
/* 7:24 */waypoints[58].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[58].children[0] = 19;
|
||||||
|
/* 7:24 */waypoints[58].children[1] = 59;
|
||||||
|
/* 7:24 */waypoints[59] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[59].origin =(3028.36, -562.938, 38.125);
|
||||||
|
/* 7:24 */waypoints[59].type = "stand";
|
||||||
|
/* 7:24 */waypoints[59].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[59].children[0] = 58;
|
||||||
|
/* 7:24 */waypoints[59].children[1] = 19;
|
||||||
|
/* 7:24 */waypoints[59].children[2] = 65;
|
||||||
|
/* 7:24 */waypoints[60] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[60].origin =(4235.75, 1353.87, 4.125);
|
||||||
|
/* 7:24 */waypoints[60].type = "stand";
|
||||||
|
/* 7:24 */waypoints[60].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[60].children[0] = 35;
|
||||||
|
/* 7:24 */waypoints[60].children[1] = 61;
|
||||||
|
/* 7:24 */waypoints[61] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[61].origin =(4250.66, 1199.9, 38.125);
|
||||||
|
/* 7:24 */waypoints[61].type = "stand";
|
||||||
|
/* 7:24 */waypoints[61].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[61].children[0] = 60;
|
||||||
|
/* 7:24 */waypoints[62] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[62].origin =(3009.59, 1184.49, 4.125);
|
||||||
|
/* 7:24 */waypoints[62].type = "stand";
|
||||||
|
/* 7:24 */waypoints[62].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[62].children[0] = 41;
|
||||||
|
/* 7:24 */waypoints[62].children[1] = 63;
|
||||||
|
/* 7:24 */waypoints[63] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[63].origin =(3009.61, 1339.47, 4.125);
|
||||||
|
/* 7:24 */waypoints[63].type = "stand";
|
||||||
|
/* 7:24 */waypoints[63].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[63].children[0] = 62;
|
||||||
|
/* 7:24 */waypoints[63].children[1] = 41;
|
||||||
|
/* 7:24 */waypoints[64] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[64].origin =(3003.67, 1068.55, 4.125);
|
||||||
|
/* 7:24 */waypoints[64].type = "stand";
|
||||||
|
/* 7:24 */waypoints[64].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[64].children[0] = 44;
|
||||||
|
/* 7:24 */waypoints[64].children[1] = 46;
|
||||||
|
/* 7:24 */waypoints[65] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[65].origin =(2981.65, -553.51, 38.125);
|
||||||
|
/* 7:24 */waypoints[65].type = "stand";
|
||||||
|
/* 7:24 */waypoints[65].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[65].children[0] = 59;
|
||||||
|
/* 7:24 */waypoints[66] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[66].origin =(3544.09, -1117.4, 56.125);
|
||||||
|
/* 7:24 */waypoints[66].type = "stand";
|
||||||
|
/* 7:24 */waypoints[66].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[66].children[0] = 8;
|
||||||
|
/* 7:24 */waypoints[67] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[67].origin =(3959.77, -1107.26, 56.125);
|
||||||
|
/* 7:24 */waypoints[67].type = "stand";
|
||||||
|
/* 7:24 */waypoints[67].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[67].children[0] = 8;
|
||||||
|
/* 7:24 */waypoints[68] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[68].origin =(3691.13, 168.9, 7.18473);
|
||||||
|
/* 7:24 */waypoints[68].type = "climb";
|
||||||
|
/* 7:24 */waypoints[68].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[68].children[0] = 57;
|
||||||
|
/* 7:24 */waypoints[68].children[1] = 69;
|
||||||
|
/* 7:24 */waypoints[68].angles = (-69.4885, -178.671, 0);
|
||||||
|
/* 7:24 */waypoints[69] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[69].origin =(3691.13, 165.588, 211.472);
|
||||||
|
/* 7:24 */waypoints[69].type = "climb";
|
||||||
|
/* 7:24 */waypoints[69].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[69].children[0] = 68;
|
||||||
|
/* 7:24 */waypoints[69].children[1] = 84;
|
||||||
|
/* 7:24 */waypoints[69].angles = (69.9402, 177.545, 0);
|
||||||
|
/* 7:24 */waypoints[70] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[70].origin =(3163.48, 1167.13, 4.125);
|
||||||
|
/* 7:24 */waypoints[70].type = "stand";
|
||||||
|
/* 7:24 */waypoints[70].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[70].children[0] = 41;
|
||||||
|
/* 7:24 */waypoints[70].children[1] = 103;
|
||||||
|
/* 7:24 */waypoints[70].angles = (4.26819, 0.428467, 0);
|
||||||
|
/* 7:24 */waypoints[71] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[71].origin =(4139.22, 1167.13, 4.125);
|
||||||
|
/* 7:24 */waypoints[71].type = "stand";
|
||||||
|
/* 7:24 */waypoints[71].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[71].children[0] = 35;
|
||||||
|
/* 7:24 */waypoints[71].children[1] = 102;
|
||||||
|
/* 7:24 */waypoints[71].angles = (13.667, 173.232, 0);
|
||||||
|
/* 7:24 */waypoints[72] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[72].origin =(4162.2, 1099.53, 4.125);
|
||||||
|
/* 7:24 */waypoints[72].type = "stand";
|
||||||
|
/* 7:24 */waypoints[72].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[72].children[0] = 31;
|
||||||
|
/* 7:24 */waypoints[72].angles = (12.2443, 5.55359, 0);
|
||||||
|
/* 7:24 */waypoints[73] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[73].origin =(4014.26, 1115.31, 4.125);
|
||||||
|
/* 7:24 */waypoints[73].type = "stand";
|
||||||
|
/* 7:24 */waypoints[73].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[73].children[0] = 31;
|
||||||
|
/* 7:24 */waypoints[73].angles = (10.8215, 165.558, 0);
|
||||||
|
/* 7:24 */waypoints[74] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[74].origin =(3092.94, 1071.67, 4.125);
|
||||||
|
/* 7:24 */waypoints[74].type = "stand";
|
||||||
|
/* 7:24 */waypoints[74].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[74].children[0] = 44;
|
||||||
|
/* 7:24 */waypoints[74].angles = (10.1074, -20.3577, 0);
|
||||||
|
/* 7:24 */waypoints[75] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[75].origin =(3080.53, 1167.13, 4.125);
|
||||||
|
/* 7:24 */waypoints[75].type = "stand";
|
||||||
|
/* 7:24 */waypoints[75].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[75].children[0] = 41;
|
||||||
|
/* 7:24 */waypoints[75].angles = (7.68494, 5.7074, 0);
|
||||||
|
/* 7:24 */waypoints[76] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[76].origin =(3015.02, 202.517, 4.125);
|
||||||
|
/* 7:24 */waypoints[76].type = "stand";
|
||||||
|
/* 7:24 */waypoints[76].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[76].children[0] = 56;
|
||||||
|
/* 7:24 */waypoints[76].children[1] = 22;
|
||||||
|
/* 7:24 */waypoints[76].angles = (6.8335, -93.3728, 0);
|
||||||
|
/* 7:24 */waypoints[77] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[77].origin =(3119.13, 544.875, 4.125);
|
||||||
|
/* 7:24 */waypoints[77].type = "crouch";
|
||||||
|
/* 7:24 */waypoints[77].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[77].children[0] = 48;
|
||||||
|
/* 7:24 */waypoints[77].angles = (2.27966, -36.145, 0);
|
||||||
|
/* 7:24 */waypoints[78] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[78].origin =(4229.68, -354.319, 4.125);
|
||||||
|
/* 7:24 */waypoints[78].type = "stand";
|
||||||
|
/* 7:24 */waypoints[78].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[78].children[0] = 25;
|
||||||
|
/* 7:24 */waypoints[78].angles = (9.39331, 172.678, 0);
|
||||||
|
/* 7:24 */waypoints[79] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[79].origin =(4164.74, -705.19, 4.125);
|
||||||
|
/* 7:24 */waypoints[79].type = "stand";
|
||||||
|
/* 7:24 */waypoints[79].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[79].children[0] = 15;
|
||||||
|
/* 7:24 */waypoints[79].children[1] = 96;
|
||||||
|
/* 7:24 */waypoints[79].angles = (14.2328, 177.374, 0);
|
||||||
|
/* 7:24 */waypoints[80] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[80].origin =(4231.43, -820.068, 4.125);
|
||||||
|
/* 7:24 */waypoints[80].type = "stand";
|
||||||
|
/* 7:24 */waypoints[80].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[80].children[0] = 6;
|
||||||
|
/* 7:24 */waypoints[80].children[1] = 81;
|
||||||
|
/* 7:24 */waypoints[80].angles = (3.70239, -159.412, 0);
|
||||||
|
/* 7:24 */waypoints[81] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[81].origin =(4115.59, -807.365, 4.125);
|
||||||
|
/* 7:24 */waypoints[81].type = "stand";
|
||||||
|
/* 7:24 */waypoints[81].childCount = 3;
|
||||||
|
/* 7:24 */waypoints[81].children[0] = 80;
|
||||||
|
/* 7:24 */waypoints[81].children[1] = 5;
|
||||||
|
/* 7:24 */waypoints[81].children[2] = 95;
|
||||||
|
/* 7:24 */waypoints[81].angles = (6.26221, -179.912, 0);
|
||||||
|
/* 7:24 */waypoints[82] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[82].origin =(3035.61, -845.074, 4.125);
|
||||||
|
/* 7:24 */waypoints[82].type = "stand";
|
||||||
|
/* 7:24 */waypoints[82].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[82].children[0] = 0;
|
||||||
|
/* 7:24 */waypoints[82].angles = (5.83923, -12.6563, 0);
|
||||||
|
/* 7:24 */waypoints[83] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[83].origin =(3175.73, -772.69, 4.125);
|
||||||
|
/* 7:24 */waypoints[83].type = "stand";
|
||||||
|
/* 7:24 */waypoints[83].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[83].children[0] = 19;
|
||||||
|
/* 7:24 */waypoints[83].angles = (6.40503, -8.53088, 0);
|
||||||
|
/* 7:24 */waypoints[84] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[84].origin =(3573.54, 166.455, 236.125);
|
||||||
|
/* 7:24 */waypoints[84].type = "crouch";
|
||||||
|
/* 7:24 */waypoints[84].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[84].children[0] = 69;
|
||||||
|
/* 7:24 */waypoints[84].angles = (12.0862, -1.1261, 0);
|
||||||
|
/* 7:24 */waypoints[85] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[85].origin =(3520.76, 874.834, 4.125);
|
||||||
|
/* 7:24 */waypoints[85].type = "crouch";
|
||||||
|
/* 7:24 */waypoints[85].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[85].children[0] = 37;
|
||||||
|
/* 7:24 */waypoints[85].angles = (2.69287, 53.5254, 0);
|
||||||
|
/* 7:24 */waypoints[86] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[86].origin =(3660.61, 905.04, 132.125);
|
||||||
|
/* 7:24 */waypoints[86].type = "crouch";
|
||||||
|
/* 7:24 */waypoints[86].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[86].children[0] = 39;
|
||||||
|
/* 7:24 */waypoints[86].angles = (3.97278, -87.6764, 0);
|
||||||
|
/* 7:24 */waypoints[87] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[87].origin =(4232.25, 271.227, 4.125);
|
||||||
|
/* 7:24 */waypoints[87].type = "crouch";
|
||||||
|
/* 7:24 */waypoints[87].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[87].children[0] = 27;
|
||||||
|
/* 7:24 */waypoints[87].angles = (-2.14661, 130.1, 0);
|
||||||
|
/* 7:24 */waypoints[88] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[88].origin =(4037.26, 184.107, 16.125);
|
||||||
|
/* 7:24 */waypoints[88].type = "crouch";
|
||||||
|
/* 7:24 */waypoints[88].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[88].children[0] = 26;
|
||||||
|
/* 7:24 */waypoints[88].angles = (2.12158, -59.6613, 0);
|
||||||
|
/* 7:24 */waypoints[89] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[89].origin =(4228.59, 190.697, 4.125);
|
||||||
|
/* 7:24 */waypoints[89].type = "crouch";
|
||||||
|
/* 7:24 */waypoints[89].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[89].children[0] = 26;
|
||||||
|
/* 7:24 */waypoints[89].angles = (2.12158, -117.169, 0);
|
||||||
|
/* 7:24 */waypoints[90] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[90].origin =(4061.02, 506.428, 4.125);
|
||||||
|
/* 7:24 */waypoints[90].type = "crouch";
|
||||||
|
/* 7:24 */waypoints[90].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[90].children[0] = 27;
|
||||||
|
/* 7:24 */waypoints[90].angles = (1.55029, -65.6543, 0);
|
||||||
|
/* 7:24 */waypoints[91] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[91].origin =(3852.44, -594.989, 4.125);
|
||||||
|
/* 7:24 */waypoints[91].type = "crouch";
|
||||||
|
/* 7:24 */waypoints[91].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[91].children[0] = 3;
|
||||||
|
/* 7:24 */waypoints[91].angles = (1.40747, -142.674, 0);
|
||||||
|
/* 7:24 */waypoints[92] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[92].origin =(3767.55, -698.218, 4.125);
|
||||||
|
/* 7:24 */waypoints[92].type = "crouch";
|
||||||
|
/* 7:24 */waypoints[92].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[92].children[0] = 3;
|
||||||
|
/* 7:24 */waypoints[92].angles = (5.39551, 96.8884, 0);
|
||||||
|
/* 7:24 */waypoints[93] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[93].origin =(3689.97, -626.034, 132.125);
|
||||||
|
/* 7:24 */waypoints[93].type = "crouch";
|
||||||
|
/* 7:24 */waypoints[93].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[93].children[0] = 10;
|
||||||
|
/* 7:24 */waypoints[93].angles = (5.10986, 88.3575, 0);
|
||||||
|
/* 7:24 */waypoints[94] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[94].origin =(4191.71, -440.835, 4.125);
|
||||||
|
/* 7:24 */waypoints[94].type = "claymore";
|
||||||
|
/* 7:24 */waypoints[94].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[94].children[0] = 14;
|
||||||
|
/* 7:24 */waypoints[94].angles = (8.52661, -172.419, 0);
|
||||||
|
/* 7:24 */waypoints[95] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[95].origin =(4064.09, -789.292, 4.125);
|
||||||
|
/* 7:24 */waypoints[95].type = "claymore";
|
||||||
|
/* 7:24 */waypoints[95].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[95].children[0] = 81;
|
||||||
|
/* 7:24 */waypoints[95].angles = (13.0859, -162.587, 0);
|
||||||
|
/* 7:24 */waypoints[96] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[96].origin =(4088.21, -743.844, 4.125);
|
||||||
|
/* 7:24 */waypoints[96].type = "claymore";
|
||||||
|
/* 7:24 */waypoints[96].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[96].children[0] = 79;
|
||||||
|
/* 7:24 */waypoints[96].angles = (11.8005, 162.664, 0);
|
||||||
|
/* 7:24 */waypoints[97] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[97].origin =(3545.6, -770.437, 4.125);
|
||||||
|
/* 7:24 */waypoints[97].type = "grenade";
|
||||||
|
/* 7:24 */waypoints[97].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[97].children[0] = 2;
|
||||||
|
/* 7:24 */waypoints[97].angles = (-39.8737, 80.2441, 0);
|
||||||
|
/* 7:24 */waypoints[98] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[98].origin =(3475.63, -338.469, 4.125);
|
||||||
|
/* 7:24 */waypoints[98].type = "claymore";
|
||||||
|
/* 7:24 */waypoints[98].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[98].children[0] = 17;
|
||||||
|
/* 7:24 */waypoints[98].angles = (12.0862, -159.027, 0);
|
||||||
|
/* 7:24 */waypoints[99] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[99].origin =(3335.91, 1116.12, 4.125);
|
||||||
|
/* 7:24 */waypoints[99].type = "grenade";
|
||||||
|
/* 7:24 */waypoints[99].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[99].children[0] = 42;
|
||||||
|
/* 7:24 */waypoints[99].angles = (-33.8916, -83.595, 0);
|
||||||
|
/* 7:24 */waypoints[100] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[100].origin =(3818.15, 1020.62, 4.125);
|
||||||
|
/* 7:24 */waypoints[100].type = "grenade";
|
||||||
|
/* 7:24 */waypoints[100].childCount = 2;
|
||||||
|
/* 7:24 */waypoints[100].children[0] = 33;
|
||||||
|
/* 7:24 */waypoints[100].children[1] = 101;
|
||||||
|
/* 7:24 */waypoints[100].angles = (-33.0402, -92.9883, 0);
|
||||||
|
/* 7:24 */waypoints[101] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[101].origin =(3965.75, 887.177, 4.125);
|
||||||
|
/* 7:24 */waypoints[101].type = "claymore";
|
||||||
|
/* 7:24 */waypoints[101].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[101].children[0] = 100;
|
||||||
|
/* 7:24 */waypoints[101].angles = (10.8063, 39.5453, 0);
|
||||||
|
/* 7:24 */waypoints[102] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[102].origin =(4013.74, 1172.02, 4.125);
|
||||||
|
/* 7:24 */waypoints[102].type = "claymore";
|
||||||
|
/* 7:24 */waypoints[102].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[102].children[0] = 71;
|
||||||
|
/* 7:24 */waypoints[102].angles = (10.3778, 158.395, 0);
|
||||||
|
/* 7:24 */waypoints[103] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[103].origin =(3239.77, 1167.13, 4.125);
|
||||||
|
/* 7:24 */waypoints[103].type = "claymore";
|
||||||
|
/* 7:24 */waypoints[103].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[103].children[0] = 70;
|
||||||
|
/* 7:24 */waypoints[103].angles = (11.9434, 33.2776, 0);
|
||||||
|
/* 7:24 */waypoints[104] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[104].origin =(3154.16, 654.092, 4.125);
|
||||||
|
/* 7:24 */waypoints[104].type = "grenade";
|
||||||
|
/* 7:24 */waypoints[104].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[104].children[0] = 45;
|
||||||
|
/* 7:24 */waypoints[104].angles = (-32.326, -61.9574, 0);
|
||||||
|
/* 7:24 */waypoints[105] = spawnstruct();
|
||||||
|
/* 7:24 */waypoints[105].origin =(4031.39, -326.558, 4.125);
|
||||||
|
/* 7:24 */waypoints[105].type = "grenade";
|
||||||
|
/* 7:24 */waypoints[105].childCount = 1;
|
||||||
|
/* 7:24 */waypoints[105].children[0] = 13;
|
||||||
|
/* 7:24 */waypoints[105].angles = (-29.7662, 88.797, 0);
|
||||||
|
return waypoints;
|
||||||
|
}
|
183
mods/bots/maps/mp/bots/waypoints/museum.gsc
Normal file
183
mods/bots/maps/mp/bots/waypoints/museum.gsc
Normal file
@ -0,0 +1,183 @@
|
|||||||
|
Museum()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
/* 1:11 */waypoints[0] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[0].origin =(-14201.1, 22576.2, -16359.9);
|
||||||
|
/* 1:11 */waypoints[0].type = "stand";
|
||||||
|
/* 1:11 */waypoints[0].childCount = 2;
|
||||||
|
/* 1:11 */waypoints[0].children[0] = 1;
|
||||||
|
/* 1:11 */waypoints[0].children[1] = 3;
|
||||||
|
/* 1:11 */waypoints[1] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[1].origin =(-14212.2, 22872.4, -16359.9);
|
||||||
|
/* 1:11 */waypoints[1].type = "stand";
|
||||||
|
/* 1:11 */waypoints[1].childCount = 2;
|
||||||
|
/* 1:11 */waypoints[1].children[0] = 0;
|
||||||
|
/* 1:11 */waypoints[1].children[1] = 2;
|
||||||
|
/* 1:11 */waypoints[2] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[2].origin =(-14901.2, 22900.3, -16359.9);
|
||||||
|
/* 1:11 */waypoints[2].type = "stand";
|
||||||
|
/* 1:11 */waypoints[2].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[2].children[0] = 3;
|
||||||
|
/* 1:11 */waypoints[2].children[1] = 6;
|
||||||
|
/* 1:11 */waypoints[2].children[2] = 1;
|
||||||
|
/* 1:11 */waypoints[3] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[3].origin =(-14880.4, 22613.8, -16359.9);
|
||||||
|
/* 1:11 */waypoints[3].type = "stand";
|
||||||
|
/* 1:11 */waypoints[3].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[3].children[0] = 2;
|
||||||
|
/* 1:11 */waypoints[3].children[1] = 0;
|
||||||
|
/* 1:11 */waypoints[3].children[2] = 4;
|
||||||
|
/* 1:11 */waypoints[4] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[4].origin =(-15244.5, 22563.7, -16359.9);
|
||||||
|
/* 1:11 */waypoints[4].type = "stand";
|
||||||
|
/* 1:11 */waypoints[4].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[4].children[0] = 3;
|
||||||
|
/* 1:11 */waypoints[4].children[1] = 5;
|
||||||
|
/* 1:11 */waypoints[4].children[2] = 7;
|
||||||
|
/* 1:11 */waypoints[5] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[5].origin =(-15242.7, 22730, -16359.9);
|
||||||
|
/* 1:11 */waypoints[5].type = "stand";
|
||||||
|
/* 1:11 */waypoints[5].childCount = 2;
|
||||||
|
/* 1:11 */waypoints[5].children[0] = 4;
|
||||||
|
/* 1:11 */waypoints[5].children[1] = 6;
|
||||||
|
/* 1:11 */waypoints[6] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[6].origin =(-15242.8, 22926.1, -16359.9);
|
||||||
|
/* 1:11 */waypoints[6].type = "stand";
|
||||||
|
/* 1:11 */waypoints[6].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[6].children[0] = 5;
|
||||||
|
/* 1:11 */waypoints[6].children[1] = 2;
|
||||||
|
/* 1:11 */waypoints[6].children[2] = 7;
|
||||||
|
/* 1:11 */waypoints[7] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[7].origin =(-15523.2, 22762.5, -16359.9);
|
||||||
|
/* 1:11 */waypoints[7].type = "stand";
|
||||||
|
/* 1:11 */waypoints[7].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[7].children[0] = 6;
|
||||||
|
/* 1:11 */waypoints[7].children[1] = 4;
|
||||||
|
/* 1:11 */waypoints[7].children[2] = 8;
|
||||||
|
/* 1:11 */waypoints[8] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[8].origin =(-15838.1, 22767.9, -16359.9);
|
||||||
|
/* 1:11 */waypoints[8].type = "stand";
|
||||||
|
/* 1:11 */waypoints[8].childCount = 2;
|
||||||
|
/* 1:11 */waypoints[8].children[0] = 7;
|
||||||
|
/* 1:11 */waypoints[8].children[1] = 9;
|
||||||
|
/* 1:11 */waypoints[9] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[9].origin =(-15868.9, 23273.3, -16359.9);
|
||||||
|
/* 1:11 */waypoints[9].type = "stand";
|
||||||
|
/* 1:11 */waypoints[9].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[9].children[0] = 8;
|
||||||
|
/* 1:11 */waypoints[9].children[1] = 10;
|
||||||
|
/* 1:11 */waypoints[9].children[2] = 19;
|
||||||
|
/* 1:11 */waypoints[10] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[10].origin =(-15832.1, 23811.4, -16359.9);
|
||||||
|
/* 1:11 */waypoints[10].type = "stand";
|
||||||
|
/* 1:11 */waypoints[10].childCount = 2;
|
||||||
|
/* 1:11 */waypoints[10].children[0] = 9;
|
||||||
|
/* 1:11 */waypoints[10].children[1] = 11;
|
||||||
|
/* 1:11 */waypoints[11] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[11].origin =(-15502.4, 23804.6, -16359.9);
|
||||||
|
/* 1:11 */waypoints[11].type = "stand";
|
||||||
|
/* 1:11 */waypoints[11].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[11].children[0] = 10;
|
||||||
|
/* 1:11 */waypoints[11].children[1] = 12;
|
||||||
|
/* 1:11 */waypoints[11].children[2] = 14;
|
||||||
|
/* 1:11 */waypoints[12] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[12].origin =(-15241.7, 23594.9, -16359.9);
|
||||||
|
/* 1:11 */waypoints[12].type = "stand";
|
||||||
|
/* 1:11 */waypoints[12].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[12].children[0] = 11;
|
||||||
|
/* 1:11 */waypoints[12].children[1] = 13;
|
||||||
|
/* 1:11 */waypoints[12].children[2] = 18;
|
||||||
|
/* 1:11 */waypoints[13] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[13].origin =(-15233.2, 23792.4, -16359.9);
|
||||||
|
/* 1:11 */waypoints[13].type = "stand";
|
||||||
|
/* 1:11 */waypoints[13].childCount = 2;
|
||||||
|
/* 1:11 */waypoints[13].children[0] = 12;
|
||||||
|
/* 1:11 */waypoints[13].children[1] = 14;
|
||||||
|
/* 1:11 */waypoints[14] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[14].origin =(-15250.9, 23991.2, -16359.9);
|
||||||
|
/* 1:11 */waypoints[14].type = "stand";
|
||||||
|
/* 1:11 */waypoints[14].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[14].children[0] = 13;
|
||||||
|
/* 1:11 */waypoints[14].children[1] = 11;
|
||||||
|
/* 1:11 */waypoints[14].children[2] = 15;
|
||||||
|
/* 1:11 */waypoints[15] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[15].origin =(-14904.1, 23973.3, -16359.9);
|
||||||
|
/* 1:11 */waypoints[15].type = "stand";
|
||||||
|
/* 1:11 */waypoints[15].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[15].children[0] = 14;
|
||||||
|
/* 1:11 */waypoints[15].children[1] = 16;
|
||||||
|
/* 1:11 */waypoints[15].children[2] = 18;
|
||||||
|
/* 1:11 */waypoints[16] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[16].origin =(-14223.7, 23971.6, -16359.9);
|
||||||
|
/* 1:11 */waypoints[16].type = "stand";
|
||||||
|
/* 1:11 */waypoints[16].childCount = 2;
|
||||||
|
/* 1:11 */waypoints[16].children[0] = 15;
|
||||||
|
/* 1:11 */waypoints[16].children[1] = 17;
|
||||||
|
/* 1:11 */waypoints[17] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[17].origin =(-14217.5, 23679.9, -16359.9);
|
||||||
|
/* 1:11 */waypoints[17].type = "stand";
|
||||||
|
/* 1:11 */waypoints[17].childCount = 2;
|
||||||
|
/* 1:11 */waypoints[17].children[0] = 16;
|
||||||
|
/* 1:11 */waypoints[17].children[1] = 18;
|
||||||
|
/* 1:11 */waypoints[18] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[18].origin =(-14923.8, 23631.6, -16359.9);
|
||||||
|
/* 1:11 */waypoints[18].type = "stand";
|
||||||
|
/* 1:11 */waypoints[18].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[18].children[0] = 17;
|
||||||
|
/* 1:11 */waypoints[18].children[1] = 15;
|
||||||
|
/* 1:11 */waypoints[18].children[2] = 12;
|
||||||
|
/* 1:11 */waypoints[19] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[19].origin =(-16190.1, 23285.9, -16359.9);
|
||||||
|
/* 1:11 */waypoints[19].type = "stand";
|
||||||
|
/* 1:11 */waypoints[19].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[19].children[0] = 9;
|
||||||
|
/* 1:11 */waypoints[19].children[1] = 20;
|
||||||
|
/* 1:11 */waypoints[19].children[2] = 22;
|
||||||
|
/* 1:11 */waypoints[20] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[20].origin =(-16444.4, 23466.4, -16359.9);
|
||||||
|
/* 1:11 */waypoints[20].type = "stand";
|
||||||
|
/* 1:11 */waypoints[20].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[20].children[0] = 19;
|
||||||
|
/* 1:11 */waypoints[20].children[1] = 21;
|
||||||
|
/* 1:11 */waypoints[20].children[2] = 24;
|
||||||
|
/* 1:11 */waypoints[21] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[21].origin =(-16459.8, 23289.5, -16359.9);
|
||||||
|
/* 1:11 */waypoints[21].type = "stand";
|
||||||
|
/* 1:11 */waypoints[21].childCount = 2;
|
||||||
|
/* 1:11 */waypoints[21].children[0] = 20;
|
||||||
|
/* 1:11 */waypoints[21].children[1] = 22;
|
||||||
|
/* 1:11 */waypoints[22] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[22].origin =(-16459.8, 23123.8, -16359.9);
|
||||||
|
/* 1:11 */waypoints[22].type = "stand";
|
||||||
|
/* 1:11 */waypoints[22].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[22].children[0] = 21;
|
||||||
|
/* 1:11 */waypoints[22].children[1] = 19;
|
||||||
|
/* 1:11 */waypoints[22].children[2] = 23;
|
||||||
|
/* 1:11 */waypoints[23] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[23].origin =(-16808.9, 23122.2, -16359.9);
|
||||||
|
/* 1:11 */waypoints[23].type = "stand";
|
||||||
|
/* 1:11 */waypoints[23].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[23].children[0] = 22;
|
||||||
|
/* 1:11 */waypoints[23].children[1] = 24;
|
||||||
|
/* 1:11 */waypoints[23].children[2] = 26;
|
||||||
|
/* 1:11 */waypoints[24] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[24].origin =(-16820.4, 23400.2, -16359.9);
|
||||||
|
/* 1:11 */waypoints[24].type = "stand";
|
||||||
|
/* 1:11 */waypoints[24].childCount = 3;
|
||||||
|
/* 1:11 */waypoints[24].children[0] = 23;
|
||||||
|
/* 1:11 */waypoints[24].children[1] = 25;
|
||||||
|
/* 1:11 */waypoints[24].children[2] = 20;
|
||||||
|
/* 1:11 */waypoints[25] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[25].origin =(-17427.2, 23419.6, -16359.9);
|
||||||
|
/* 1:11 */waypoints[25].type = "stand";
|
||||||
|
/* 1:11 */waypoints[25].childCount = 2;
|
||||||
|
/* 1:11 */waypoints[25].children[0] = 24;
|
||||||
|
/* 1:11 */waypoints[25].children[1] = 26;
|
||||||
|
/* 1:11 */waypoints[26] = spawnstruct();
|
||||||
|
/* 1:11 */waypoints[26].origin =(-17455.6, 23174.3, -16359.9);
|
||||||
|
/* 1:11 */waypoints[26].type = "stand";
|
||||||
|
/* 1:11 */waypoints[26].childCount = 2;
|
||||||
|
/* 1:11 */waypoints[26].children[0] = 25;
|
||||||
|
/* 1:11 */waypoints[26].children[1] = 23;
|
||||||
|
return waypoints;
|
||||||
|
}
|
1155
mods/bots/maps/mp/bots/waypoints/nuketown.gsc
Normal file
1155
mods/bots/maps/mp/bots/waypoints/nuketown.gsc
Normal file
File diff suppressed because it is too large
Load Diff
687
mods/bots/maps/mp/bots/waypoints/oilrig.gsc
Normal file
687
mods/bots/maps/mp/bots/waypoints/oilrig.gsc
Normal file
@ -0,0 +1,687 @@
|
|||||||
|
Oilrig()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
/* 8:40 */waypoints[0] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[0].origin =(-822.026, 1464.92, -287.875);
|
||||||
|
/* 8:40 */waypoints[0].type = "stand";
|
||||||
|
/* 8:40 */waypoints[0].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[0].children[0] = 1;
|
||||||
|
/* 8:40 */waypoints[1] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[1].origin =(-807.557, 1208.11, -287.875);
|
||||||
|
/* 8:40 */waypoints[1].type = "stand";
|
||||||
|
/* 8:40 */waypoints[1].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[1].children[0] = 0;
|
||||||
|
/* 8:40 */waypoints[1].children[1] = 2;
|
||||||
|
/* 8:40 */waypoints[2] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[2].origin =(-633.393, 1175.46, -287.875);
|
||||||
|
/* 8:40 */waypoints[2].type = "stand";
|
||||||
|
/* 8:40 */waypoints[2].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[2].children[0] = 1;
|
||||||
|
/* 8:40 */waypoints[2].children[1] = 3;
|
||||||
|
/* 8:40 */waypoints[2].children[2] = 4;
|
||||||
|
/* 8:40 */waypoints[2].children[3] = 19;
|
||||||
|
/* 8:40 */waypoints[3] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[3].origin =(-618.753, 1423.69, -281.817);
|
||||||
|
/* 8:40 */waypoints[3].type = "stand";
|
||||||
|
/* 8:40 */waypoints[3].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[3].children[0] = 2;
|
||||||
|
/* 8:40 */waypoints[4] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[4].origin =(-413.421, 1177.76, -287.875);
|
||||||
|
/* 8:40 */waypoints[4].type = "stand";
|
||||||
|
/* 8:40 */waypoints[4].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[4].children[0] = 2;
|
||||||
|
/* 8:40 */waypoints[4].children[1] = 5;
|
||||||
|
/* 8:40 */waypoints[4].children[2] = 16;
|
||||||
|
/* 8:40 */waypoints[4].children[3] = 17;
|
||||||
|
/* 8:40 */waypoints[5] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[5].origin =(-412.043, 1388.66, -279.875);
|
||||||
|
/* 8:40 */waypoints[5].type = "stand";
|
||||||
|
/* 8:40 */waypoints[5].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[5].children[0] = 4;
|
||||||
|
/* 8:40 */waypoints[5].children[1] = 6;
|
||||||
|
/* 8:40 */waypoints[5].children[2] = 8;
|
||||||
|
/* 8:40 */waypoints[6] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[6].origin =(-59.4128, 1398.99, -279.875);
|
||||||
|
/* 8:40 */waypoints[6].type = "stand";
|
||||||
|
/* 8:40 */waypoints[6].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[6].children[0] = 5;
|
||||||
|
/* 8:40 */waypoints[6].children[1] = 7;
|
||||||
|
/* 8:40 */waypoints[7] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[7].origin =(-59.5178, 1502.88, -279.875);
|
||||||
|
/* 8:40 */waypoints[7].type = "stand";
|
||||||
|
/* 8:40 */waypoints[7].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[7].children[0] = 6;
|
||||||
|
/* 8:40 */waypoints[7].children[1] = 9;
|
||||||
|
/* 8:40 */waypoints[8] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[8].origin =(-336.931, 1544.3, -279.875);
|
||||||
|
/* 8:40 */waypoints[8].type = "stand";
|
||||||
|
/* 8:40 */waypoints[8].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[8].children[0] = 5;
|
||||||
|
/* 8:40 */waypoints[9] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[9].origin =(193.373, 1490.52, -279.875);
|
||||||
|
/* 8:40 */waypoints[9].type = "stand";
|
||||||
|
/* 8:40 */waypoints[9].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[9].children[0] = 7;
|
||||||
|
/* 8:40 */waypoints[9].children[1] = 10;
|
||||||
|
/* 8:40 */waypoints[9].children[2] = 13;
|
||||||
|
/* 8:40 */waypoints[10] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[10].origin =(317.11, 1528.68, -279.875);
|
||||||
|
/* 8:40 */waypoints[10].type = "stand";
|
||||||
|
/* 8:40 */waypoints[10].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[10].children[0] = 9;
|
||||||
|
/* 8:40 */waypoints[10].children[1] = 11;
|
||||||
|
/* 8:40 */waypoints[11] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[11].origin =(514.47, 1434.1, -274.875);
|
||||||
|
/* 8:40 */waypoints[11].type = "stand";
|
||||||
|
/* 8:40 */waypoints[11].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[11].children[0] = 10;
|
||||||
|
/* 8:40 */waypoints[11].children[1] = 12;
|
||||||
|
/* 8:40 */waypoints[12] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[12].origin =(544.192, 1170.3, -279.875);
|
||||||
|
/* 8:40 */waypoints[12].type = "stand";
|
||||||
|
/* 8:40 */waypoints[12].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[12].children[0] = 11;
|
||||||
|
/* 8:40 */waypoints[12].children[1] = 13;
|
||||||
|
/* 8:40 */waypoints[12].children[2] = 78;
|
||||||
|
/* 8:40 */waypoints[13] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[13].origin =(218.613, 1165.59, -279.875);
|
||||||
|
/* 8:40 */waypoints[13].type = "stand";
|
||||||
|
/* 8:40 */waypoints[13].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[13].children[0] = 12;
|
||||||
|
/* 8:40 */waypoints[13].children[1] = 9;
|
||||||
|
/* 8:40 */waypoints[13].children[2] = 14;
|
||||||
|
/* 8:40 */waypoints[14] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[14].origin =(206.395, 922.298, -287.875);
|
||||||
|
/* 8:40 */waypoints[14].type = "stand";
|
||||||
|
/* 8:40 */waypoints[14].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[14].children[0] = 13;
|
||||||
|
/* 8:40 */waypoints[14].children[1] = 15;
|
||||||
|
/* 8:40 */waypoints[14].children[2] = 77;
|
||||||
|
/* 8:40 */waypoints[15] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[15].origin =(-42.9216, 887.362, -286.875);
|
||||||
|
/* 8:40 */waypoints[15].type = "stand";
|
||||||
|
/* 8:40 */waypoints[15].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[15].children[0] = 14;
|
||||||
|
/* 8:40 */waypoints[15].children[1] = 16;
|
||||||
|
/* 8:40 */waypoints[15].children[2] = 75;
|
||||||
|
/* 8:40 */waypoints[16] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[16].origin =(-121.647, 1092.64, -287.875);
|
||||||
|
/* 8:40 */waypoints[16].type = "stand";
|
||||||
|
/* 8:40 */waypoints[16].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[16].children[0] = 15;
|
||||||
|
/* 8:40 */waypoints[16].children[1] = 4;
|
||||||
|
/* 8:40 */waypoints[17] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[17].origin =(-396.971, 699.427, -287.875);
|
||||||
|
/* 8:40 */waypoints[17].type = "stand";
|
||||||
|
/* 8:40 */waypoints[17].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[17].children[0] = 4;
|
||||||
|
/* 8:40 */waypoints[17].children[1] = 18;
|
||||||
|
/* 8:40 */waypoints[17].children[2] = 27;
|
||||||
|
/* 8:40 */waypoints[18] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[18].origin =(-765.391, 681.307, -287.875);
|
||||||
|
/* 8:40 */waypoints[18].type = "stand";
|
||||||
|
/* 8:40 */waypoints[18].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[18].children[0] = 17;
|
||||||
|
/* 8:40 */waypoints[18].children[1] = 19;
|
||||||
|
/* 8:40 */waypoints[18].children[2] = 21;
|
||||||
|
/* 8:40 */waypoints[19] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[19].origin =(-706.78, 959.375, -287.875);
|
||||||
|
/* 8:40 */waypoints[19].type = "stand";
|
||||||
|
/* 8:40 */waypoints[19].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[19].children[0] = 18;
|
||||||
|
/* 8:40 */waypoints[19].children[1] = 20;
|
||||||
|
/* 8:40 */waypoints[19].children[2] = 2;
|
||||||
|
/* 8:40 */waypoints[20] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[20].origin =(-870.255, 976.447, -287.875);
|
||||||
|
/* 8:40 */waypoints[20].type = "stand";
|
||||||
|
/* 8:40 */waypoints[20].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[20].children[0] = 19;
|
||||||
|
/* 8:40 */waypoints[21] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[21].origin =(-762.346, 386.723, -287.875);
|
||||||
|
/* 8:40 */waypoints[21].type = "stand";
|
||||||
|
/* 8:40 */waypoints[21].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[21].children[0] = 18;
|
||||||
|
/* 8:40 */waypoints[21].children[1] = 22;
|
||||||
|
/* 8:40 */waypoints[21].children[2] = 24;
|
||||||
|
/* 8:40 */waypoints[22] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[22].origin =(-666.46, 388.308, -287.875);
|
||||||
|
/* 8:40 */waypoints[22].type = "stand";
|
||||||
|
/* 8:40 */waypoints[22].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[22].children[0] = 21;
|
||||||
|
/* 8:40 */waypoints[22].children[1] = 23;
|
||||||
|
/* 8:40 */waypoints[23] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[23].origin =(-662.546, 79.4598, -287.875);
|
||||||
|
/* 8:40 */waypoints[23].type = "stand";
|
||||||
|
/* 8:40 */waypoints[23].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[23].children[0] = 22;
|
||||||
|
/* 8:40 */waypoints[23].children[1] = 24;
|
||||||
|
/* 8:40 */waypoints[23].children[2] = 25;
|
||||||
|
/* 8:40 */waypoints[24] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[24].origin =(-789.253, 82.9664, -287.875);
|
||||||
|
/* 8:40 */waypoints[24].type = "stand";
|
||||||
|
/* 8:40 */waypoints[24].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[24].children[0] = 23;
|
||||||
|
/* 8:40 */waypoints[24].children[1] = 21;
|
||||||
|
/* 8:40 */waypoints[25] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[25].origin =(-429.809, 40.5011, -287.875);
|
||||||
|
/* 8:40 */waypoints[25].type = "stand";
|
||||||
|
/* 8:40 */waypoints[25].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[25].children[0] = 23;
|
||||||
|
/* 8:40 */waypoints[25].children[1] = 26;
|
||||||
|
/* 8:40 */waypoints[25].children[2] = 27;
|
||||||
|
/* 8:40 */waypoints[25].children[3] = 28;
|
||||||
|
/* 8:40 */waypoints[26] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[26].origin =(-490.843, -183.312, -287.875);
|
||||||
|
/* 8:40 */waypoints[26].type = "stand";
|
||||||
|
/* 8:40 */waypoints[26].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[26].children[0] = 25;
|
||||||
|
/* 8:40 */waypoints[26].children[1] = 28;
|
||||||
|
/* 8:40 */waypoints[27] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[27].origin =(-370.469, 339.632, -287.875);
|
||||||
|
/* 8:40 */waypoints[27].type = "stand";
|
||||||
|
/* 8:40 */waypoints[27].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[27].children[0] = 25;
|
||||||
|
/* 8:40 */waypoints[27].children[1] = 17;
|
||||||
|
/* 8:40 */waypoints[27].children[2] = 30;
|
||||||
|
/* 8:40 */waypoints[28] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[28].origin =(-365.774, -61.9152, -286.875);
|
||||||
|
/* 8:40 */waypoints[28].type = "stand";
|
||||||
|
/* 8:40 */waypoints[28].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[28].children[0] = 25;
|
||||||
|
/* 8:40 */waypoints[28].children[1] = 29;
|
||||||
|
/* 8:40 */waypoints[28].children[2] = 26;
|
||||||
|
/* 8:40 */waypoints[29] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[29].origin =(-84.0733, -50.8349, -287.875);
|
||||||
|
/* 8:40 */waypoints[29].type = "stand";
|
||||||
|
/* 8:40 */waypoints[29].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[29].children[0] = 28;
|
||||||
|
/* 8:40 */waypoints[29].children[1] = 39;
|
||||||
|
/* 8:40 */waypoints[29].children[2] = 42;
|
||||||
|
/* 8:40 */waypoints[30] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[30].origin =(-86.1229, 341.97, -286.875);
|
||||||
|
/* 8:40 */waypoints[30].type = "stand";
|
||||||
|
/* 8:40 */waypoints[30].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[30].children[0] = 27;
|
||||||
|
/* 8:40 */waypoints[30].children[1] = 31;
|
||||||
|
/* 8:40 */waypoints[30].children[2] = 33;
|
||||||
|
/* 8:40 */waypoints[30].children[3] = 42;
|
||||||
|
/* 8:40 */waypoints[31] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[31].origin =(-77.7785, 505.018, -281.875);
|
||||||
|
/* 8:40 */waypoints[31].type = "stand";
|
||||||
|
/* 8:40 */waypoints[31].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[31].children[0] = 30;
|
||||||
|
/* 8:40 */waypoints[31].children[1] = 32;
|
||||||
|
/* 8:40 */waypoints[31].children[2] = 74;
|
||||||
|
/* 8:40 */waypoints[32] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[32].origin =(128.436, 515.361, -281.875);
|
||||||
|
/* 8:40 */waypoints[32].type = "stand";
|
||||||
|
/* 8:40 */waypoints[32].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[32].children[0] = 31;
|
||||||
|
/* 8:40 */waypoints[32].children[1] = 33;
|
||||||
|
/* 8:40 */waypoints[32].children[2] = 73;
|
||||||
|
/* 8:40 */waypoints[33] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[33].origin =(131.953, 343.54, -286.875);
|
||||||
|
/* 8:40 */waypoints[33].type = "stand";
|
||||||
|
/* 8:40 */waypoints[33].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[33].children[0] = 32;
|
||||||
|
/* 8:40 */waypoints[33].children[1] = 30;
|
||||||
|
/* 8:40 */waypoints[33].children[2] = 34;
|
||||||
|
/* 8:40 */waypoints[33].children[3] = 73;
|
||||||
|
/* 8:40 */waypoints[34] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[34].origin =(335.707, 348.869, -286.875);
|
||||||
|
/* 8:40 */waypoints[34].type = "stand";
|
||||||
|
/* 8:40 */waypoints[34].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[34].children[0] = 33;
|
||||||
|
/* 8:40 */waypoints[34].children[1] = 35;
|
||||||
|
/* 8:40 */waypoints[34].children[2] = 41;
|
||||||
|
/* 8:40 */waypoints[35] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[35].origin =(533.465, 367.281, -287.875);
|
||||||
|
/* 8:40 */waypoints[35].type = "stand";
|
||||||
|
/* 8:40 */waypoints[35].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[35].children[0] = 34;
|
||||||
|
/* 8:40 */waypoints[35].children[1] = 36;
|
||||||
|
/* 8:40 */waypoints[35].children[2] = 38;
|
||||||
|
/* 8:40 */waypoints[35].children[3] = 71;
|
||||||
|
/* 8:40 */waypoints[36] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[36].origin =(794.653, 430.852, -287.875);
|
||||||
|
/* 8:40 */waypoints[36].type = "stand";
|
||||||
|
/* 8:40 */waypoints[36].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[36].children[0] = 35;
|
||||||
|
/* 8:40 */waypoints[36].children[1] = 37;
|
||||||
|
/* 8:40 */waypoints[37] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[37].origin =(798.088, -3.39992, -287.875);
|
||||||
|
/* 8:40 */waypoints[37].type = "stand";
|
||||||
|
/* 8:40 */waypoints[37].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[37].children[0] = 36;
|
||||||
|
/* 8:40 */waypoints[37].children[1] = 38;
|
||||||
|
/* 8:40 */waypoints[37].children[2] = 43;
|
||||||
|
/* 8:40 */waypoints[37].children[3] = 61;
|
||||||
|
/* 8:40 */waypoints[38] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[38].origin =(558.847, 20.4708, -287.875);
|
||||||
|
/* 8:40 */waypoints[38].type = "stand";
|
||||||
|
/* 8:40 */waypoints[38].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[38].children[0] = 37;
|
||||||
|
/* 8:40 */waypoints[38].children[1] = 35;
|
||||||
|
/* 8:40 */waypoints[38].children[2] = 39;
|
||||||
|
/* 8:40 */waypoints[38].children[3] = 41;
|
||||||
|
/* 8:40 */waypoints[39] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[39].origin =(190.889, -73.634, -287.875);
|
||||||
|
/* 8:40 */waypoints[39].type = "stand";
|
||||||
|
/* 8:40 */waypoints[39].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[39].children[0] = 38;
|
||||||
|
/* 8:40 */waypoints[39].children[1] = 40;
|
||||||
|
/* 8:40 */waypoints[39].children[2] = 29;
|
||||||
|
/* 8:40 */waypoints[40] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[40].origin =(168.666, -173.142, -287.875);
|
||||||
|
/* 8:40 */waypoints[40].type = "stand";
|
||||||
|
/* 8:40 */waypoints[40].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[40].children[0] = 39;
|
||||||
|
/* 8:40 */waypoints[41] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[41].origin =(313.625, 181.391, -287.875);
|
||||||
|
/* 8:40 */waypoints[41].type = "stand";
|
||||||
|
/* 8:40 */waypoints[41].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[41].children[0] = 38;
|
||||||
|
/* 8:40 */waypoints[41].children[1] = 34;
|
||||||
|
/* 8:40 */waypoints[41].children[2] = 42;
|
||||||
|
/* 8:40 */waypoints[42] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[42].origin =(-56.1528, 118.003, -287.875);
|
||||||
|
/* 8:40 */waypoints[42].type = "stand";
|
||||||
|
/* 8:40 */waypoints[42].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[42].children[0] = 41;
|
||||||
|
/* 8:40 */waypoints[42].children[1] = 29;
|
||||||
|
/* 8:40 */waypoints[42].children[2] = 30;
|
||||||
|
/* 8:40 */waypoints[43] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[43].origin =(912.637, 32.2351, -287.875);
|
||||||
|
/* 8:40 */waypoints[43].type = "stand";
|
||||||
|
/* 8:40 */waypoints[43].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[43].children[0] = 37;
|
||||||
|
/* 8:40 */waypoints[43].children[1] = 44;
|
||||||
|
/* 8:40 */waypoints[43].children[2] = 61;
|
||||||
|
/* 8:40 */waypoints[43].children[3] = 62;
|
||||||
|
/* 8:40 */waypoints[44] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[44].origin =(1104.28, 7.5762, -287.875);
|
||||||
|
/* 8:40 */waypoints[44].type = "stand";
|
||||||
|
/* 8:40 */waypoints[44].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[44].children[0] = 43;
|
||||||
|
/* 8:40 */waypoints[44].children[1] = 45;
|
||||||
|
/* 8:40 */waypoints[44].children[2] = 51;
|
||||||
|
/* 8:40 */waypoints[45] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[45].origin =(1106.99, -61.6543, -287.875);
|
||||||
|
/* 8:40 */waypoints[45].type = "stand";
|
||||||
|
/* 8:40 */waypoints[45].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[45].children[0] = 44;
|
||||||
|
/* 8:40 */waypoints[45].children[1] = 46;
|
||||||
|
/* 8:40 */waypoints[45].children[2] = 61;
|
||||||
|
/* 8:40 */waypoints[46] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[46].origin =(1375.07, -62.9017, -287.875);
|
||||||
|
/* 8:40 */waypoints[46].type = "stand";
|
||||||
|
/* 8:40 */waypoints[46].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[46].children[0] = 45;
|
||||||
|
/* 8:40 */waypoints[46].children[1] = 47;
|
||||||
|
/* 8:40 */waypoints[46].children[2] = 49;
|
||||||
|
/* 8:40 */waypoints[46].children[3] = 50;
|
||||||
|
/* 8:40 */waypoints[47] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[47].origin =(1761.68, -76.9641, -287.875);
|
||||||
|
/* 8:40 */waypoints[47].type = "stand";
|
||||||
|
/* 8:40 */waypoints[47].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[47].children[0] = 46;
|
||||||
|
/* 8:40 */waypoints[47].children[1] = 48;
|
||||||
|
/* 8:40 */waypoints[48] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[48].origin =(1770.3, 236.221, -287.875);
|
||||||
|
/* 8:40 */waypoints[48].type = "stand";
|
||||||
|
/* 8:40 */waypoints[48].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[48].children[0] = 47;
|
||||||
|
/* 8:40 */waypoints[49] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[49].origin =(1389.55, 11.1926, -287.875);
|
||||||
|
/* 8:40 */waypoints[49].type = "stand";
|
||||||
|
/* 8:40 */waypoints[49].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[49].children[0] = 46;
|
||||||
|
/* 8:40 */waypoints[50] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[50].origin =(1352.95, -170.147, -287.875);
|
||||||
|
/* 8:40 */waypoints[50].type = "stand";
|
||||||
|
/* 8:40 */waypoints[50].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[50].children[0] = 46;
|
||||||
|
/* 8:40 */waypoints[51] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[51].origin =(1398.28, 19.3083, -119.875);
|
||||||
|
/* 8:40 */waypoints[51].type = "stand";
|
||||||
|
/* 8:40 */waypoints[51].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[51].children[0] = 44;
|
||||||
|
/* 8:40 */waypoints[51].children[1] = 52;
|
||||||
|
/* 8:40 */waypoints[52] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[52].origin =(1402.31, 186.216, -87.875);
|
||||||
|
/* 8:40 */waypoints[52].type = "stand";
|
||||||
|
/* 8:40 */waypoints[52].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[52].children[0] = 51;
|
||||||
|
/* 8:40 */waypoints[52].children[1] = 53;
|
||||||
|
/* 8:40 */waypoints[52].children[2] = 60;
|
||||||
|
/* 8:40 */waypoints[53] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[53].origin =(1406.26, 556.278, -87.875);
|
||||||
|
/* 8:40 */waypoints[53].type = "stand";
|
||||||
|
/* 8:40 */waypoints[53].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[53].children[0] = 52;
|
||||||
|
/* 8:40 */waypoints[53].children[1] = 54;
|
||||||
|
/* 8:40 */waypoints[53].children[2] = 57;
|
||||||
|
/* 8:40 */waypoints[53].children[3] = 58;
|
||||||
|
/* 8:40 */waypoints[54] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[54].origin =(1407.12, 786.845, -87.875);
|
||||||
|
/* 8:40 */waypoints[54].type = "stand";
|
||||||
|
/* 8:40 */waypoints[54].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[54].children[0] = 53;
|
||||||
|
/* 8:40 */waypoints[54].children[1] = 55;
|
||||||
|
/* 8:40 */waypoints[54].children[2] = 56;
|
||||||
|
/* 8:40 */waypoints[54].children[3] = 59;
|
||||||
|
/* 8:40 */waypoints[55] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[55].origin =(1404.89, 927.201, -87.875);
|
||||||
|
/* 8:40 */waypoints[55].type = "stand";
|
||||||
|
/* 8:40 */waypoints[55].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[55].children[0] = 54;
|
||||||
|
/* 8:40 */waypoints[56] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[56].origin =(1263.7, 777.867, -87.875);
|
||||||
|
/* 8:40 */waypoints[56].type = "stand";
|
||||||
|
/* 8:40 */waypoints[56].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[56].children[0] = 54;
|
||||||
|
/* 8:40 */waypoints[56].children[1] = 57;
|
||||||
|
/* 8:40 */waypoints[57] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[57].origin =(1262.11, 524.681, -87.875);
|
||||||
|
/* 8:40 */waypoints[57].type = "stand";
|
||||||
|
/* 8:40 */waypoints[57].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[57].children[0] = 56;
|
||||||
|
/* 8:40 */waypoints[57].children[1] = 53;
|
||||||
|
/* 8:40 */waypoints[58] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[58].origin =(1584.45, 563.578, -87.875);
|
||||||
|
/* 8:40 */waypoints[58].type = "stand";
|
||||||
|
/* 8:40 */waypoints[58].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[58].children[0] = 53;
|
||||||
|
/* 8:40 */waypoints[58].children[1] = 59;
|
||||||
|
/* 8:40 */waypoints[58].children[2] = 60;
|
||||||
|
/* 8:40 */waypoints[59] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[59].origin =(1602.14, 803.507, -87.875);
|
||||||
|
/* 8:40 */waypoints[59].type = "stand";
|
||||||
|
/* 8:40 */waypoints[59].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[59].children[0] = 58;
|
||||||
|
/* 8:40 */waypoints[59].children[1] = 54;
|
||||||
|
/* 8:40 */waypoints[60] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[60].origin =(1594.99, 244.26, -87.875);
|
||||||
|
/* 8:40 */waypoints[60].type = "stand";
|
||||||
|
/* 8:40 */waypoints[60].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[60].children[0] = 58;
|
||||||
|
/* 8:40 */waypoints[60].children[1] = 52;
|
||||||
|
/* 8:40 */waypoints[61] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[61].origin =(922.266, -68.2416, -287.875);
|
||||||
|
/* 8:40 */waypoints[61].type = "stand";
|
||||||
|
/* 8:40 */waypoints[61].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[61].children[0] = 43;
|
||||||
|
/* 8:40 */waypoints[61].children[1] = 45;
|
||||||
|
/* 8:40 */waypoints[61].children[2] = 37;
|
||||||
|
/* 8:40 */waypoints[62] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[62].origin =(921.03, 394.481, -287.875);
|
||||||
|
/* 8:40 */waypoints[62].type = "stand";
|
||||||
|
/* 8:40 */waypoints[62].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[62].children[0] = 43;
|
||||||
|
/* 8:40 */waypoints[62].children[1] = 63;
|
||||||
|
/* 8:40 */waypoints[62].children[2] = 64;
|
||||||
|
/* 8:40 */waypoints[63] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[63].origin =(1091.15, 380.363, -287.875);
|
||||||
|
/* 8:40 */waypoints[63].type = "stand";
|
||||||
|
/* 8:40 */waypoints[63].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[63].children[0] = 62;
|
||||||
|
/* 8:40 */waypoints[64] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[64].origin =(918.837, 781.016, -287.875);
|
||||||
|
/* 8:40 */waypoints[64].type = "stand";
|
||||||
|
/* 8:40 */waypoints[64].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[64].children[0] = 62;
|
||||||
|
/* 8:40 */waypoints[64].children[1] = 65;
|
||||||
|
/* 8:40 */waypoints[64].children[2] = 67;
|
||||||
|
/* 8:40 */waypoints[65] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[65].origin =(930.8, 958.611, -287.875);
|
||||||
|
/* 8:40 */waypoints[65].type = "stand";
|
||||||
|
/* 8:40 */waypoints[65].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[65].children[0] = 64;
|
||||||
|
/* 8:40 */waypoints[65].children[1] = 66;
|
||||||
|
/* 8:40 */waypoints[66] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[66].origin =(1108.1, 958.624, -287.875);
|
||||||
|
/* 8:40 */waypoints[66].type = "stand";
|
||||||
|
/* 8:40 */waypoints[66].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[66].children[0] = 65;
|
||||||
|
/* 8:40 */waypoints[67] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[67].origin =(754.225, 780.571, -287.875);
|
||||||
|
/* 8:40 */waypoints[67].type = "stand";
|
||||||
|
/* 8:40 */waypoints[67].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[67].children[0] = 64;
|
||||||
|
/* 8:40 */waypoints[67].children[1] = 68;
|
||||||
|
/* 8:40 */waypoints[67].children[2] = 69;
|
||||||
|
/* 8:40 */waypoints[68] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[68].origin =(727.501, 930.129, -287.875);
|
||||||
|
/* 8:40 */waypoints[68].type = "stand";
|
||||||
|
/* 8:40 */waypoints[68].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[68].children[0] = 67;
|
||||||
|
/* 8:40 */waypoints[68].children[1] = 77;
|
||||||
|
/* 8:40 */waypoints[69] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[69].origin =(754.518, 686.766, -287.875);
|
||||||
|
/* 8:40 */waypoints[69].type = "stand";
|
||||||
|
/* 8:40 */waypoints[69].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[69].children[0] = 67;
|
||||||
|
/* 8:40 */waypoints[69].children[1] = 70;
|
||||||
|
/* 8:40 */waypoints[70] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[70].origin =(520.347, 702.355, -286.875);
|
||||||
|
/* 8:40 */waypoints[70].type = "stand";
|
||||||
|
/* 8:40 */waypoints[70].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[70].children[0] = 69;
|
||||||
|
/* 8:40 */waypoints[70].children[1] = 71;
|
||||||
|
/* 8:40 */waypoints[70].children[2] = 76;
|
||||||
|
/* 8:40 */waypoints[70].children[3] = 77;
|
||||||
|
/* 8:40 */waypoints[71] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[71].origin =(537.371, 584.193, -287.875);
|
||||||
|
/* 8:40 */waypoints[71].type = "stand";
|
||||||
|
/* 8:40 */waypoints[71].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[71].children[0] = 70;
|
||||||
|
/* 8:40 */waypoints[71].children[1] = 35;
|
||||||
|
/* 8:40 */waypoints[71].children[2] = 72;
|
||||||
|
/* 8:40 */waypoints[72] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[72].origin =(222.777, 594.506, -286.875);
|
||||||
|
/* 8:40 */waypoints[72].type = "stand";
|
||||||
|
/* 8:40 */waypoints[72].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[72].children[0] = 71;
|
||||||
|
/* 8:40 */waypoints[72].children[1] = 73;
|
||||||
|
/* 8:40 */waypoints[72].children[2] = 74;
|
||||||
|
/* 8:40 */waypoints[72].children[3] = 76;
|
||||||
|
/* 8:40 */waypoints[73] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[73].origin =(222.779, 466.427, -281.875);
|
||||||
|
/* 8:40 */waypoints[73].type = "stand";
|
||||||
|
/* 8:40 */waypoints[73].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[73].children[0] = 72;
|
||||||
|
/* 8:40 */waypoints[73].children[1] = 32;
|
||||||
|
/* 8:40 */waypoints[73].children[2] = 33;
|
||||||
|
/* 8:40 */waypoints[74] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[74].origin =(-80.4735, 590.314, -286.875);
|
||||||
|
/* 8:40 */waypoints[74].type = "stand";
|
||||||
|
/* 8:40 */waypoints[74].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[74].children[0] = 72;
|
||||||
|
/* 8:40 */waypoints[74].children[1] = 31;
|
||||||
|
/* 8:40 */waypoints[74].children[2] = 75;
|
||||||
|
/* 8:40 */waypoints[75] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[75].origin =(-34.9286, 724.084, -286.875);
|
||||||
|
/* 8:40 */waypoints[75].type = "stand";
|
||||||
|
/* 8:40 */waypoints[75].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[75].children[0] = 74;
|
||||||
|
/* 8:40 */waypoints[75].children[1] = 15;
|
||||||
|
/* 8:40 */waypoints[75].children[2] = 76;
|
||||||
|
/* 8:40 */waypoints[76] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[76].origin =(220.997, 700.756, -286.875);
|
||||||
|
/* 8:40 */waypoints[76].type = "stand";
|
||||||
|
/* 8:40 */waypoints[76].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[76].children[0] = 75;
|
||||||
|
/* 8:40 */waypoints[76].children[1] = 72;
|
||||||
|
/* 8:40 */waypoints[76].children[2] = 70;
|
||||||
|
/* 8:40 */waypoints[77] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[77].origin =(464.972, 921.021, -287.875);
|
||||||
|
/* 8:40 */waypoints[77].type = "stand";
|
||||||
|
/* 8:40 */waypoints[77].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[77].children[0] = 70;
|
||||||
|
/* 8:40 */waypoints[77].children[1] = 68;
|
||||||
|
/* 8:40 */waypoints[77].children[2] = 14;
|
||||||
|
/* 8:40 */waypoints[78] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[78].origin =(715.288, 1177.52, -278.875);
|
||||||
|
/* 8:40 */waypoints[78].type = "stand";
|
||||||
|
/* 8:40 */waypoints[78].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[78].children[0] = 12;
|
||||||
|
/* 8:40 */waypoints[78].children[1] = 79;
|
||||||
|
/* 8:40 */waypoints[78].children[2] = 80;
|
||||||
|
/* 8:40 */waypoints[78].children[3] = 81;
|
||||||
|
/* 8:40 */waypoints[79] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[79].origin =(730.513, 1058.71, -279.875);
|
||||||
|
/* 8:40 */waypoints[79].type = "stand";
|
||||||
|
/* 8:40 */waypoints[79].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[79].children[0] = 78;
|
||||||
|
/* 8:40 */waypoints[80] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[80].origin =(690.868, 1568.34, -279.375);
|
||||||
|
/* 8:40 */waypoints[80].type = "stand";
|
||||||
|
/* 8:40 */waypoints[80].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[80].children[0] = 78;
|
||||||
|
/* 8:40 */waypoints[81] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[81].origin =(813.084, 1490.26, -279.875);
|
||||||
|
/* 8:40 */waypoints[81].type = "stand";
|
||||||
|
/* 8:40 */waypoints[81].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[81].children[0] = 78;
|
||||||
|
/* 8:40 */waypoints[81].children[1] = 82;
|
||||||
|
/* 8:40 */waypoints[81].children[2] = 83;
|
||||||
|
/* 8:40 */waypoints[82] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[82].origin =(795.841, 1586.08, -279.875);
|
||||||
|
/* 8:40 */waypoints[82].type = "stand";
|
||||||
|
/* 8:40 */waypoints[82].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[82].children[0] = 81;
|
||||||
|
/* 8:40 */waypoints[83] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[83].origin =(944.774, 1486.77, -287.875);
|
||||||
|
/* 8:40 */waypoints[83].type = "stand";
|
||||||
|
/* 8:40 */waypoints[83].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[83].children[0] = 81;
|
||||||
|
/* 8:40 */waypoints[83].children[1] = 84;
|
||||||
|
/* 8:40 */waypoints[83].children[2] = 85;
|
||||||
|
/* 8:40 */waypoints[84] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[84].origin =(979.596, 1235.68, -287.875);
|
||||||
|
/* 8:40 */waypoints[84].type = "stand";
|
||||||
|
/* 8:40 */waypoints[84].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[84].children[0] = 83;
|
||||||
|
/* 8:40 */waypoints[84].children[1] = 94;
|
||||||
|
/* 8:40 */waypoints[84].children[2] = 95;
|
||||||
|
/* 8:40 */waypoints[84].children[3] = 96;
|
||||||
|
/* 8:40 */waypoints[85] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[85].origin =(958.313, 1594.94, -287.875);
|
||||||
|
/* 8:40 */waypoints[85].type = "stand";
|
||||||
|
/* 8:40 */waypoints[85].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[85].children[0] = 83;
|
||||||
|
/* 8:40 */waypoints[85].children[1] = 86;
|
||||||
|
/* 8:40 */waypoints[86] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[86].origin =(1181.45, 1613.36, -287.875);
|
||||||
|
/* 8:40 */waypoints[86].type = "stand";
|
||||||
|
/* 8:40 */waypoints[86].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[86].children[0] = 85;
|
||||||
|
/* 8:40 */waypoints[86].children[1] = 87;
|
||||||
|
/* 8:40 */waypoints[86].children[2] = 88;
|
||||||
|
/* 8:40 */waypoints[87] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[87].origin =(1186.98, 1731.85, -287.875);
|
||||||
|
/* 8:40 */waypoints[87].type = "stand";
|
||||||
|
/* 8:40 */waypoints[87].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[87].children[0] = 86;
|
||||||
|
/* 8:40 */waypoints[88] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[88].origin =(1515.39, 1601.26, -287.875);
|
||||||
|
/* 8:40 */waypoints[88].type = "stand";
|
||||||
|
/* 8:40 */waypoints[88].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[88].children[0] = 86;
|
||||||
|
/* 8:40 */waypoints[88].children[1] = 89;
|
||||||
|
/* 8:40 */waypoints[88].children[2] = 90;
|
||||||
|
/* 8:40 */waypoints[88].children[3] = 94;
|
||||||
|
/* 8:40 */waypoints[89] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[89].origin =(1722.41, 1589.57, -287.875);
|
||||||
|
/* 8:40 */waypoints[89].type = "stand";
|
||||||
|
/* 8:40 */waypoints[89].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[89].children[0] = 88;
|
||||||
|
/* 8:40 */waypoints[89].children[1] = 91;
|
||||||
|
/* 8:40 */waypoints[89].children[2] = 92;
|
||||||
|
/* 8:40 */waypoints[89].children[3] = 98;
|
||||||
|
/* 8:40 */waypoints[90] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[90].origin =(1492.46, 1752.42, -287.875);
|
||||||
|
/* 8:40 */waypoints[90].type = "stand";
|
||||||
|
/* 8:40 */waypoints[90].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[90].children[0] = 88;
|
||||||
|
/* 8:40 */waypoints[90].children[1] = 91;
|
||||||
|
/* 8:40 */waypoints[91] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[91].origin =(1713.05, 1755.92, -287.875);
|
||||||
|
/* 8:40 */waypoints[91].type = "stand";
|
||||||
|
/* 8:40 */waypoints[91].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[91].children[0] = 90;
|
||||||
|
/* 8:40 */waypoints[91].children[1] = 89;
|
||||||
|
/* 8:40 */waypoints[92] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[92].origin =(1811.79, 1464.34, -287.875);
|
||||||
|
/* 8:40 */waypoints[92].type = "stand";
|
||||||
|
/* 8:40 */waypoints[92].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[92].children[0] = 89;
|
||||||
|
/* 8:40 */waypoints[92].children[1] = 93;
|
||||||
|
/* 8:40 */waypoints[93] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[93].origin =(1805.57, 1117.71, -287.875);
|
||||||
|
/* 8:40 */waypoints[93].type = "stand";
|
||||||
|
/* 8:40 */waypoints[93].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[93].children[0] = 92;
|
||||||
|
/* 8:40 */waypoints[93].children[1] = 94;
|
||||||
|
/* 8:40 */waypoints[94] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[94].origin =(1454.08, 1148.82, -287.875);
|
||||||
|
/* 8:40 */waypoints[94].type = "stand";
|
||||||
|
/* 8:40 */waypoints[94].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[94].children[0] = 93;
|
||||||
|
/* 8:40 */waypoints[94].children[1] = 84;
|
||||||
|
/* 8:40 */waypoints[94].children[2] = 96;
|
||||||
|
/* 8:40 */waypoints[94].children[3] = 88;
|
||||||
|
/* 8:40 */waypoints[95] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[95].origin =(932.512, 1005.33, -153.466);
|
||||||
|
/* 8:40 */waypoints[95].type = "stand";
|
||||||
|
/* 8:40 */waypoints[95].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[95].children[0] = 84;
|
||||||
|
/* 8:40 */waypoints[96] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[96].origin =(1040.99, 1051.08, -287.875);
|
||||||
|
/* 8:40 */waypoints[96].type = "stand";
|
||||||
|
/* 8:40 */waypoints[96].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[96].children[0] = 84;
|
||||||
|
/* 8:40 */waypoints[96].children[1] = 97;
|
||||||
|
/* 8:40 */waypoints[96].children[2] = 94;
|
||||||
|
/* 8:40 */waypoints[97] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[97].origin =(914.59, 1038.29, -287.875);
|
||||||
|
/* 8:40 */waypoints[97].type = "stand";
|
||||||
|
/* 8:40 */waypoints[97].childCount = 1;
|
||||||
|
/* 8:40 */waypoints[97].children[0] = 96;
|
||||||
|
/* 8:40 */waypoints[98] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[98].origin =(1891.35, 1591.54, -238.875);
|
||||||
|
/* 8:40 */waypoints[98].type = "stand";
|
||||||
|
/* 8:40 */waypoints[98].childCount = 2;
|
||||||
|
/* 8:40 */waypoints[98].children[0] = 89;
|
||||||
|
/* 8:40 */waypoints[98].children[1] = 99;
|
||||||
|
/* 8:40 */waypoints[99] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[99].origin =(1894.12, 1801.08, -203.875);
|
||||||
|
/* 8:40 */waypoints[99].type = "stand";
|
||||||
|
/* 8:40 */waypoints[99].childCount = 4;
|
||||||
|
/* 8:40 */waypoints[99].children[0] = 98;
|
||||||
|
/* 8:40 */waypoints[99].children[1] = 100;
|
||||||
|
/* 8:40 */waypoints[99].children[2] = 102;
|
||||||
|
/* 8:40 */waypoints[99].children[3] = 101;
|
||||||
|
/* 8:40 */waypoints[100] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[100].origin =(1611.59, 2160.18, -203.875);
|
||||||
|
/* 8:40 */waypoints[100].type = "stand";
|
||||||
|
/* 8:40 */waypoints[100].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[100].children[0] = 99;
|
||||||
|
/* 8:40 */waypoints[100].children[1] = 101;
|
||||||
|
/* 8:40 */waypoints[100].children[2] = 102;
|
||||||
|
/* 8:40 */waypoints[101] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[101].origin =(1892.79, 2481.04, -203.875);
|
||||||
|
/* 8:40 */waypoints[101].type = "stand";
|
||||||
|
/* 8:40 */waypoints[101].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[101].children[0] = 100;
|
||||||
|
/* 8:40 */waypoints[101].children[1] = 102;
|
||||||
|
/* 8:40 */waypoints[101].children[2] = 99;
|
||||||
|
/* 8:40 */waypoints[102] = spawnstruct();
|
||||||
|
/* 8:40 */waypoints[102].origin =(2229.65, 2209.06, -203.875);
|
||||||
|
/* 8:40 */waypoints[102].type = "stand";
|
||||||
|
/* 8:40 */waypoints[102].childCount = 3;
|
||||||
|
/* 8:40 */waypoints[102].children[0] = 101;
|
||||||
|
/* 8:40 */waypoints[102].children[1] = 99;
|
||||||
|
/* 8:40 */waypoints[102].children[2] = 100;
|
||||||
|
return waypoints;
|
||||||
|
}
|
2075
mods/bots/maps/mp/bots/waypoints/overgrown.gsc
Normal file
2075
mods/bots/maps/mp/bots/waypoints/overgrown.gsc
Normal file
File diff suppressed because it is too large
Load Diff
711
mods/bots/maps/mp/bots/waypoints/pripyat.gsc
Normal file
711
mods/bots/maps/mp/bots/waypoints/pripyat.gsc
Normal file
@ -0,0 +1,711 @@
|
|||||||
|
Pripyat()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
/* 6:48 */waypoints[0] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[0].origin =(-18185.1, 3758.34, 248.436);
|
||||||
|
/* 6:48 */waypoints[0].type = "stand";
|
||||||
|
/* 6:48 */waypoints[0].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[0].children[0] = 1;
|
||||||
|
/* 6:48 */waypoints[0].children[1] = 7;
|
||||||
|
/* 6:48 */waypoints[1] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[1].origin =(-18387, 4175.4, 233.252);
|
||||||
|
/* 6:48 */waypoints[1].type = "stand";
|
||||||
|
/* 6:48 */waypoints[1].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[1].children[0] = 0;
|
||||||
|
/* 6:48 */waypoints[1].children[1] = 2;
|
||||||
|
/* 6:48 */waypoints[1].children[2] = 4;
|
||||||
|
/* 6:48 */waypoints[2] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[2].origin =(-18394.7, 4709.54, 237.962);
|
||||||
|
/* 6:48 */waypoints[2].type = "stand";
|
||||||
|
/* 6:48 */waypoints[2].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[2].children[0] = 1;
|
||||||
|
/* 6:48 */waypoints[2].children[1] = 3;
|
||||||
|
/* 6:48 */waypoints[3] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[3].origin =(-17886.1, 4442.53, 240.125);
|
||||||
|
/* 6:48 */waypoints[3].type = "stand";
|
||||||
|
/* 6:48 */waypoints[3].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[3].children[0] = 2;
|
||||||
|
/* 6:48 */waypoints[3].children[1] = 4;
|
||||||
|
/* 6:48 */waypoints[4] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[4].origin =(-17510.1, 4189.92, 240.125);
|
||||||
|
/* 6:48 */waypoints[4].type = "stand";
|
||||||
|
/* 6:48 */waypoints[4].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[4].children[0] = 3;
|
||||||
|
/* 6:48 */waypoints[4].children[1] = 5;
|
||||||
|
/* 6:48 */waypoints[4].children[2] = 7;
|
||||||
|
/* 6:48 */waypoints[4].children[3] = 1;
|
||||||
|
/* 6:48 */waypoints[5] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[5].origin =(-17519, 3967.81, 240.125);
|
||||||
|
/* 6:48 */waypoints[5].type = "stand";
|
||||||
|
/* 6:48 */waypoints[5].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[5].children[0] = 4;
|
||||||
|
/* 6:48 */waypoints[5].children[1] = 6;
|
||||||
|
/* 6:48 */waypoints[6] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[6].origin =(-17314.8, 3972.81, 322.163);
|
||||||
|
/* 6:48 */waypoints[6].type = "stand";
|
||||||
|
/* 6:48 */waypoints[6].childCount = 1;
|
||||||
|
/* 6:48 */waypoints[6].children[0] = 5;
|
||||||
|
/* 6:48 */waypoints[7] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[7].origin =(-17768.9, 3930.33, 240.125);
|
||||||
|
/* 6:48 */waypoints[7].type = "stand";
|
||||||
|
/* 6:48 */waypoints[7].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[7].children[0] = 4;
|
||||||
|
/* 6:48 */waypoints[7].children[1] = 0;
|
||||||
|
/* 6:48 */waypoints[7].children[2] = 8;
|
||||||
|
/* 6:48 */waypoints[8] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[8].origin =(-17427.6, 3930.64, 376.125);
|
||||||
|
/* 6:48 */waypoints[8].type = "stand";
|
||||||
|
/* 6:48 */waypoints[8].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[8].children[0] = 7;
|
||||||
|
/* 6:48 */waypoints[8].children[1] = 9;
|
||||||
|
/* 6:48 */waypoints[9] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[9].origin =(-17424.5, 3596.03, 376.125);
|
||||||
|
/* 6:48 */waypoints[9].type = "stand";
|
||||||
|
/* 6:48 */waypoints[9].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[9].children[0] = 8;
|
||||||
|
/* 6:48 */waypoints[9].children[1] = 10;
|
||||||
|
/* 6:48 */waypoints[9].children[2] = 11;
|
||||||
|
/* 6:48 */waypoints[10] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[10].origin =(-17235.1, 3596.06, 376.125);
|
||||||
|
/* 6:48 */waypoints[10].type = "stand";
|
||||||
|
/* 6:48 */waypoints[10].childCount = 1;
|
||||||
|
/* 6:48 */waypoints[10].children[0] = 9;
|
||||||
|
/* 6:48 */waypoints[11] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[11].origin =(-17411.8, 3349.74, 376.125);
|
||||||
|
/* 6:48 */waypoints[11].type = "stand";
|
||||||
|
/* 6:48 */waypoints[11].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[11].children[0] = 9;
|
||||||
|
/* 6:48 */waypoints[11].children[1] = 12;
|
||||||
|
/* 6:48 */waypoints[11].children[2] = 13;
|
||||||
|
/* 6:48 */waypoints[12] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[12].origin =(-17240.3, 3357.78, 376.125);
|
||||||
|
/* 6:48 */waypoints[12].type = "stand";
|
||||||
|
/* 6:48 */waypoints[12].childCount = 1;
|
||||||
|
/* 6:48 */waypoints[12].children[0] = 11;
|
||||||
|
/* 6:48 */waypoints[13] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[13].origin =(-17394.8, 3188.2, 376.125);
|
||||||
|
/* 6:48 */waypoints[13].type = "stand";
|
||||||
|
/* 6:48 */waypoints[13].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[13].children[0] = 11;
|
||||||
|
/* 6:48 */waypoints[13].children[1] = 14;
|
||||||
|
/* 6:48 */waypoints[14] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[14].origin =(-17144.6, 3181.12, 291.451);
|
||||||
|
/* 6:48 */waypoints[14].type = "stand";
|
||||||
|
/* 6:48 */waypoints[14].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[14].children[0] = 13;
|
||||||
|
/* 6:48 */waypoints[14].children[1] = 15;
|
||||||
|
/* 6:48 */waypoints[15] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[15].origin =(-17034, 3051.4, 220.125);
|
||||||
|
/* 6:48 */waypoints[15].type = "stand";
|
||||||
|
/* 6:48 */waypoints[15].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[15].children[0] = 14;
|
||||||
|
/* 6:48 */waypoints[15].children[1] = 16;
|
||||||
|
/* 6:48 */waypoints[16] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[16].origin =(-16728.1, 3089.44, 180.125);
|
||||||
|
/* 6:48 */waypoints[16].type = "stand";
|
||||||
|
/* 6:48 */waypoints[16].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[16].children[0] = 15;
|
||||||
|
/* 6:48 */waypoints[16].children[1] = 17;
|
||||||
|
/* 6:48 */waypoints[17] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[17].origin =(-16740.3, 3400.45, 180.125);
|
||||||
|
/* 6:48 */waypoints[17].type = "stand";
|
||||||
|
/* 6:48 */waypoints[17].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[17].children[0] = 16;
|
||||||
|
/* 6:48 */waypoints[17].children[1] = 18;
|
||||||
|
/* 6:48 */waypoints[17].children[2] = 66;
|
||||||
|
/* 6:48 */waypoints[17].children[3] = 67;
|
||||||
|
/* 6:48 */waypoints[18] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[18].origin =(-16538.6, 3824.46, 180.125);
|
||||||
|
/* 6:48 */waypoints[18].type = "stand";
|
||||||
|
/* 6:48 */waypoints[18].childCount = 5;
|
||||||
|
/* 6:48 */waypoints[18].children[0] = 17;
|
||||||
|
/* 6:48 */waypoints[18].children[1] = 19;
|
||||||
|
/* 6:48 */waypoints[18].children[2] = 66;
|
||||||
|
/* 6:48 */waypoints[18].children[3] = 63;
|
||||||
|
/* 6:48 */waypoints[18].children[4] = 68;
|
||||||
|
/* 6:48 */waypoints[19] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[19].origin =(-16395, 4089.25, 180.125);
|
||||||
|
/* 6:48 */waypoints[19].type = "stand";
|
||||||
|
/* 6:48 */waypoints[19].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[19].children[0] = 18;
|
||||||
|
/* 6:48 */waypoints[19].children[1] = 20;
|
||||||
|
/* 6:48 */waypoints[19].children[2] = 63;
|
||||||
|
/* 6:48 */waypoints[19].children[3] = 70;
|
||||||
|
/* 6:48 */waypoints[20] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[20].origin =(-16384.7, 4623.91, 180.125);
|
||||||
|
/* 6:48 */waypoints[20].type = "stand";
|
||||||
|
/* 6:48 */waypoints[20].childCount = 5;
|
||||||
|
/* 6:48 */waypoints[20].children[0] = 19;
|
||||||
|
/* 6:48 */waypoints[20].children[1] = 28;
|
||||||
|
/* 6:48 */waypoints[20].children[2] = 32;
|
||||||
|
/* 6:48 */waypoints[20].children[3] = 38;
|
||||||
|
/* 6:48 */waypoints[20].children[4] = 63;
|
||||||
|
/* 6:48 */waypoints[21] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[21].origin =(-15808.9, 4478.23, 216.125);
|
||||||
|
/* 6:48 */waypoints[21].type = "stand";
|
||||||
|
/* 6:48 */waypoints[21].childCount = 1;
|
||||||
|
/* 6:48 */waypoints[21].children[0] = 22;
|
||||||
|
/* 6:48 */waypoints[22] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[22].origin =(-15922.5, 4489.86, 216.125);
|
||||||
|
/* 6:48 */waypoints[22].type = "stand";
|
||||||
|
/* 6:48 */waypoints[22].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[22].children[0] = 21;
|
||||||
|
/* 6:48 */waypoints[22].children[1] = 23;
|
||||||
|
/* 6:48 */waypoints[22].children[2] = 24;
|
||||||
|
/* 6:48 */waypoints[23] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[23].origin =(-15922.5, 4648.61, 216.125);
|
||||||
|
/* 6:48 */waypoints[23].type = "stand";
|
||||||
|
/* 6:48 */waypoints[23].childCount = 1;
|
||||||
|
/* 6:48 */waypoints[23].children[0] = 22;
|
||||||
|
/* 6:48 */waypoints[24] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[24].origin =(-16001.2, 4477.64, 216.125);
|
||||||
|
/* 6:48 */waypoints[24].type = "stand";
|
||||||
|
/* 6:48 */waypoints[24].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[24].children[0] = 22;
|
||||||
|
/* 6:48 */waypoints[24].children[1] = 25;
|
||||||
|
/* 6:48 */waypoints[24].children[2] = 27;
|
||||||
|
/* 6:48 */waypoints[25] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[25].origin =(-16003.8, 4338.06, 216.125);
|
||||||
|
/* 6:48 */waypoints[25].type = "stand";
|
||||||
|
/* 6:48 */waypoints[25].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[25].children[0] = 24;
|
||||||
|
/* 6:48 */waypoints[25].children[1] = 26;
|
||||||
|
/* 6:48 */waypoints[26] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[26].origin =(-16247.2, 4341, 216.125);
|
||||||
|
/* 6:48 */waypoints[26].type = "stand";
|
||||||
|
/* 6:48 */waypoints[26].childCount = 1;
|
||||||
|
/* 6:48 */waypoints[26].children[0] = 25;
|
||||||
|
/* 6:48 */waypoints[27] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[27].origin =(-16082.8, 4488.38, 216.125);
|
||||||
|
/* 6:48 */waypoints[27].type = "stand";
|
||||||
|
/* 6:48 */waypoints[27].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[27].children[0] = 24;
|
||||||
|
/* 6:48 */waypoints[27].children[1] = 28;
|
||||||
|
/* 6:48 */waypoints[28] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[28].origin =(-16070.4, 4603.11, 192.125);
|
||||||
|
/* 6:48 */waypoints[28].type = "stand";
|
||||||
|
/* 6:48 */waypoints[28].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[28].children[0] = 27;
|
||||||
|
/* 6:48 */waypoints[28].children[1] = 20;
|
||||||
|
/* 6:48 */waypoints[28].children[2] = 29;
|
||||||
|
/* 6:48 */waypoints[29] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[29].origin =(-16086.8, 4841, 192.125);
|
||||||
|
/* 6:48 */waypoints[29].type = "stand";
|
||||||
|
/* 6:48 */waypoints[29].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[29].children[0] = 28;
|
||||||
|
/* 6:48 */waypoints[29].children[1] = 30;
|
||||||
|
/* 6:48 */waypoints[30] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[30].origin =(-15943.1, 4814.69, 192.125);
|
||||||
|
/* 6:48 */waypoints[30].type = "stand";
|
||||||
|
/* 6:48 */waypoints[30].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[30].children[0] = 29;
|
||||||
|
/* 6:48 */waypoints[30].children[1] = 31;
|
||||||
|
/* 6:48 */waypoints[31] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[31].origin =(-15968.5, 5086.35, 180.125);
|
||||||
|
/* 6:48 */waypoints[31].type = "stand";
|
||||||
|
/* 6:48 */waypoints[31].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[31].children[0] = 30;
|
||||||
|
/* 6:48 */waypoints[31].children[1] = 32;
|
||||||
|
/* 6:48 */waypoints[31].children[2] = 33;
|
||||||
|
/* 6:48 */waypoints[32] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[32].origin =(-16398.3, 5104.17, 180.125);
|
||||||
|
/* 6:48 */waypoints[32].type = "stand";
|
||||||
|
/* 6:48 */waypoints[32].childCount = 6;
|
||||||
|
/* 6:48 */waypoints[32].children[0] = 31;
|
||||||
|
/* 6:48 */waypoints[32].children[1] = 20;
|
||||||
|
/* 6:48 */waypoints[32].children[2] = 37;
|
||||||
|
/* 6:48 */waypoints[32].children[3] = 55;
|
||||||
|
/* 6:48 */waypoints[32].children[4] = 64;
|
||||||
|
/* 6:48 */waypoints[32].children[5] = 63;
|
||||||
|
/* 6:48 */waypoints[33] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[33].origin =(-15978.3, 5182.41, 180.125);
|
||||||
|
/* 6:48 */waypoints[33].type = "stand";
|
||||||
|
/* 6:48 */waypoints[33].childCount = 5;
|
||||||
|
/* 6:48 */waypoints[33].children[0] = 31;
|
||||||
|
/* 6:48 */waypoints[33].children[1] = 34;
|
||||||
|
/* 6:48 */waypoints[33].children[2] = 37;
|
||||||
|
/* 6:48 */waypoints[33].children[3] = 56;
|
||||||
|
/* 6:48 */waypoints[33].children[4] = 57;
|
||||||
|
/* 6:48 */waypoints[34] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[34].origin =(-15258, 5166.89, 184.056);
|
||||||
|
/* 6:48 */waypoints[34].type = "stand";
|
||||||
|
/* 6:48 */waypoints[34].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[34].children[0] = 33;
|
||||||
|
/* 6:48 */waypoints[34].children[1] = 35;
|
||||||
|
/* 6:48 */waypoints[34].children[2] = 57;
|
||||||
|
/* 6:48 */waypoints[35] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[35].origin =(-15271.4, 5588.89, 179.501);
|
||||||
|
/* 6:48 */waypoints[35].type = "stand";
|
||||||
|
/* 6:48 */waypoints[35].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[35].children[0] = 34;
|
||||||
|
/* 6:48 */waypoints[35].children[1] = 36;
|
||||||
|
/* 6:48 */waypoints[35].children[2] = 57;
|
||||||
|
/* 6:48 */waypoints[36] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[36].origin =(-15620.9, 5794.74, 180.125);
|
||||||
|
/* 6:48 */waypoints[36].type = "stand";
|
||||||
|
/* 6:48 */waypoints[36].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[36].children[0] = 35;
|
||||||
|
/* 6:48 */waypoints[36].children[1] = 40;
|
||||||
|
/* 6:48 */waypoints[36].children[2] = 56;
|
||||||
|
/* 6:48 */waypoints[36].children[3] = 71;
|
||||||
|
/* 6:48 */waypoints[37] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[37].origin =(-16301.8, 5394.93, 180.125);
|
||||||
|
/* 6:48 */waypoints[37].type = "stand";
|
||||||
|
/* 6:48 */waypoints[37].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[37].children[0] = 33;
|
||||||
|
/* 6:48 */waypoints[37].children[1] = 32;
|
||||||
|
/* 6:48 */waypoints[37].children[2] = 55;
|
||||||
|
/* 6:48 */waypoints[37].children[3] = 53;
|
||||||
|
/* 6:48 */waypoints[38] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[38].origin =(-16866.8, 5785.66, 180.125);
|
||||||
|
/* 6:48 */waypoints[38].type = "stand";
|
||||||
|
/* 6:48 */waypoints[38].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[38].children[0] = 54;
|
||||||
|
/* 6:48 */waypoints[38].children[1] = 55;
|
||||||
|
/* 6:48 */waypoints[38].children[2] = 20;
|
||||||
|
/* 6:48 */waypoints[38].children[3] = 58;
|
||||||
|
/* 6:48 */waypoints[39] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[39].origin =(-16436.3, 6475.02, 180.125);
|
||||||
|
/* 6:48 */waypoints[39].type = "stand";
|
||||||
|
/* 6:48 */waypoints[39].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[39].children[0] = 52;
|
||||||
|
/* 6:48 */waypoints[39].children[1] = 54;
|
||||||
|
/* 6:48 */waypoints[40] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[40].origin =(-15837.5, 5964.28, 184.593);
|
||||||
|
/* 6:48 */waypoints[40].type = "stand";
|
||||||
|
/* 6:48 */waypoints[40].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[40].children[0] = 36;
|
||||||
|
/* 6:48 */waypoints[40].children[1] = 41;
|
||||||
|
/* 6:48 */waypoints[40].children[2] = 52;
|
||||||
|
/* 6:48 */waypoints[40].children[3] = 70;
|
||||||
|
/* 6:48 */waypoints[41] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[41].origin =(-15794.6, 6037.56, 184.603);
|
||||||
|
/* 6:48 */waypoints[41].type = "climb";
|
||||||
|
/* 6:48 */waypoints[41].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[41].children[0] = 40;
|
||||||
|
/* 6:48 */waypoints[41].children[1] = 42;
|
||||||
|
/* 6:48 */waypoints[41].angles = (13.5736, 57.9431, 0);
|
||||||
|
/* 6:48 */waypoints[42] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[42].origin =(-15792.8, 6041.25, 364.125);
|
||||||
|
/* 6:48 */waypoints[42].type = "climb";
|
||||||
|
/* 6:48 */waypoints[42].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[42].children[0] = 41;
|
||||||
|
/* 6:48 */waypoints[42].children[1] = 43;
|
||||||
|
/* 6:48 */waypoints[42].children[2] = 49;
|
||||||
|
/* 6:48 */waypoints[42].angles = (18.7756, 55.1197, 0);
|
||||||
|
/* 6:48 */waypoints[43] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[43].origin =(-15670.2, 6010.25, 323.861);
|
||||||
|
/* 6:48 */waypoints[43].type = "stand";
|
||||||
|
/* 6:48 */waypoints[43].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[43].children[0] = 42;
|
||||||
|
/* 6:48 */waypoints[43].children[1] = 44;
|
||||||
|
/* 6:48 */waypoints[44] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[44].origin =(-15573.2, 6129.57, 316.125);
|
||||||
|
/* 6:48 */waypoints[44].type = "stand";
|
||||||
|
/* 6:48 */waypoints[44].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[44].children[0] = 43;
|
||||||
|
/* 6:48 */waypoints[44].children[1] = 45;
|
||||||
|
/* 6:48 */waypoints[45] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[45].origin =(-15712.4, 6219.42, 316.125);
|
||||||
|
/* 6:48 */waypoints[45].type = "stand";
|
||||||
|
/* 6:48 */waypoints[45].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[45].children[0] = 44;
|
||||||
|
/* 6:48 */waypoints[45].children[1] = 46;
|
||||||
|
/* 6:48 */waypoints[45].children[2] = 48;
|
||||||
|
/* 6:48 */waypoints[46] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[46].origin =(-15611.8, 6340.49, 316.125);
|
||||||
|
/* 6:48 */waypoints[46].type = "stand";
|
||||||
|
/* 6:48 */waypoints[46].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[46].children[0] = 45;
|
||||||
|
/* 6:48 */waypoints[46].children[1] = 47;
|
||||||
|
/* 6:48 */waypoints[47] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[47].origin =(-15522, 6257.52, 316.125);
|
||||||
|
/* 6:48 */waypoints[47].type = "stand";
|
||||||
|
/* 6:48 */waypoints[47].childCount = 1;
|
||||||
|
/* 6:48 */waypoints[47].children[0] = 46;
|
||||||
|
/* 6:48 */waypoints[48] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[48].origin =(-15772.6, 6307.63, 316.125);
|
||||||
|
/* 6:48 */waypoints[48].type = "stand";
|
||||||
|
/* 6:48 */waypoints[48].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[48].children[0] = 45;
|
||||||
|
/* 6:48 */waypoints[48].children[1] = 49;
|
||||||
|
/* 6:48 */waypoints[48].children[2] = 50;
|
||||||
|
/* 6:48 */waypoints[49] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[49].origin =(-15863.1, 6142.04, 316.125);
|
||||||
|
/* 6:48 */waypoints[49].type = "stand";
|
||||||
|
/* 6:48 */waypoints[49].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[49].children[0] = 48;
|
||||||
|
/* 6:48 */waypoints[49].children[1] = 42;
|
||||||
|
/* 6:48 */waypoints[49].children[2] = 51;
|
||||||
|
/* 6:48 */waypoints[50] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[50].origin =(-15862.1, 6393.15, 316.125);
|
||||||
|
/* 6:48 */waypoints[50].type = "stand";
|
||||||
|
/* 6:48 */waypoints[50].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[50].children[0] = 48;
|
||||||
|
/* 6:48 */waypoints[50].children[1] = 51;
|
||||||
|
/* 6:48 */waypoints[51] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[51].origin =(-15998.1, 6238.15, 319.648);
|
||||||
|
/* 6:48 */waypoints[51].type = "stand";
|
||||||
|
/* 6:48 */waypoints[51].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[51].children[0] = 50;
|
||||||
|
/* 6:48 */waypoints[51].children[1] = 49;
|
||||||
|
/* 6:48 */waypoints[52] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[52].origin =(-16073.4, 6131.11, 186.022);
|
||||||
|
/* 6:48 */waypoints[52].type = "stand";
|
||||||
|
/* 6:48 */waypoints[52].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[52].children[0] = 40;
|
||||||
|
/* 6:48 */waypoints[52].children[1] = 39;
|
||||||
|
/* 6:48 */waypoints[52].children[2] = 53;
|
||||||
|
/* 6:48 */waypoints[53] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[53].origin =(-16292.9, 5867.87, 186.044);
|
||||||
|
/* 6:48 */waypoints[53].type = "stand";
|
||||||
|
/* 6:48 */waypoints[53].childCount = 6;
|
||||||
|
/* 6:48 */waypoints[53].children[0] = 52;
|
||||||
|
/* 6:48 */waypoints[53].children[1] = 54;
|
||||||
|
/* 6:48 */waypoints[53].children[2] = 55;
|
||||||
|
/* 6:48 */waypoints[53].children[3] = 37;
|
||||||
|
/* 6:48 */waypoints[53].children[4] = 56;
|
||||||
|
/* 6:48 */waypoints[53].children[5] = 68;
|
||||||
|
/* 6:48 */waypoints[54] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[54].origin =(-16645.9, 6130.24, 180.125);
|
||||||
|
/* 6:48 */waypoints[54].type = "stand";
|
||||||
|
/* 6:48 */waypoints[54].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[54].children[0] = 53;
|
||||||
|
/* 6:48 */waypoints[54].children[1] = 38;
|
||||||
|
/* 6:48 */waypoints[54].children[2] = 39;
|
||||||
|
/* 6:48 */waypoints[55] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[55].origin =(-16547.5, 5537.63, 180.125);
|
||||||
|
/* 6:48 */waypoints[55].type = "stand";
|
||||||
|
/* 6:48 */waypoints[55].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[55].children[0] = 53;
|
||||||
|
/* 6:48 */waypoints[55].children[1] = 37;
|
||||||
|
/* 6:48 */waypoints[55].children[2] = 38;
|
||||||
|
/* 6:48 */waypoints[55].children[3] = 32;
|
||||||
|
/* 6:48 */waypoints[56] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[56].origin =(-15755.8, 5580.85, 180.125);
|
||||||
|
/* 6:48 */waypoints[56].type = "stand";
|
||||||
|
/* 6:48 */waypoints[56].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[56].children[0] = 53;
|
||||||
|
/* 6:48 */waypoints[56].children[1] = 36;
|
||||||
|
/* 6:48 */waypoints[56].children[2] = 33;
|
||||||
|
/* 6:48 */waypoints[56].children[3] = 57;
|
||||||
|
/* 6:48 */waypoints[57] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[57].origin =(-15529.7, 5372.33, 177.018);
|
||||||
|
/* 6:48 */waypoints[57].type = "stand";
|
||||||
|
/* 6:48 */waypoints[57].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[57].children[0] = 35;
|
||||||
|
/* 6:48 */waypoints[57].children[1] = 56;
|
||||||
|
/* 6:48 */waypoints[57].children[2] = 34;
|
||||||
|
/* 6:48 */waypoints[57].children[3] = 33;
|
||||||
|
/* 6:48 */waypoints[58] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[58].origin =(-16961.4, 5736.7, 176.35);
|
||||||
|
/* 6:48 */waypoints[58].type = "stand";
|
||||||
|
/* 6:48 */waypoints[58].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[58].children[0] = 38;
|
||||||
|
/* 6:48 */waypoints[58].children[1] = 59;
|
||||||
|
/* 6:48 */waypoints[58].children[2] = 64;
|
||||||
|
/* 6:48 */waypoints[59] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[59].origin =(-17296.1, 5971.79, 176.913);
|
||||||
|
/* 6:48 */waypoints[59].type = "stand";
|
||||||
|
/* 6:48 */waypoints[59].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[59].children[0] = 58;
|
||||||
|
/* 6:48 */waypoints[59].children[1] = 60;
|
||||||
|
/* 6:48 */waypoints[60] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[60].origin =(-17411.1, 5828.76, 176.157);
|
||||||
|
/* 6:48 */waypoints[60].type = "stand";
|
||||||
|
/* 6:48 */waypoints[60].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[60].children[0] = 59;
|
||||||
|
/* 6:48 */waypoints[60].children[1] = 61;
|
||||||
|
/* 6:48 */waypoints[60].children[2] = 64;
|
||||||
|
/* 6:48 */waypoints[61] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[61].origin =(-17537.2, 5631.68, 180.068);
|
||||||
|
/* 6:48 */waypoints[61].type = "stand";
|
||||||
|
/* 6:48 */waypoints[61].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[61].children[0] = 60;
|
||||||
|
/* 6:48 */waypoints[61].children[1] = 62;
|
||||||
|
/* 6:48 */waypoints[62] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[62].origin =(-17336.9, 5276.73, 193.944);
|
||||||
|
/* 6:48 */waypoints[62].type = "stand";
|
||||||
|
/* 6:48 */waypoints[62].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[62].children[0] = 61;
|
||||||
|
/* 6:48 */waypoints[62].children[1] = 63;
|
||||||
|
/* 6:48 */waypoints[62].children[2] = 64;
|
||||||
|
/* 6:48 */waypoints[63] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[63].origin =(-16888.3, 4669.77, 187.794);
|
||||||
|
/* 6:48 */waypoints[63].type = "stand";
|
||||||
|
/* 6:48 */waypoints[63].childCount = 6;
|
||||||
|
/* 6:48 */waypoints[63].children[0] = 62;
|
||||||
|
/* 6:48 */waypoints[63].children[1] = 20;
|
||||||
|
/* 6:48 */waypoints[63].children[2] = 32;
|
||||||
|
/* 6:48 */waypoints[63].children[3] = 19;
|
||||||
|
/* 6:48 */waypoints[63].children[4] = 65;
|
||||||
|
/* 6:48 */waypoints[63].children[5] = 18;
|
||||||
|
/* 6:48 */waypoints[64] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[64].origin =(-17092.8, 5566.34, 177.783);
|
||||||
|
/* 6:48 */waypoints[64].type = "stand";
|
||||||
|
/* 6:48 */waypoints[64].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[64].children[0] = 60;
|
||||||
|
/* 6:48 */waypoints[64].children[1] = 58;
|
||||||
|
/* 6:48 */waypoints[64].children[2] = 62;
|
||||||
|
/* 6:48 */waypoints[64].children[3] = 32;
|
||||||
|
/* 6:48 */waypoints[65] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[65].origin =(-17160, 4241.12, 187.672);
|
||||||
|
/* 6:48 */waypoints[65].type = "stand";
|
||||||
|
/* 6:48 */waypoints[65].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[65].children[0] = 63;
|
||||||
|
/* 6:48 */waypoints[65].children[1] = 66;
|
||||||
|
/* 6:48 */waypoints[66] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[66].origin =(-17130.3, 3503.61, 172.407);
|
||||||
|
/* 6:48 */waypoints[66].type = "stand";
|
||||||
|
/* 6:48 */waypoints[66].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[66].children[0] = 65;
|
||||||
|
/* 6:48 */waypoints[66].children[1] = 18;
|
||||||
|
/* 6:48 */waypoints[66].children[2] = 17;
|
||||||
|
/* 6:48 */waypoints[67] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[67].origin =(-16493.2, 3347.36, 179.325);
|
||||||
|
/* 6:48 */waypoints[67].type = "stand";
|
||||||
|
/* 6:48 */waypoints[67].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[67].children[0] = 17;
|
||||||
|
/* 6:48 */waypoints[67].children[1] = 68;
|
||||||
|
/* 6:48 */waypoints[67].children[2] = 70;
|
||||||
|
/* 6:48 */waypoints[68] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[68].origin =(-16064.1, 3616.47, 178.008);
|
||||||
|
/* 6:48 */waypoints[68].type = "stand";
|
||||||
|
/* 6:48 */waypoints[68].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[68].children[0] = 67;
|
||||||
|
/* 6:48 */waypoints[68].children[1] = 69;
|
||||||
|
/* 6:48 */waypoints[68].children[2] = 53;
|
||||||
|
/* 6:48 */waypoints[68].children[3] = 18;
|
||||||
|
/* 6:48 */waypoints[69] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[69].origin =(-16021.6, 4052.73, 176.13);
|
||||||
|
/* 6:48 */waypoints[69].type = "stand";
|
||||||
|
/* 6:48 */waypoints[69].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[69].children[0] = 68;
|
||||||
|
/* 6:48 */waypoints[69].children[1] = 70;
|
||||||
|
/* 6:48 */waypoints[70] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[70].origin =(-16225.6, 4049.47, 177.387);
|
||||||
|
/* 6:48 */waypoints[70].type = "stand";
|
||||||
|
/* 6:48 */waypoints[70].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[70].children[0] = 69;
|
||||||
|
/* 6:48 */waypoints[70].children[1] = 19;
|
||||||
|
/* 6:48 */waypoints[70].children[2] = 67;
|
||||||
|
/* 6:48 */waypoints[70].children[3] = 40;
|
||||||
|
/* 6:48 */waypoints[71] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[71].origin =(-15418.8, 6064.17, 180.125);
|
||||||
|
/* 6:48 */waypoints[71].type = "stand";
|
||||||
|
/* 6:48 */waypoints[71].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[71].children[0] = 36;
|
||||||
|
/* 6:48 */waypoints[71].children[1] = 72;
|
||||||
|
/* 6:48 */waypoints[71].children[2] = 73;
|
||||||
|
/* 6:48 */waypoints[72] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[72].origin =(-15682, 6252.19, 180.396);
|
||||||
|
/* 6:48 */waypoints[72].type = "stand";
|
||||||
|
/* 6:48 */waypoints[72].childCount = 1;
|
||||||
|
/* 6:48 */waypoints[72].children[0] = 71;
|
||||||
|
/* 6:48 */waypoints[73] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[73].origin =(-15132.8, 6540.6, 180.125);
|
||||||
|
/* 6:48 */waypoints[73].type = "stand";
|
||||||
|
/* 6:48 */waypoints[73].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[73].children[0] = 71;
|
||||||
|
/* 6:48 */waypoints[73].children[1] = 74;
|
||||||
|
/* 6:48 */waypoints[73].children[2] = 96;
|
||||||
|
/* 6:48 */waypoints[73].children[3] = 97;
|
||||||
|
/* 6:48 */waypoints[74] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[74].origin =(-14860.2, 6849.05, 180.125);
|
||||||
|
/* 6:48 */waypoints[74].type = "stand";
|
||||||
|
/* 6:48 */waypoints[74].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[74].children[0] = 73;
|
||||||
|
/* 6:48 */waypoints[74].children[1] = 75;
|
||||||
|
/* 6:48 */waypoints[74].children[2] = 101;
|
||||||
|
/* 6:48 */waypoints[74].children[3] = 98;
|
||||||
|
/* 6:48 */waypoints[75] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[75].origin =(-14633.1, 7388, 180.125);
|
||||||
|
/* 6:48 */waypoints[75].type = "stand";
|
||||||
|
/* 6:48 */waypoints[75].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[75].children[0] = 74;
|
||||||
|
/* 6:48 */waypoints[75].children[1] = 76;
|
||||||
|
/* 6:48 */waypoints[75].children[2] = 98;
|
||||||
|
/* 6:48 */waypoints[76] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[76].origin =(-14190.7, 7446.49, 180.125);
|
||||||
|
/* 6:48 */waypoints[76].type = "stand";
|
||||||
|
/* 6:48 */waypoints[76].childCount = 5;
|
||||||
|
/* 6:48 */waypoints[76].children[0] = 75;
|
||||||
|
/* 6:48 */waypoints[76].children[1] = 77;
|
||||||
|
/* 6:48 */waypoints[76].children[2] = 99;
|
||||||
|
/* 6:48 */waypoints[76].children[3] = 100;
|
||||||
|
/* 6:48 */waypoints[76].children[4] = 101;
|
||||||
|
/* 6:48 */waypoints[77] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[77].origin =(-13779.9, 7457.81, 236.125);
|
||||||
|
/* 6:48 */waypoints[77].type = "stand";
|
||||||
|
/* 6:48 */waypoints[77].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[77].children[0] = 76;
|
||||||
|
/* 6:48 */waypoints[77].children[1] = 78;
|
||||||
|
/* 6:48 */waypoints[77].children[2] = 87;
|
||||||
|
/* 6:48 */waypoints[78] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[78].origin =(-13768.8, 7737.96, 236.125);
|
||||||
|
/* 6:48 */waypoints[78].type = "stand";
|
||||||
|
/* 6:48 */waypoints[78].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[78].children[0] = 77;
|
||||||
|
/* 6:48 */waypoints[78].children[1] = 79;
|
||||||
|
/* 6:48 */waypoints[79] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[79].origin =(-13328.3, 7720.08, 236.125);
|
||||||
|
/* 6:48 */waypoints[79].type = "stand";
|
||||||
|
/* 6:48 */waypoints[79].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[79].children[0] = 78;
|
||||||
|
/* 6:48 */waypoints[79].children[1] = 80;
|
||||||
|
/* 6:48 */waypoints[79].children[2] = 85;
|
||||||
|
/* 6:48 */waypoints[80] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[80].origin =(-13116.2, 7711.5, 236.125);
|
||||||
|
/* 6:48 */waypoints[80].type = "stand";
|
||||||
|
/* 6:48 */waypoints[80].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[80].children[0] = 79;
|
||||||
|
/* 6:48 */waypoints[80].children[1] = 81;
|
||||||
|
/* 6:48 */waypoints[81] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[81].origin =(-13108, 7849.21, 236.125);
|
||||||
|
/* 6:48 */waypoints[81].type = "stand";
|
||||||
|
/* 6:48 */waypoints[81].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[81].children[0] = 80;
|
||||||
|
/* 6:48 */waypoints[81].children[1] = 82;
|
||||||
|
/* 6:48 */waypoints[81].children[2] = 84;
|
||||||
|
/* 6:48 */waypoints[82] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[82].origin =(-12966.9, 7867.11, 236.125);
|
||||||
|
/* 6:48 */waypoints[82].type = "stand";
|
||||||
|
/* 6:48 */waypoints[82].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[82].children[0] = 81;
|
||||||
|
/* 6:48 */waypoints[82].children[1] = 83;
|
||||||
|
/* 6:48 */waypoints[83] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[83].origin =(-12906.2, 7664.27, 236.125);
|
||||||
|
/* 6:48 */waypoints[83].type = "stand";
|
||||||
|
/* 6:48 */waypoints[83].childCount = 1;
|
||||||
|
/* 6:48 */waypoints[83].children[0] = 82;
|
||||||
|
/* 6:48 */waypoints[84] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[84].origin =(-13084.8, 7972.87, 236.125);
|
||||||
|
/* 6:48 */waypoints[84].type = "stand";
|
||||||
|
/* 6:48 */waypoints[84].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[84].children[0] = 81;
|
||||||
|
/* 6:48 */waypoints[84].children[1] = 85;
|
||||||
|
/* 6:48 */waypoints[85] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[85].origin =(-13272.7, 7953.57, 236.125);
|
||||||
|
/* 6:48 */waypoints[85].type = "stand";
|
||||||
|
/* 6:48 */waypoints[85].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[85].children[0] = 84;
|
||||||
|
/* 6:48 */waypoints[85].children[1] = 79;
|
||||||
|
/* 6:48 */waypoints[85].children[2] = 86;
|
||||||
|
/* 6:48 */waypoints[86] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[86].origin =(-13643.7, 7929.83, 236.125);
|
||||||
|
/* 6:48 */waypoints[86].type = "stand";
|
||||||
|
/* 6:48 */waypoints[86].childCount = 1;
|
||||||
|
/* 6:48 */waypoints[86].children[0] = 85;
|
||||||
|
/* 6:48 */waypoints[87] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[87].origin =(-13453.1, 7470.83, 236.125);
|
||||||
|
/* 6:48 */waypoints[87].type = "stand";
|
||||||
|
/* 6:48 */waypoints[87].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[87].children[0] = 77;
|
||||||
|
/* 6:48 */waypoints[87].children[1] = 88;
|
||||||
|
/* 6:48 */waypoints[88] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[88].origin =(-13028.8, 7456.64, 211.353);
|
||||||
|
/* 6:48 */waypoints[88].type = "stand";
|
||||||
|
/* 6:48 */waypoints[88].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[88].children[0] = 87;
|
||||||
|
/* 6:48 */waypoints[88].children[1] = 89;
|
||||||
|
/* 6:48 */waypoints[88].children[2] = 90;
|
||||||
|
/* 6:48 */waypoints[89] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[89].origin =(-13021.5, 7250.19, 209.435);
|
||||||
|
/* 6:48 */waypoints[89].type = "stand";
|
||||||
|
/* 6:48 */waypoints[89].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[89].children[0] = 88;
|
||||||
|
/* 6:48 */waypoints[89].children[1] = 90;
|
||||||
|
/* 6:48 */waypoints[90] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[90].origin =(-13177, 7203.93, 208.639);
|
||||||
|
/* 6:48 */waypoints[90].type = "stand";
|
||||||
|
/* 6:48 */waypoints[90].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[90].children[0] = 89;
|
||||||
|
/* 6:48 */waypoints[90].children[1] = 91;
|
||||||
|
/* 6:48 */waypoints[90].children[2] = 101;
|
||||||
|
/* 6:48 */waypoints[90].children[3] = 88;
|
||||||
|
/* 6:48 */waypoints[91] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[91].origin =(-13174.2, 6671.88, 199.417);
|
||||||
|
/* 6:48 */waypoints[91].type = "stand";
|
||||||
|
/* 6:48 */waypoints[91].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[91].children[0] = 90;
|
||||||
|
/* 6:48 */waypoints[91].children[1] = 92;
|
||||||
|
/* 6:48 */waypoints[91].children[2] = 102;
|
||||||
|
/* 6:48 */waypoints[92] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[92].origin =(-13542.7, 6306.45, 197.255);
|
||||||
|
/* 6:48 */waypoints[92].type = "stand";
|
||||||
|
/* 6:48 */waypoints[92].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[92].children[0] = 91;
|
||||||
|
/* 6:48 */waypoints[92].children[1] = 93;
|
||||||
|
/* 6:48 */waypoints[92].children[2] = 102;
|
||||||
|
/* 6:48 */waypoints[93] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[93].origin =(-13758.8, 6390.04, 191.724);
|
||||||
|
/* 6:48 */waypoints[93].type = "stand";
|
||||||
|
/* 6:48 */waypoints[93].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[93].children[0] = 92;
|
||||||
|
/* 6:48 */waypoints[93].children[1] = 94;
|
||||||
|
/* 6:48 */waypoints[93].children[2] = 101;
|
||||||
|
/* 6:48 */waypoints[94] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[94].origin =(-14108.7, 5972.91, 183.478);
|
||||||
|
/* 6:48 */waypoints[94].type = "stand";
|
||||||
|
/* 6:48 */waypoints[94].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[94].children[0] = 93;
|
||||||
|
/* 6:48 */waypoints[94].children[1] = 95;
|
||||||
|
/* 6:48 */waypoints[94].children[2] = 96;
|
||||||
|
/* 6:48 */waypoints[95] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[95].origin =(-14357.6, 5985.87, 182.61);
|
||||||
|
/* 6:48 */waypoints[95].type = "stand";
|
||||||
|
/* 6:48 */waypoints[95].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[95].children[0] = 94;
|
||||||
|
/* 6:48 */waypoints[95].children[1] = 96;
|
||||||
|
/* 6:48 */waypoints[96] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[96].origin =(-14398.7, 6304.84, 185.637);
|
||||||
|
/* 6:48 */waypoints[96].type = "stand";
|
||||||
|
/* 6:48 */waypoints[96].childCount = 4;
|
||||||
|
/* 6:48 */waypoints[96].children[0] = 95;
|
||||||
|
/* 6:48 */waypoints[96].children[1] = 73;
|
||||||
|
/* 6:48 */waypoints[96].children[2] = 101;
|
||||||
|
/* 6:48 */waypoints[96].children[3] = 94;
|
||||||
|
/* 6:48 */waypoints[97] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[97].origin =(-15474.4, 6786.1, 180.125);
|
||||||
|
/* 6:48 */waypoints[97].type = "stand";
|
||||||
|
/* 6:48 */waypoints[97].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[97].children[0] = 73;
|
||||||
|
/* 6:48 */waypoints[97].children[1] = 98;
|
||||||
|
/* 6:48 */waypoints[98] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[98].origin =(-15402.1, 7265.5, 180.125);
|
||||||
|
/* 6:48 */waypoints[98].type = "stand";
|
||||||
|
/* 6:48 */waypoints[98].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[98].children[0] = 97;
|
||||||
|
/* 6:48 */waypoints[98].children[1] = 75;
|
||||||
|
/* 6:48 */waypoints[98].children[2] = 74;
|
||||||
|
/* 6:48 */waypoints[99] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[99].origin =(-14364.8, 8026.48, 180.125);
|
||||||
|
/* 6:48 */waypoints[99].type = "stand";
|
||||||
|
/* 6:48 */waypoints[99].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[99].children[0] = 76;
|
||||||
|
/* 6:48 */waypoints[99].children[1] = 100;
|
||||||
|
/* 6:48 */waypoints[100] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[100].origin =(-13968.4, 7767.26, 180.125);
|
||||||
|
/* 6:48 */waypoints[100].type = "stand";
|
||||||
|
/* 6:48 */waypoints[100].childCount = 2;
|
||||||
|
/* 6:48 */waypoints[100].children[0] = 76;
|
||||||
|
/* 6:48 */waypoints[100].children[1] = 99;
|
||||||
|
/* 6:48 */waypoints[101] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[101].origin =(-14071.4, 6888.91, 185.347);
|
||||||
|
/* 6:48 */waypoints[101].type = "stand";
|
||||||
|
/* 6:48 */waypoints[101].childCount = 6;
|
||||||
|
/* 6:48 */waypoints[101].children[0] = 76;
|
||||||
|
/* 6:48 */waypoints[101].children[1] = 90;
|
||||||
|
/* 6:48 */waypoints[101].children[2] = 74;
|
||||||
|
/* 6:48 */waypoints[101].children[3] = 93;
|
||||||
|
/* 6:48 */waypoints[101].children[4] = 96;
|
||||||
|
/* 6:48 */waypoints[101].children[5] = 102;
|
||||||
|
/* 6:48 */waypoints[102] = spawnstruct();
|
||||||
|
/* 6:48 */waypoints[102].origin =(-13500.3, 6736.96, 192.306);
|
||||||
|
/* 6:48 */waypoints[102].type = "stand";
|
||||||
|
/* 6:48 */waypoints[102].childCount = 3;
|
||||||
|
/* 6:48 */waypoints[102].children[0] = 101;
|
||||||
|
/* 6:48 */waypoints[102].children[1] = 91;
|
||||||
|
/* 6:48 */waypoints[102].children[2] = 92;
|
||||||
|
return waypoints;
|
||||||
|
}
|
1009
mods/bots/maps/mp/bots/waypoints/quarry.gsc
Normal file
1009
mods/bots/maps/mp/bots/waypoints/quarry.gsc
Normal file
File diff suppressed because it is too large
Load Diff
477
mods/bots/maps/mp/bots/waypoints/roadkill.gsc
Normal file
477
mods/bots/maps/mp/bots/waypoints/roadkill.gsc
Normal file
@ -0,0 +1,477 @@
|
|||||||
|
Roadkill()
|
||||||
|
{
|
||||||
|
/* 18:21 */waypoints = [];
|
||||||
|
/* 18:21 */waypoints[0] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[0].origin =(-7621.18, 8557.47, 412.125);
|
||||||
|
/* 18:21 */waypoints[0].type = "stand";
|
||||||
|
/* 18:21 */waypoints[0].childCount = 1;
|
||||||
|
/* 18:21 */waypoints[0].children[0] = 1;
|
||||||
|
/* 18:21 */waypoints[1] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[1].origin =(-7756.1, 9137, 416.125);
|
||||||
|
/* 18:21 */waypoints[1].type = "stand";
|
||||||
|
/* 18:21 */waypoints[1].childCount = 4;
|
||||||
|
/* 18:21 */waypoints[1].children[0] = 0;
|
||||||
|
/* 18:21 */waypoints[1].children[1] = 2;
|
||||||
|
/* 18:21 */waypoints[1].children[2] = 3;
|
||||||
|
/* 18:21 */waypoints[1].children[3] = 4;
|
||||||
|
/* 18:21 */waypoints[2] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[2].origin =(-8552.45, 9189.47, 415.485);
|
||||||
|
/* 18:21 */waypoints[2].type = "stand";
|
||||||
|
/* 18:21 */waypoints[2].childCount = 1;
|
||||||
|
/* 18:21 */waypoints[2].children[0] = 1;
|
||||||
|
/* 18:21 */waypoints[3] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[3].origin =(-7239.22, 9142.06, 412.125);
|
||||||
|
/* 18:21 */waypoints[3].type = "stand";
|
||||||
|
/* 18:21 */waypoints[3].childCount = 1;
|
||||||
|
/* 18:21 */waypoints[3].children[0] = 1;
|
||||||
|
/* 18:21 */waypoints[4] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[4].origin =(-7729.58, 9878.71, 456.137);
|
||||||
|
/* 18:21 */waypoints[4].type = "stand";
|
||||||
|
/* 18:21 */waypoints[4].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[4].children[0] = 1;
|
||||||
|
/* 18:21 */waypoints[4].children[1] = 5;
|
||||||
|
/* 18:21 */waypoints[4].children[2] = 7;
|
||||||
|
/* 18:21 */waypoints[5] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[5].origin =(-7498.82, 9847.68, 456.125);
|
||||||
|
/* 18:21 */waypoints[5].type = "stand";
|
||||||
|
/* 18:21 */waypoints[5].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[5].children[0] = 4;
|
||||||
|
/* 18:21 */waypoints[5].children[1] = 6;
|
||||||
|
/* 18:21 */waypoints[6] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[6].origin =(-7522.42, 10267.3, 456.125);
|
||||||
|
/* 18:21 */waypoints[6].type = "stand";
|
||||||
|
/* 18:21 */waypoints[6].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[6].children[0] = 5;
|
||||||
|
/* 18:21 */waypoints[6].children[1] = 7;
|
||||||
|
/* 18:21 */waypoints[7] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[7].origin =(-7720.15, 10298.5, 456.124);
|
||||||
|
/* 18:21 */waypoints[7].type = "stand";
|
||||||
|
/* 18:21 */waypoints[7].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[7].children[0] = 6;
|
||||||
|
/* 18:21 */waypoints[7].children[1] = 4;
|
||||||
|
/* 18:21 */waypoints[7].children[2] = 8;
|
||||||
|
/* 18:21 */waypoints[8] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[8].origin =(-7720.59, 10808.6, 538.02);
|
||||||
|
/* 18:21 */waypoints[8].type = "stand";
|
||||||
|
/* 18:21 */waypoints[8].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[8].children[0] = 7;
|
||||||
|
/* 18:21 */waypoints[8].children[1] = 9;
|
||||||
|
/* 18:21 */waypoints[9] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[9].origin =(-8030.8, 10763.5, 536.125);
|
||||||
|
/* 18:21 */waypoints[9].type = "stand";
|
||||||
|
/* 18:21 */waypoints[9].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[9].children[0] = 8;
|
||||||
|
/* 18:21 */waypoints[9].children[1] = 10;
|
||||||
|
/* 18:21 */waypoints[10] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[10].origin =(-8028.28, 10295.1, 631.535);
|
||||||
|
/* 18:21 */waypoints[10].type = "stand";
|
||||||
|
/* 18:21 */waypoints[10].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[10].children[0] = 9;
|
||||||
|
/* 18:21 */waypoints[10].children[1] = 11;
|
||||||
|
/* 18:21 */waypoints[11] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[11].origin =(-7736.27, 10289.5, 625.649);
|
||||||
|
/* 18:21 */waypoints[11].type = "stand";
|
||||||
|
/* 18:21 */waypoints[11].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[11].children[0] = 10;
|
||||||
|
/* 18:21 */waypoints[11].children[1] = 12;
|
||||||
|
/* 18:21 */waypoints[12] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[12].origin =(-7747.9, 9680.17, 625.788);
|
||||||
|
/* 18:21 */waypoints[12].type = "stand";
|
||||||
|
/* 18:21 */waypoints[12].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[12].children[0] = 11;
|
||||||
|
/* 18:21 */waypoints[12].children[1] = 13;
|
||||||
|
/* 18:21 */waypoints[12].children[2] = 15;
|
||||||
|
/* 18:21 */waypoints[13] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[13].origin =(-7770.69, 9418.73, 624.125);
|
||||||
|
/* 18:21 */waypoints[13].type = "stand";
|
||||||
|
/* 18:21 */waypoints[13].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[13].children[0] = 12;
|
||||||
|
/* 18:21 */waypoints[13].children[1] = 14;
|
||||||
|
/* 18:21 */waypoints[14] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[14].origin =(-8293.24, 9424.92, 624.5);
|
||||||
|
/* 18:21 */waypoints[14].type = "stand";
|
||||||
|
/* 18:21 */waypoints[14].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[14].children[0] = 13;
|
||||||
|
/* 18:21 */waypoints[14].children[1] = 15;
|
||||||
|
/* 18:21 */waypoints[14].children[2] = 16;
|
||||||
|
/* 18:21 */waypoints[15] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[15].origin =(-8272.15, 9666.74, 624.125);
|
||||||
|
/* 18:21 */waypoints[15].type = "stand";
|
||||||
|
/* 18:21 */waypoints[15].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[15].children[0] = 14;
|
||||||
|
/* 18:21 */waypoints[15].children[1] = 12;
|
||||||
|
/* 18:21 */waypoints[16] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[16].origin =(-8793.6, 9442.48, 624.125);
|
||||||
|
/* 18:21 */waypoints[16].type = "stand";
|
||||||
|
/* 18:21 */waypoints[16].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[16].children[0] = 14;
|
||||||
|
/* 18:21 */waypoints[16].children[1] = 17;
|
||||||
|
/* 18:21 */waypoints[16].children[2] = 21;
|
||||||
|
/* 18:21 */waypoints[17] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[17].origin =(-8809.2, 9191.47, 624.125);
|
||||||
|
/* 18:21 */waypoints[17].type = "stand";
|
||||||
|
/* 18:21 */waypoints[17].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[17].children[0] = 16;
|
||||||
|
/* 18:21 */waypoints[17].children[1] = 18;
|
||||||
|
/* 18:21 */waypoints[18] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[18].origin =(-9100.97, 9197.07, 624.125);
|
||||||
|
/* 18:21 */waypoints[18].type = "stand";
|
||||||
|
/* 18:21 */waypoints[18].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[18].children[0] = 17;
|
||||||
|
/* 18:21 */waypoints[18].children[1] = 19;
|
||||||
|
/* 18:21 */waypoints[19] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[19].origin =(-9092.08, 9883.4, 624.125);
|
||||||
|
/* 18:21 */waypoints[19].type = "stand";
|
||||||
|
/* 18:21 */waypoints[19].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[19].children[0] = 18;
|
||||||
|
/* 18:21 */waypoints[19].children[1] = 20;
|
||||||
|
/* 18:21 */waypoints[19].children[2] = 22;
|
||||||
|
/* 18:21 */waypoints[20] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[20].origin =(-8932.8, 9877.95, 624.125);
|
||||||
|
/* 18:21 */waypoints[20].type = "stand";
|
||||||
|
/* 18:21 */waypoints[20].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[20].children[0] = 19;
|
||||||
|
/* 18:21 */waypoints[20].children[1] = 21;
|
||||||
|
/* 18:21 */waypoints[21] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[21].origin =(-8796.84, 9623.54, 624.125);
|
||||||
|
/* 18:21 */waypoints[21].type = "stand";
|
||||||
|
/* 18:21 */waypoints[21].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[21].children[0] = 20;
|
||||||
|
/* 18:21 */waypoints[21].children[1] = 16;
|
||||||
|
/* 18:21 */waypoints[22] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[22].origin =(-9229.4, 10111.2, 624.125);
|
||||||
|
/* 18:21 */waypoints[22].type = "stand";
|
||||||
|
/* 18:21 */waypoints[22].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[22].children[0] = 19;
|
||||||
|
/* 18:21 */waypoints[22].children[1] = 23;
|
||||||
|
/* 18:21 */waypoints[23] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[23].origin =(-9218.56, 10297, 624.125);
|
||||||
|
/* 18:21 */waypoints[23].type = "stand";
|
||||||
|
/* 18:21 */waypoints[23].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[23].children[0] = 22;
|
||||||
|
/* 18:21 */waypoints[23].children[1] = 24;
|
||||||
|
/* 18:21 */waypoints[23].children[2] = 25;
|
||||||
|
/* 18:21 */waypoints[24] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[24].origin =(-9176.44, 10609.1, 624.125);
|
||||||
|
/* 18:21 */waypoints[24].type = "stand";
|
||||||
|
/* 18:21 */waypoints[24].childCount = 1;
|
||||||
|
/* 18:21 */waypoints[24].children[0] = 23;
|
||||||
|
/* 18:21 */waypoints[25] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[25].origin =(-9341.56, 10322, 622.125);
|
||||||
|
/* 18:21 */waypoints[25].type = "stand";
|
||||||
|
/* 18:21 */waypoints[25].childCount = 4;
|
||||||
|
/* 18:21 */waypoints[25].children[0] = 23;
|
||||||
|
/* 18:21 */waypoints[25].children[1] = 26;
|
||||||
|
/* 18:21 */waypoints[25].children[2] = 28;
|
||||||
|
/* 18:21 */waypoints[25].children[3] = 29;
|
||||||
|
/* 18:21 */waypoints[26] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[26].origin =(-9752.35, 10304.7, 616.125);
|
||||||
|
/* 18:21 */waypoints[26].type = "stand";
|
||||||
|
/* 18:21 */waypoints[26].childCount = 5;
|
||||||
|
/* 18:21 */waypoints[26].children[0] = 25;
|
||||||
|
/* 18:21 */waypoints[26].children[1] = 27;
|
||||||
|
/* 18:21 */waypoints[26].children[2] = 28;
|
||||||
|
/* 18:21 */waypoints[26].children[3] = 30;
|
||||||
|
/* 18:21 */waypoints[26].children[4] = 31;
|
||||||
|
/* 18:21 */waypoints[27] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[27].origin =(-9913.22, 9800.1, 622.125);
|
||||||
|
/* 18:21 */waypoints[27].type = "stand";
|
||||||
|
/* 18:21 */waypoints[27].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[27].children[0] = 26;
|
||||||
|
/* 18:21 */waypoints[27].children[1] = 28;
|
||||||
|
/* 18:21 */waypoints[27].children[2] = 34;
|
||||||
|
/* 18:21 */waypoints[28] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[28].origin =(-9412.61, 9819.49, 616.125);
|
||||||
|
/* 18:21 */waypoints[28].type = "stand";
|
||||||
|
/* 18:21 */waypoints[28].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[28].children[0] = 27;
|
||||||
|
/* 18:21 */waypoints[28].children[1] = 26;
|
||||||
|
/* 18:21 */waypoints[28].children[2] = 25;
|
||||||
|
/* 18:21 */waypoints[29] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[29].origin =(-9331.78, 10768.3, 622.125);
|
||||||
|
/* 18:21 */waypoints[29].type = "stand";
|
||||||
|
/* 18:21 */waypoints[29].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[29].children[0] = 25;
|
||||||
|
/* 18:21 */waypoints[29].children[1] = 30;
|
||||||
|
/* 18:21 */waypoints[30] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[30].origin =(-9682.76, 10724.2, 618.407);
|
||||||
|
/* 18:21 */waypoints[30].type = "stand";
|
||||||
|
/* 18:21 */waypoints[30].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[30].children[0] = 29;
|
||||||
|
/* 18:21 */waypoints[30].children[1] = 26;
|
||||||
|
/* 18:21 */waypoints[30].children[2] = 31;
|
||||||
|
/* 18:21 */waypoints[31] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[31].origin =(-10035.1, 10630.7, 616.125);
|
||||||
|
/* 18:21 */waypoints[31].type = "stand";
|
||||||
|
/* 18:21 */waypoints[31].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[31].children[0] = 26;
|
||||||
|
/* 18:21 */waypoints[31].children[1] = 30;
|
||||||
|
/* 18:21 */waypoints[31].children[2] = 32;
|
||||||
|
/* 18:21 */waypoints[32] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[32].origin =(-10106, 10608.3, 616.125);
|
||||||
|
/* 18:21 */waypoints[32].type = "stand";
|
||||||
|
/* 18:21 */waypoints[32].childCount = 5;
|
||||||
|
/* 18:21 */waypoints[32].children[0] = 31;
|
||||||
|
/* 18:21 */waypoints[32].children[1] = 33;
|
||||||
|
/* 18:21 */waypoints[32].children[2] = 37;
|
||||||
|
/* 18:21 */waypoints[32].children[3] = 36;
|
||||||
|
/* 18:21 */waypoints[32].children[4] = 43;
|
||||||
|
/* 18:21 */waypoints[33] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[33].origin =(-10110.8, 10238.9, 616.125);
|
||||||
|
/* 18:21 */waypoints[33].type = "stand";
|
||||||
|
/* 18:21 */waypoints[33].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[33].children[0] = 32;
|
||||||
|
/* 18:21 */waypoints[33].children[1] = 34;
|
||||||
|
/* 18:21 */waypoints[33].children[2] = 36;
|
||||||
|
/* 18:21 */waypoints[34] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[34].origin =(-10125.5, 9846.55, 616.125);
|
||||||
|
/* 18:21 */waypoints[34].type = "stand";
|
||||||
|
/* 18:21 */waypoints[34].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[34].children[0] = 33;
|
||||||
|
/* 18:21 */waypoints[34].children[1] = 27;
|
||||||
|
/* 18:21 */waypoints[34].children[2] = 35;
|
||||||
|
/* 18:21 */waypoints[35] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[35].origin =(-10261.5, 9870.19, 622.125);
|
||||||
|
/* 18:21 */waypoints[35].type = "stand";
|
||||||
|
/* 18:21 */waypoints[35].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[35].children[0] = 34;
|
||||||
|
/* 18:21 */waypoints[35].children[1] = 36;
|
||||||
|
/* 18:21 */waypoints[36] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[36].origin =(-10244.2, 10281.9, 622.125);
|
||||||
|
/* 18:21 */waypoints[36].type = "stand";
|
||||||
|
/* 18:21 */waypoints[36].childCount = 4;
|
||||||
|
/* 18:21 */waypoints[36].children[0] = 35;
|
||||||
|
/* 18:21 */waypoints[36].children[1] = 33;
|
||||||
|
/* 18:21 */waypoints[36].children[2] = 38;
|
||||||
|
/* 18:21 */waypoints[36].children[3] = 32;
|
||||||
|
/* 18:21 */waypoints[37] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[37].origin =(-10482.5, 10519.1, 600.489);
|
||||||
|
/* 18:21 */waypoints[37].type = "stand";
|
||||||
|
/* 18:21 */waypoints[37].childCount = 4;
|
||||||
|
/* 18:21 */waypoints[37].children[0] = 32;
|
||||||
|
/* 18:21 */waypoints[37].children[1] = 38;
|
||||||
|
/* 18:21 */waypoints[37].children[2] = 41;
|
||||||
|
/* 18:21 */waypoints[37].children[3] = 42;
|
||||||
|
/* 18:21 */waypoints[38] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[38].origin =(-10408.3, 10283.7, 622.723);
|
||||||
|
/* 18:21 */waypoints[38].type = "stand";
|
||||||
|
/* 18:21 */waypoints[38].childCount = 4;
|
||||||
|
/* 18:21 */waypoints[38].children[0] = 37;
|
||||||
|
/* 18:21 */waypoints[38].children[1] = 36;
|
||||||
|
/* 18:21 */waypoints[38].children[2] = 39;
|
||||||
|
/* 18:21 */waypoints[38].children[3] = 40;
|
||||||
|
/* 18:21 */waypoints[39] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[39].origin =(-10387.7, 9722.78, 644.797);
|
||||||
|
/* 18:21 */waypoints[39].type = "stand";
|
||||||
|
/* 18:21 */waypoints[39].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[39].children[0] = 38;
|
||||||
|
/* 18:21 */waypoints[39].children[1] = 40;
|
||||||
|
/* 18:21 */waypoints[40] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[40].origin =(-10695.9, 10047.1, 622.901);
|
||||||
|
/* 18:21 */waypoints[40].type = "stand";
|
||||||
|
/* 18:21 */waypoints[40].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[40].children[0] = 39;
|
||||||
|
/* 18:21 */waypoints[40].children[1] = 41;
|
||||||
|
/* 18:21 */waypoints[40].children[2] = 38;
|
||||||
|
/* 18:21 */waypoints[41] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[41].origin =(-10733.8, 10634.6, 622.474);
|
||||||
|
/* 18:21 */waypoints[41].type = "stand";
|
||||||
|
/* 18:21 */waypoints[41].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[41].children[0] = 40;
|
||||||
|
/* 18:21 */waypoints[41].children[1] = 37;
|
||||||
|
/* 18:21 */waypoints[41].children[2] = 42;
|
||||||
|
/* 18:21 */waypoints[42] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[42].origin =(-10636.6, 11168.8, 561.151);
|
||||||
|
/* 18:21 */waypoints[42].type = "stand";
|
||||||
|
/* 18:21 */waypoints[42].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[42].children[0] = 41;
|
||||||
|
/* 18:21 */waypoints[42].children[1] = 37;
|
||||||
|
/* 18:21 */waypoints[42].children[2] = 43;
|
||||||
|
/* 18:21 */waypoints[43] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[43].origin =(-10459.9, 11205.9, 519.55);
|
||||||
|
/* 18:21 */waypoints[43].type = "stand";
|
||||||
|
/* 18:21 */waypoints[43].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[43].children[0] = 42;
|
||||||
|
/* 18:21 */waypoints[43].children[1] = 32;
|
||||||
|
/* 18:21 */waypoints[43].children[2] = 44;
|
||||||
|
/* 18:21 */waypoints[44] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[44].origin =(-10471.8, 11434.4, 488.037);
|
||||||
|
/* 18:21 */waypoints[44].type = "stand";
|
||||||
|
/* 18:21 */waypoints[44].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[44].children[0] = 43;
|
||||||
|
/* 18:21 */waypoints[44].children[1] = 45;
|
||||||
|
/* 18:21 */waypoints[45] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[45].origin =(-9772.45, 11820.6, 484.174);
|
||||||
|
/* 18:21 */waypoints[45].type = "stand";
|
||||||
|
/* 18:21 */waypoints[45].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[45].children[0] = 44;
|
||||||
|
/* 18:21 */waypoints[45].children[1] = 46;
|
||||||
|
/* 18:21 */waypoints[45].children[2] = 53;
|
||||||
|
/* 18:21 */waypoints[46] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[46].origin =(-9651.8, 11814.5, 483.331);
|
||||||
|
/* 18:21 */waypoints[46].type = "stand";
|
||||||
|
/* 18:21 */waypoints[46].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[46].children[0] = 45;
|
||||||
|
/* 18:21 */waypoints[46].children[1] = 47;
|
||||||
|
/* 18:21 */waypoints[46].children[2] = 54;
|
||||||
|
/* 18:21 */waypoints[47] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[47].origin =(-9516.22, 11597.9, 504.117);
|
||||||
|
/* 18:21 */waypoints[47].type = "stand";
|
||||||
|
/* 18:21 */waypoints[47].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[47].children[0] = 46;
|
||||||
|
/* 18:21 */waypoints[47].children[1] = 48;
|
||||||
|
/* 18:21 */waypoints[47].children[2] = 49;
|
||||||
|
/* 18:21 */waypoints[48] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[48].origin =(-9340.24, 11685, 504.11);
|
||||||
|
/* 18:21 */waypoints[48].type = "stand";
|
||||||
|
/* 18:21 */waypoints[48].childCount = 1;
|
||||||
|
/* 18:21 */waypoints[48].children[0] = 47;
|
||||||
|
/* 18:21 */waypoints[49] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[49].origin =(-9695.98, 11487.9, 504.062);
|
||||||
|
/* 18:21 */waypoints[49].type = "stand";
|
||||||
|
/* 18:21 */waypoints[49].childCount = 1;
|
||||||
|
/* 18:21 */waypoints[49].children[0] = 47;
|
||||||
|
/* 18:21 */waypoints[50] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[50].origin =(-9963.47, 12096.3, 508.125);
|
||||||
|
/* 18:21 */waypoints[50].type = "stand";
|
||||||
|
/* 18:21 */waypoints[50].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[50].children[0] = 51;
|
||||||
|
/* 18:21 */waypoints[50].children[1] = 53;
|
||||||
|
/* 18:21 */waypoints[51] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[51].origin =(-9754.33, 12309.2, 499.406);
|
||||||
|
/* 18:21 */waypoints[51].type = "stand";
|
||||||
|
/* 18:21 */waypoints[51].childCount = 5;
|
||||||
|
/* 18:21 */waypoints[51].children[0] = 50;
|
||||||
|
/* 18:21 */waypoints[51].children[1] = 52;
|
||||||
|
/* 18:21 */waypoints[51].children[2] = 55;
|
||||||
|
/* 18:21 */waypoints[51].children[3] = 54;
|
||||||
|
/* 18:21 */waypoints[51].children[4] = 57;
|
||||||
|
/* 18:21 */waypoints[52] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[52].origin =(-9641.58, 12116.9, 494.762);
|
||||||
|
/* 18:21 */waypoints[52].type = "stand";
|
||||||
|
/* 18:21 */waypoints[52].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[52].children[0] = 51;
|
||||||
|
/* 18:21 */waypoints[52].children[1] = 53;
|
||||||
|
/* 18:21 */waypoints[52].children[2] = 55;
|
||||||
|
/* 18:21 */waypoints[53] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[53].origin =(-9872.67, 11960.6, 508.125);
|
||||||
|
/* 18:21 */waypoints[53].type = "stand";
|
||||||
|
/* 18:21 */waypoints[53].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[53].children[0] = 52;
|
||||||
|
/* 18:21 */waypoints[53].children[1] = 45;
|
||||||
|
/* 18:21 */waypoints[53].children[2] = 50;
|
||||||
|
/* 18:21 */waypoints[54] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[54].origin =(-9390.26, 12069.3, 483.708);
|
||||||
|
/* 18:21 */waypoints[54].type = "stand";
|
||||||
|
/* 18:21 */waypoints[54].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[54].children[0] = 46;
|
||||||
|
/* 18:21 */waypoints[54].children[1] = 55;
|
||||||
|
/* 18:21 */waypoints[54].children[2] = 51;
|
||||||
|
/* 18:21 */waypoints[55] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[55].origin =(-9348.27, 12253.7, 492.87);
|
||||||
|
/* 18:21 */waypoints[55].type = "stand";
|
||||||
|
/* 18:21 */waypoints[55].childCount = 4;
|
||||||
|
/* 18:21 */waypoints[55].children[0] = 54;
|
||||||
|
/* 18:21 */waypoints[55].children[1] = 56;
|
||||||
|
/* 18:21 */waypoints[55].children[2] = 51;
|
||||||
|
/* 18:21 */waypoints[55].children[3] = 52;
|
||||||
|
/* 18:21 */waypoints[56] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[56].origin =(-9135.17, 12434.2, 492.155);
|
||||||
|
/* 18:21 */waypoints[56].type = "stand";
|
||||||
|
/* 18:21 */waypoints[56].childCount = 1;
|
||||||
|
/* 18:21 */waypoints[56].children[0] = 55;
|
||||||
|
/* 18:21 */waypoints[57] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[57].origin =(-9771.37, 12883.3, 512.125);
|
||||||
|
/* 18:21 */waypoints[57].type = "stand";
|
||||||
|
/* 18:21 */waypoints[57].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[57].children[0] = 51;
|
||||||
|
/* 18:21 */waypoints[57].children[1] = 58;
|
||||||
|
/* 18:21 */waypoints[58] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[58].origin =(-9559.82, 12932.3, 508.738);
|
||||||
|
/* 18:21 */waypoints[58].type = "stand";
|
||||||
|
/* 18:21 */waypoints[58].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[58].children[0] = 57;
|
||||||
|
/* 18:21 */waypoints[58].children[1] = 59;
|
||||||
|
/* 18:21 */waypoints[59] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[59].origin =(-9537.54, 13552, 507.484);
|
||||||
|
/* 18:21 */waypoints[59].type = "stand";
|
||||||
|
/* 18:21 */waypoints[59].childCount = 4;
|
||||||
|
/* 18:21 */waypoints[59].children[0] = 58;
|
||||||
|
/* 18:21 */waypoints[59].children[1] = 60;
|
||||||
|
/* 18:21 */waypoints[59].children[2] = 66;
|
||||||
|
/* 18:21 */waypoints[59].children[3] = 67;
|
||||||
|
/* 18:21 */waypoints[60] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[60].origin =(-9852.6, 13619.6, 520.85);
|
||||||
|
/* 18:21 */waypoints[60].type = "stand";
|
||||||
|
/* 18:21 */waypoints[60].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[60].children[0] = 59;
|
||||||
|
/* 18:21 */waypoints[60].children[1] = 61;
|
||||||
|
/* 18:21 */waypoints[60].children[2] = 69;
|
||||||
|
/* 18:21 */waypoints[61] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[61].origin =(-10426, 13689.3, 510.521);
|
||||||
|
/* 18:21 */waypoints[61].type = "stand";
|
||||||
|
/* 18:21 */waypoints[61].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[61].children[0] = 60;
|
||||||
|
/* 18:21 */waypoints[61].children[1] = 70;
|
||||||
|
/* 18:21 */waypoints[62] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[62].origin =(-10383.3, 14278.6, 504.333);
|
||||||
|
/* 18:21 */waypoints[62].type = "stand";
|
||||||
|
/* 18:21 */waypoints[62].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[62].children[0] = 63;
|
||||||
|
/* 18:21 */waypoints[62].children[1] = 70;
|
||||||
|
/* 18:21 */waypoints[63] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[63].origin =(-9821.82, 14230.2, 502.248);
|
||||||
|
/* 18:21 */waypoints[63].type = "stand";
|
||||||
|
/* 18:21 */waypoints[63].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[63].children[0] = 62;
|
||||||
|
/* 18:21 */waypoints[63].children[1] = 68;
|
||||||
|
/* 18:21 */waypoints[63].children[2] = 69;
|
||||||
|
/* 18:21 */waypoints[64] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[64].origin =(-9057.83, 14146.7, 504.125);
|
||||||
|
/* 18:21 */waypoints[64].type = "stand";
|
||||||
|
/* 18:21 */waypoints[64].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[64].children[0] = 65;
|
||||||
|
/* 18:21 */waypoints[64].children[1] = 68;
|
||||||
|
/* 18:21 */waypoints[65] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[65].origin =(-9011.44, 13833.8, 521.398);
|
||||||
|
/* 18:21 */waypoints[65].type = "stand";
|
||||||
|
/* 18:21 */waypoints[65].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[65].children[0] = 64;
|
||||||
|
/* 18:21 */waypoints[65].children[1] = 66;
|
||||||
|
/* 18:21 */waypoints[65].children[2] = 67;
|
||||||
|
/* 18:21 */waypoints[66] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[66].origin =(-8979.63, 13579.7, 518.355);
|
||||||
|
/* 18:21 */waypoints[66].type = "stand";
|
||||||
|
/* 18:21 */waypoints[66].childCount = 2;
|
||||||
|
/* 18:21 */waypoints[66].children[0] = 65;
|
||||||
|
/* 18:21 */waypoints[66].children[1] = 59;
|
||||||
|
/* 18:21 */waypoints[67] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[67].origin =(-9453.79, 13880, 508.763);
|
||||||
|
/* 18:21 */waypoints[67].type = "stand";
|
||||||
|
/* 18:21 */waypoints[67].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[67].children[0] = 59;
|
||||||
|
/* 18:21 */waypoints[67].children[1] = 68;
|
||||||
|
/* 18:21 */waypoints[67].children[2] = 65;
|
||||||
|
/* 18:21 */waypoints[68] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[68].origin =(-9420.81, 14179, 506.824);
|
||||||
|
/* 18:21 */waypoints[68].type = "stand";
|
||||||
|
/* 18:21 */waypoints[68].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[68].children[0] = 67;
|
||||||
|
/* 18:21 */waypoints[68].children[1] = 64;
|
||||||
|
/* 18:21 */waypoints[68].children[2] = 63;
|
||||||
|
/* 18:21 */waypoints[69] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[69].origin =(-9853.69, 13967.4, 522.047);
|
||||||
|
/* 18:21 */waypoints[69].type = "stand";
|
||||||
|
/* 18:21 */waypoints[69].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[69].children[0] = 63;
|
||||||
|
/* 18:21 */waypoints[69].children[1] = 60;
|
||||||
|
/* 18:21 */waypoints[69].children[2] = 70;
|
||||||
|
/* 18:21 */waypoints[70] = spawnstruct();
|
||||||
|
/* 18:21 */waypoints[70].origin =(-10424.4, 13962.5, 517.304);
|
||||||
|
/* 18:21 */waypoints[70].type = "stand";
|
||||||
|
/* 18:21 */waypoints[70].childCount = 3;
|
||||||
|
/* 18:21 */waypoints[70].children[0] = 69;
|
||||||
|
/* 18:21 */waypoints[70].children[1] = 61;
|
||||||
|
/* 18:21 */waypoints[70].children[2] = 62;
|
||||||
|
/* 18:21 */return waypoints;
|
||||||
|
}
|
1275
mods/bots/maps/mp/bots/waypoints/rundown.gsc
Normal file
1275
mods/bots/maps/mp/bots/waypoints/rundown.gsc
Normal file
File diff suppressed because it is too large
Load Diff
1225
mods/bots/maps/mp/bots/waypoints/rust.gsc
Normal file
1225
mods/bots/maps/mp/bots/waypoints/rust.gsc
Normal file
File diff suppressed because it is too large
Load Diff
792
mods/bots/maps/mp/bots/waypoints/rustlong.gsc
Normal file
792
mods/bots/maps/mp/bots/waypoints/rustlong.gsc
Normal file
@ -0,0 +1,792 @@
|
|||||||
|
RustLong()
|
||||||
|
{
|
||||||
|
/* 16:54 */waypoints = [];
|
||||||
|
/* 16:54 */waypoints[0] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[0].origin = (2606.05, 1445.73, -211.875);
|
||||||
|
/* 16:54 */waypoints[0].type = "stand";
|
||||||
|
/* 16:54 */waypoints[0].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[0].children[0] = 1;
|
||||||
|
/* 16:54 */waypoints[0].children[1] = 32;
|
||||||
|
/* 16:54 */waypoints[1] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[1].origin = (2574.41, 954.335, -211.875);
|
||||||
|
/* 16:54 */waypoints[1].type = "stand";
|
||||||
|
/* 16:54 */waypoints[1].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[1].children[0] = 0;
|
||||||
|
/* 16:54 */waypoints[1].children[1] = 2;
|
||||||
|
/* 16:54 */waypoints[2] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[2].origin = (2139.89, 895.813, -211.875);
|
||||||
|
/* 16:54 */waypoints[2].type = "stand";
|
||||||
|
/* 16:54 */waypoints[2].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[2].children[0] = 1;
|
||||||
|
/* 16:54 */waypoints[2].children[1] = 3;
|
||||||
|
/* 16:54 */waypoints[2].children[2] = 33;
|
||||||
|
/* 16:54 */waypoints[3] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[3].origin = (1985.18, 900.248, -211.875);
|
||||||
|
/* 16:54 */waypoints[3].type = "stand";
|
||||||
|
/* 16:54 */waypoints[3].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[3].children[0] = 2;
|
||||||
|
/* 16:54 */waypoints[3].children[1] = 4;
|
||||||
|
/* 16:54 */waypoints[3].children[2] = 38;
|
||||||
|
/* 16:54 */waypoints[4] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[4].origin = (1979.79, 547.852, -211.88);
|
||||||
|
/* 16:54 */waypoints[4].type = "stand";
|
||||||
|
/* 16:54 */waypoints[4].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[4].children[0] = 3;
|
||||||
|
/* 16:54 */waypoints[4].children[1] = 5;
|
||||||
|
/* 16:54 */waypoints[4].children[2] = 33;
|
||||||
|
/* 16:54 */waypoints[5] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[5].origin = (1701.11, 391.592, -222.781);
|
||||||
|
/* 16:54 */waypoints[5].type = "stand";
|
||||||
|
/* 16:54 */waypoints[5].childCount = 5;
|
||||||
|
/* 16:54 */waypoints[5].children[0] = 4;
|
||||||
|
/* 16:54 */waypoints[5].children[1] = 6;
|
||||||
|
/* 16:54 */waypoints[5].children[2] = 34;
|
||||||
|
/* 16:54 */waypoints[5].children[3] = 43;
|
||||||
|
/* 16:54 */waypoints[5].children[4] = 44;
|
||||||
|
/* 16:54 */waypoints[6] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[6].origin = (1405.32, 230.131, -238.565);
|
||||||
|
/* 16:54 */waypoints[6].type = "stand";
|
||||||
|
/* 16:54 */waypoints[6].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[6].children[0] = 5;
|
||||||
|
/* 16:54 */waypoints[6].children[1] = 7;
|
||||||
|
/* 16:54 */waypoints[6].children[2] = 44;
|
||||||
|
/* 16:54 */waypoints[7] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[7].origin = (1136.02, -34.279, -243.333);
|
||||||
|
/* 16:54 */waypoints[7].type = "stand";
|
||||||
|
/* 16:54 */waypoints[7].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[7].children[0] = 6;
|
||||||
|
/* 16:54 */waypoints[7].children[1] = 8;
|
||||||
|
/* 16:54 */waypoints[7].children[2] = 47;
|
||||||
|
/* 16:54 */waypoints[8] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[8].origin = (779.781, -32.4219, -230.32);
|
||||||
|
/* 16:54 */waypoints[8].type = "stand";
|
||||||
|
/* 16:54 */waypoints[8].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[8].children[0] = 7;
|
||||||
|
/* 16:54 */waypoints[8].children[1] = 9;
|
||||||
|
/* 16:54 */waypoints[8].children[2] = 47;
|
||||||
|
/* 16:54 */waypoints[9] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[9].origin = (507.747, -9.99995, -219.999);
|
||||||
|
/* 16:54 */waypoints[9].type = "stand";
|
||||||
|
/* 16:54 */waypoints[9].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[9].children[0] = 8;
|
||||||
|
/* 16:54 */waypoints[9].children[1] = 10;
|
||||||
|
/* 16:54 */waypoints[10] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[10].origin = (506.471, -151.799, -227.911);
|
||||||
|
/* 16:54 */waypoints[10].type = "stand";
|
||||||
|
/* 16:54 */waypoints[10].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[10].children[0] = 9;
|
||||||
|
/* 16:54 */waypoints[10].children[1] = 11;
|
||||||
|
/* 16:54 */waypoints[11] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[11].origin = (195.883, -156.704, -232.869);
|
||||||
|
/* 16:54 */waypoints[11].type = "stand";
|
||||||
|
/* 16:54 */waypoints[11].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[11].children[0] = 10;
|
||||||
|
/* 16:54 */waypoints[11].children[1] = 12;
|
||||||
|
/* 16:54 */waypoints[11].children[2] = 77;
|
||||||
|
/* 16:54 */waypoints[12] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[12].origin = (-147.589, 98.0694, -220.751);
|
||||||
|
/* 16:54 */waypoints[12].type = "stand";
|
||||||
|
/* 16:54 */waypoints[12].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[12].children[0] = 11;
|
||||||
|
/* 16:54 */waypoints[12].children[1] = 13;
|
||||||
|
/* 16:54 */waypoints[12].children[2] = 77;
|
||||||
|
/* 16:54 */waypoints[13] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[13].origin = (-363.937, 428.206, -238.089);
|
||||||
|
/* 16:54 */waypoints[13].type = "stand";
|
||||||
|
/* 16:54 */waypoints[13].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[13].children[0] = 12;
|
||||||
|
/* 16:54 */waypoints[13].children[1] = 14;
|
||||||
|
/* 16:54 */waypoints[13].children[2] = 78;
|
||||||
|
/* 16:54 */waypoints[13].children[3] = 79;
|
||||||
|
/* 16:54 */waypoints[14] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[14].origin = (-654.581, 373.714, -220.985);
|
||||||
|
/* 16:54 */waypoints[14].type = "stand";
|
||||||
|
/* 16:54 */waypoints[14].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[14].children[0] = 13;
|
||||||
|
/* 16:54 */waypoints[14].children[1] = 15;
|
||||||
|
/* 16:54 */waypoints[14].children[2] = 103;
|
||||||
|
/* 16:54 */waypoints[15] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[15].origin = (-885.16, 685.475, -211.875);
|
||||||
|
/* 16:54 */waypoints[15].type = "stand";
|
||||||
|
/* 16:54 */waypoints[15].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[15].children[0] = 14;
|
||||||
|
/* 16:54 */waypoints[15].children[1] = 16;
|
||||||
|
/* 16:54 */waypoints[15].children[2] = 101;
|
||||||
|
/* 16:54 */waypoints[15].children[3] = 102;
|
||||||
|
/* 16:54 */waypoints[16] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[16].origin = (-1018.27, 930.036, -233.875);
|
||||||
|
/* 16:54 */waypoints[16].type = "stand";
|
||||||
|
/* 16:54 */waypoints[16].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[16].children[0] = 15;
|
||||||
|
/* 16:54 */waypoints[16].children[1] = 17;
|
||||||
|
/* 16:54 */waypoints[16].children[2] = 101;
|
||||||
|
/* 16:54 */waypoints[17] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[17].origin = (-1381.52, 934.252, -233.875);
|
||||||
|
/* 16:54 */waypoints[17].type = "stand";
|
||||||
|
/* 16:54 */waypoints[17].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[17].children[0] = 16;
|
||||||
|
/* 16:54 */waypoints[17].children[1] = 18;
|
||||||
|
/* 16:54 */waypoints[18] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[18].origin = (-1383.33, 1313.84, -233.875);
|
||||||
|
/* 16:54 */waypoints[18].type = "stand";
|
||||||
|
/* 16:54 */waypoints[18].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[18].children[0] = 17;
|
||||||
|
/* 16:54 */waypoints[18].children[1] = 19;
|
||||||
|
/* 16:54 */waypoints[18].children[2] = 99;
|
||||||
|
/* 16:54 */waypoints[19] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[19].origin = (-1389.4, 1741.12, -233.875);
|
||||||
|
/* 16:54 */waypoints[19].type = "stand";
|
||||||
|
/* 16:54 */waypoints[19].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[19].children[0] = 18;
|
||||||
|
/* 16:54 */waypoints[19].children[1] = 20;
|
||||||
|
/* 16:54 */waypoints[19].children[2] = 100;
|
||||||
|
/* 16:54 */waypoints[20] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[20].origin = (-1024.09, 1780.6, -183.682);
|
||||||
|
/* 16:54 */waypoints[20].type = "stand";
|
||||||
|
/* 16:54 */waypoints[20].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[20].children[0] = 19;
|
||||||
|
/* 16:54 */waypoints[20].children[1] = 21;
|
||||||
|
/* 16:54 */waypoints[20].children[2] = 100;
|
||||||
|
/* 16:54 */waypoints[21] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[21].origin = (-533.83, 1801.88, -45.6611);
|
||||||
|
/* 16:54 */waypoints[21].type = "stand";
|
||||||
|
/* 16:54 */waypoints[21].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[21].children[0] = 20;
|
||||||
|
/* 16:54 */waypoints[21].children[1] = 22;
|
||||||
|
/* 16:54 */waypoints[22] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[22].origin = (-74.7035, 1787.66, -49.2301);
|
||||||
|
/* 16:54 */waypoints[22].type = "stand";
|
||||||
|
/* 16:54 */waypoints[22].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[22].children[0] = 21;
|
||||||
|
/* 16:54 */waypoints[22].children[1] = 23;
|
||||||
|
/* 16:54 */waypoints[22].children[2] = 81;
|
||||||
|
/* 16:54 */waypoints[23] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[23].origin = (151.4, 1787.63, -48.4463);
|
||||||
|
/* 16:54 */waypoints[23].type = "stand";
|
||||||
|
/* 16:54 */waypoints[23].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[23].children[0] = 22;
|
||||||
|
/* 16:54 */waypoints[23].children[1] = 24;
|
||||||
|
/* 16:54 */waypoints[24] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[24].origin = (344.562, 1652.52, -51.7412);
|
||||||
|
/* 16:54 */waypoints[24].type = "stand";
|
||||||
|
/* 16:54 */waypoints[24].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[24].children[0] = 23;
|
||||||
|
/* 16:54 */waypoints[24].children[1] = 25;
|
||||||
|
/* 16:54 */waypoints[25] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[25].origin = (642.449, 1666.28, -49.4901);
|
||||||
|
/* 16:54 */waypoints[25].type = "stand";
|
||||||
|
/* 16:54 */waypoints[25].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[25].children[0] = 24;
|
||||||
|
/* 16:54 */waypoints[25].children[1] = 26;
|
||||||
|
/* 16:54 */waypoints[25].children[2] = 56;
|
||||||
|
/* 16:54 */waypoints[26] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[26].origin = (1111.98, 1636.78, -120.516);
|
||||||
|
/* 16:54 */waypoints[26].type = "stand";
|
||||||
|
/* 16:54 */waypoints[26].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[26].children[0] = 25;
|
||||||
|
/* 16:54 */waypoints[26].children[1] = 27;
|
||||||
|
/* 16:54 */waypoints[26].children[2] = 104;
|
||||||
|
/* 16:54 */waypoints[27] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[27].origin = (1346.79, 1627.68, -172.931);
|
||||||
|
/* 16:54 */waypoints[27].type = "stand";
|
||||||
|
/* 16:54 */waypoints[27].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[27].children[0] = 26;
|
||||||
|
/* 16:54 */waypoints[27].children[1] = 28;
|
||||||
|
/* 16:54 */waypoints[27].children[2] = 40;
|
||||||
|
/* 16:54 */waypoints[27].children[3] = 76;
|
||||||
|
/* 16:54 */waypoints[28] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[28].origin = (1560.95, 1628.35, -218.673);
|
||||||
|
/* 16:54 */waypoints[28].type = "stand";
|
||||||
|
/* 16:54 */waypoints[28].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[28].children[0] = 27;
|
||||||
|
/* 16:54 */waypoints[28].children[1] = 29;
|
||||||
|
/* 16:54 */waypoints[28].children[2] = 37;
|
||||||
|
/* 16:54 */waypoints[29] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[29].origin = (1531.56, 1784.24, -229.03);
|
||||||
|
/* 16:54 */waypoints[29].type = "stand";
|
||||||
|
/* 16:54 */waypoints[29].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[29].children[0] = 28;
|
||||||
|
/* 16:54 */waypoints[29].children[1] = 30;
|
||||||
|
/* 16:54 */waypoints[29].children[2] = 76;
|
||||||
|
/* 16:54 */waypoints[30] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[30].origin = (1865.23, 1774.53, -239.124);
|
||||||
|
/* 16:54 */waypoints[30].type = "stand";
|
||||||
|
/* 16:54 */waypoints[30].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[30].children[0] = 29;
|
||||||
|
/* 16:54 */waypoints[30].children[1] = 31;
|
||||||
|
/* 16:54 */waypoints[31] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[31].origin = (2194.06, 1756.73, -243.913);
|
||||||
|
/* 16:54 */waypoints[31].type = "stand";
|
||||||
|
/* 16:54 */waypoints[31].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[31].children[0] = 30;
|
||||||
|
/* 16:54 */waypoints[31].children[1] = 32;
|
||||||
|
/* 16:54 */waypoints[32] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[32].origin = (2226.93, 1394.56, -212.569);
|
||||||
|
/* 16:54 */waypoints[32].type = "stand";
|
||||||
|
/* 16:54 */waypoints[32].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[32].children[0] = 31;
|
||||||
|
/* 16:54 */waypoints[32].children[1] = 0;
|
||||||
|
/* 16:54 */waypoints[32].children[2] = 35;
|
||||||
|
/* 16:54 */waypoints[33] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[33].origin = (2161.97, 609.565, -211.875);
|
||||||
|
/* 16:54 */waypoints[33].type = "stand";
|
||||||
|
/* 16:54 */waypoints[33].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[33].children[0] = 2;
|
||||||
|
/* 16:54 */waypoints[33].children[1] = 34;
|
||||||
|
/* 16:54 */waypoints[33].children[2] = 4;
|
||||||
|
/* 16:54 */waypoints[34] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[34].origin = (2018.67, 274.033, -211.875);
|
||||||
|
/* 16:54 */waypoints[34].type = "stand";
|
||||||
|
/* 16:54 */waypoints[34].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[34].children[0] = 33;
|
||||||
|
/* 16:54 */waypoints[34].children[1] = 5;
|
||||||
|
/* 16:54 */waypoints[35] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[35].origin = (1855.58, 1314.67, -211.875);
|
||||||
|
/* 16:54 */waypoints[35].type = "stand";
|
||||||
|
/* 16:54 */waypoints[35].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[35].children[0] = 32;
|
||||||
|
/* 16:54 */waypoints[35].children[1] = 36;
|
||||||
|
/* 16:54 */waypoints[35].children[2] = 38;
|
||||||
|
/* 16:54 */waypoints[36] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[36].origin = (1802, 1536.88, -211.875);
|
||||||
|
/* 16:54 */waypoints[36].type = "stand";
|
||||||
|
/* 16:54 */waypoints[36].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[36].children[0] = 35;
|
||||||
|
/* 16:54 */waypoints[36].children[1] = 37;
|
||||||
|
/* 16:54 */waypoints[37] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[37].origin = (1596.36, 1510.13, -227.889);
|
||||||
|
/* 16:54 */waypoints[37].type = "stand";
|
||||||
|
/* 16:54 */waypoints[37].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[37].children[0] = 36;
|
||||||
|
/* 16:54 */waypoints[37].children[1] = 28;
|
||||||
|
/* 16:54 */waypoints[37].children[2] = 39;
|
||||||
|
/* 16:54 */waypoints[37].children[3] = 40;
|
||||||
|
/* 16:54 */waypoints[38] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[38].origin = (1948.93, 1156.82, -211.875);
|
||||||
|
/* 16:54 */waypoints[38].type = "stand";
|
||||||
|
/* 16:54 */waypoints[38].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[38].children[0] = 35;
|
||||||
|
/* 16:54 */waypoints[38].children[1] = 3;
|
||||||
|
/* 16:54 */waypoints[38].children[2] = 39;
|
||||||
|
/* 16:54 */waypoints[39] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[39].origin = (1614.39, 1153.14, -219.401);
|
||||||
|
/* 16:54 */waypoints[39].type = "stand";
|
||||||
|
/* 16:54 */waypoints[39].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[39].children[0] = 38;
|
||||||
|
/* 16:54 */waypoints[39].children[1] = 37;
|
||||||
|
/* 16:54 */waypoints[39].children[2] = 41;
|
||||||
|
/* 16:54 */waypoints[40] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[40].origin = (1374.95, 1484.73, -237.334);
|
||||||
|
/* 16:54 */waypoints[40].type = "stand";
|
||||||
|
/* 16:54 */waypoints[40].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[40].children[0] = 37;
|
||||||
|
/* 16:54 */waypoints[40].children[1] = 27;
|
||||||
|
/* 16:54 */waypoints[40].children[2] = 41;
|
||||||
|
/* 16:54 */waypoints[41] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[41].origin = (1370.33, 1097.12, -232.961);
|
||||||
|
/* 16:54 */waypoints[41].type = "stand";
|
||||||
|
/* 16:54 */waypoints[41].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[41].children[0] = 40;
|
||||||
|
/* 16:54 */waypoints[41].children[1] = 39;
|
||||||
|
/* 16:54 */waypoints[41].children[2] = 42;
|
||||||
|
/* 16:54 */waypoints[41].children[3] = 108;
|
||||||
|
/* 16:54 */waypoints[42] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[42].origin = (1359.55, 710.234, -227.788);
|
||||||
|
/* 16:54 */waypoints[42].type = "stand";
|
||||||
|
/* 16:54 */waypoints[42].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[42].children[0] = 41;
|
||||||
|
/* 16:54 */waypoints[42].children[1] = 43;
|
||||||
|
/* 16:54 */waypoints[42].children[2] = 44;
|
||||||
|
/* 16:54 */waypoints[42].children[3] = 45;
|
||||||
|
/* 16:54 */waypoints[43] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[43].origin = (1563.4, 688.45, -225.592);
|
||||||
|
/* 16:54 */waypoints[43].type = "stand";
|
||||||
|
/* 16:54 */waypoints[43].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[43].children[0] = 42;
|
||||||
|
/* 16:54 */waypoints[43].children[1] = 5;
|
||||||
|
/* 16:54 */waypoints[44] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[44].origin = (1356.72, 444.874, -239.875);
|
||||||
|
/* 16:54 */waypoints[44].type = "stand";
|
||||||
|
/* 16:54 */waypoints[44].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[44].children[0] = 5;
|
||||||
|
/* 16:54 */waypoints[44].children[1] = 42;
|
||||||
|
/* 16:54 */waypoints[44].children[2] = 46;
|
||||||
|
/* 16:54 */waypoints[44].children[3] = 6;
|
||||||
|
/* 16:54 */waypoints[45] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[45].origin = (1142.59, 663.15, -245.875);
|
||||||
|
/* 16:54 */waypoints[45].type = "stand";
|
||||||
|
/* 16:54 */waypoints[45].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[45].children[0] = 42;
|
||||||
|
/* 16:54 */waypoints[45].children[1] = 46;
|
||||||
|
/* 16:54 */waypoints[45].children[2] = 51;
|
||||||
|
/* 16:54 */waypoints[45].children[3] = 70;
|
||||||
|
/* 16:54 */waypoints[46] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[46].origin = (1128, 364.15, -240.361);
|
||||||
|
/* 16:54 */waypoints[46].type = "stand";
|
||||||
|
/* 16:54 */waypoints[46].childCount = 5;
|
||||||
|
/* 16:54 */waypoints[46].children[0] = 45;
|
||||||
|
/* 16:54 */waypoints[46].children[1] = 44;
|
||||||
|
/* 16:54 */waypoints[46].children[2] = 47;
|
||||||
|
/* 16:54 */waypoints[46].children[3] = 51;
|
||||||
|
/* 16:54 */waypoints[46].children[4] = 52;
|
||||||
|
/* 16:54 */waypoints[47] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[47].origin = (799.87, 197.766, -245.904);
|
||||||
|
/* 16:54 */waypoints[47].type = "stand";
|
||||||
|
/* 16:54 */waypoints[47].childCount = 5;
|
||||||
|
/* 16:54 */waypoints[47].children[0] = 46;
|
||||||
|
/* 16:54 */waypoints[47].children[1] = 8;
|
||||||
|
/* 16:54 */waypoints[47].children[2] = 7;
|
||||||
|
/* 16:54 */waypoints[47].children[3] = 48;
|
||||||
|
/* 16:54 */waypoints[47].children[4] = 77;
|
||||||
|
/* 16:54 */waypoints[48] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[48].origin = (810.205, 470.156, -235.235);
|
||||||
|
/* 16:54 */waypoints[48].type = "stand";
|
||||||
|
/* 16:54 */waypoints[48].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[48].children[0] = 47;
|
||||||
|
/* 16:54 */waypoints[48].children[1] = 49;
|
||||||
|
/* 16:54 */waypoints[48].children[2] = 51;
|
||||||
|
/* 16:54 */waypoints[49] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[49].origin = (670.595, 483.038, -238.873);
|
||||||
|
/* 16:54 */waypoints[49].type = "stand";
|
||||||
|
/* 16:54 */waypoints[49].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[49].children[0] = 48;
|
||||||
|
/* 16:54 */waypoints[49].children[1] = 50;
|
||||||
|
/* 16:54 */waypoints[50] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[50].origin = (699.346, 679.754, -235.356);
|
||||||
|
/* 16:54 */waypoints[50].type = "stand";
|
||||||
|
/* 16:54 */waypoints[50].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[50].children[0] = 49;
|
||||||
|
/* 16:54 */waypoints[50].children[1] = 51;
|
||||||
|
/* 16:54 */waypoints[50].children[2] = 69;
|
||||||
|
/* 16:54 */waypoints[51] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[51].origin = (917.154, 612.786, -230.332);
|
||||||
|
/* 16:54 */waypoints[51].type = "stand";
|
||||||
|
/* 16:54 */waypoints[51].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[51].children[0] = 50;
|
||||||
|
/* 16:54 */waypoints[51].children[1] = 48;
|
||||||
|
/* 16:54 */waypoints[51].children[2] = 46;
|
||||||
|
/* 16:54 */waypoints[51].children[3] = 45;
|
||||||
|
/* 16:54 */waypoints[52] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[52].origin = (756.177, 370.807, -111.375);
|
||||||
|
/* 16:54 */waypoints[52].type = "crouch";
|
||||||
|
/* 16:54 */waypoints[52].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[52].children[0] = 46;
|
||||||
|
/* 16:54 */waypoints[52].children[1] = 60;
|
||||||
|
/* 16:54 */waypoints[53] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[53].origin = (749.407, 751.212, -3.875);
|
||||||
|
/* 16:54 */waypoints[53].type = "stand";
|
||||||
|
/* 16:54 */waypoints[53].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[53].children[0] = 54;
|
||||||
|
/* 16:54 */waypoints[53].children[1] = 55;
|
||||||
|
/* 16:54 */waypoints[53].children[2] = 58;
|
||||||
|
/* 16:54 */waypoints[53].children[3] = 60;
|
||||||
|
/* 16:54 */waypoints[54] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[54].origin = (984.233, 755.307, -21.875);
|
||||||
|
/* 16:54 */waypoints[54].type = "stand";
|
||||||
|
/* 16:54 */waypoints[54].childCount = 1;
|
||||||
|
/* 16:54 */waypoints[54].children[0] = 53;
|
||||||
|
/* 16:54 */waypoints[55] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[55].origin = (740.088, 1079.44, -18.6745);
|
||||||
|
/* 16:54 */waypoints[55].type = "stand";
|
||||||
|
/* 16:54 */waypoints[55].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[55].children[0] = 53;
|
||||||
|
/* 16:54 */waypoints[55].children[1] = 56;
|
||||||
|
/* 16:54 */waypoints[56] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[56].origin = (634.294, 1079.43, 3.125);
|
||||||
|
/* 16:54 */waypoints[56].type = "stand";
|
||||||
|
/* 16:54 */waypoints[56].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[56].children[0] = 55;
|
||||||
|
/* 16:54 */waypoints[56].children[1] = 57;
|
||||||
|
/* 16:54 */waypoints[56].children[2] = 25;
|
||||||
|
/* 16:54 */waypoints[57] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[57].origin = (417.706, 1078.19, 2.7189);
|
||||||
|
/* 16:54 */waypoints[57].type = "stand";
|
||||||
|
/* 16:54 */waypoints[57].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[57].children[0] = 56;
|
||||||
|
/* 16:54 */waypoints[57].children[1] = 58;
|
||||||
|
/* 16:54 */waypoints[58] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[58].origin = (426.307, 763.408, 8.01771);
|
||||||
|
/* 16:54 */waypoints[58].type = "stand";
|
||||||
|
/* 16:54 */waypoints[58].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[58].children[0] = 57;
|
||||||
|
/* 16:54 */waypoints[58].children[1] = 59;
|
||||||
|
/* 16:54 */waypoints[58].children[2] = 53;
|
||||||
|
/* 16:54 */waypoints[59] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[59].origin = (175.186, 772.328, -18.2041);
|
||||||
|
/* 16:54 */waypoints[59].type = "stand";
|
||||||
|
/* 16:54 */waypoints[59].childCount = 1;
|
||||||
|
/* 16:54 */waypoints[59].children[0] = 58;
|
||||||
|
/* 16:54 */waypoints[60] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[60].origin = (750.41, 507.034, -111.375);
|
||||||
|
/* 16:54 */waypoints[60].type = "stand";
|
||||||
|
/* 16:54 */waypoints[60].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[60].children[0] = 53;
|
||||||
|
/* 16:54 */waypoints[60].children[1] = 52;
|
||||||
|
/* 16:54 */waypoints[60].children[2] = 66;
|
||||||
|
/* 16:54 */waypoints[61] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[61].origin = (393.99, 488.412, -133.514);
|
||||||
|
/* 16:54 */waypoints[61].type = "stand";
|
||||||
|
/* 16:54 */waypoints[61].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[61].children[0] = 62;
|
||||||
|
/* 16:54 */waypoints[61].children[1] = 66;
|
||||||
|
/* 16:54 */waypoints[62] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[62].origin = (360.295, 488.366, -133.875);
|
||||||
|
/* 16:54 */waypoints[62].type = "climb";
|
||||||
|
/* 16:54 */waypoints[62].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[62].children[0] = 61;
|
||||||
|
/* 16:54 */waypoints[62].children[1] = 63;
|
||||||
|
/* 16:54 */waypoints[62].angles = (-0.0891113, -1.71936, 0);
|
||||||
|
/* 16:54 */waypoints[63] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[63].origin = (316.403, 491.408, -238.022);
|
||||||
|
/* 16:54 */waypoints[63].type = "climb";
|
||||||
|
/* 16:54 */waypoints[63].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[63].children[0] = 62;
|
||||||
|
/* 16:54 */waypoints[63].children[1] = 64;
|
||||||
|
/* 16:54 */waypoints[63].angles = (-0.380249, 1.52161, 0);
|
||||||
|
/* 16:54 */waypoints[64] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[64].origin = (293.378, 491.397, -237.515);
|
||||||
|
/* 16:54 */waypoints[64].type = "stand";
|
||||||
|
/* 16:54 */waypoints[64].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[64].children[0] = 63;
|
||||||
|
/* 16:54 */waypoints[64].children[1] = 65;
|
||||||
|
/* 16:54 */waypoints[64].children[2] = 77;
|
||||||
|
/* 16:54 */waypoints[64].children[3] = 78;
|
||||||
|
/* 16:54 */waypoints[65] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[65].origin = (288.759, 654.862, -239.875);
|
||||||
|
/* 16:54 */waypoints[65].type = "stand";
|
||||||
|
/* 16:54 */waypoints[65].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[65].children[0] = 64;
|
||||||
|
/* 16:54 */waypoints[65].children[1] = 69;
|
||||||
|
/* 16:54 */waypoints[65].children[2] = 78;
|
||||||
|
/* 16:54 */waypoints[66] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[66].origin = (587.735, 492.858, -123.418);
|
||||||
|
/* 16:54 */waypoints[66].type = "stand";
|
||||||
|
/* 16:54 */waypoints[66].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[66].children[0] = 61;
|
||||||
|
/* 16:54 */waypoints[66].children[1] = 60;
|
||||||
|
/* 16:54 */waypoints[66].children[2] = 67;
|
||||||
|
/* 16:54 */waypoints[67] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[67].origin = (582.372, 604.951, -159.875);
|
||||||
|
/* 16:54 */waypoints[67].type = "climb";
|
||||||
|
/* 16:54 */waypoints[67].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[67].children[0] = 66;
|
||||||
|
/* 16:54 */waypoints[67].children[1] = 68;
|
||||||
|
/* 16:54 */waypoints[67].angles = (-5.05493, -93.2135, 0);
|
||||||
|
/* 16:54 */waypoints[68] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[68].origin = (580, 641.39, -229.082);
|
||||||
|
/* 16:54 */waypoints[68].type = "climb";
|
||||||
|
/* 16:54 */waypoints[68].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[68].children[0] = 67;
|
||||||
|
/* 16:54 */waypoints[68].children[1] = 69;
|
||||||
|
/* 16:54 */waypoints[68].angles = (7.28821, -92.5433, 0);
|
||||||
|
/* 16:54 */waypoints[69] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[69].origin = (580.009, 654.062, -229.767);
|
||||||
|
/* 16:54 */waypoints[69].type = "stand";
|
||||||
|
/* 16:54 */waypoints[69].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[69].children[0] = 68;
|
||||||
|
/* 16:54 */waypoints[69].children[1] = 50;
|
||||||
|
/* 16:54 */waypoints[69].children[2] = 65;
|
||||||
|
/* 16:54 */waypoints[70] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[70].origin = (1088.15, 1071.72, -240.616);
|
||||||
|
/* 16:54 */waypoints[70].type = "stand";
|
||||||
|
/* 16:54 */waypoints[70].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[70].children[0] = 45;
|
||||||
|
/* 16:54 */waypoints[70].children[1] = 71;
|
||||||
|
/* 16:54 */waypoints[70].children[2] = 73;
|
||||||
|
/* 16:54 */waypoints[70].children[3] = 108;
|
||||||
|
/* 16:54 */waypoints[71] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[71].origin = (713.207, 980.233, -204.174);
|
||||||
|
/* 16:54 */waypoints[71].type = "stand";
|
||||||
|
/* 16:54 */waypoints[71].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[71].children[0] = 70;
|
||||||
|
/* 16:54 */waypoints[71].children[1] = 72;
|
||||||
|
/* 16:54 */waypoints[72] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[72].origin = (708.135, 1188.68, -219.263);
|
||||||
|
/* 16:54 */waypoints[72].type = "stand";
|
||||||
|
/* 16:54 */waypoints[72].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[72].children[0] = 71;
|
||||||
|
/* 16:54 */waypoints[72].children[1] = 73;
|
||||||
|
/* 16:54 */waypoints[72].children[2] = 92;
|
||||||
|
/* 16:54 */waypoints[73] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[73].origin = (855.626, 1265.15, -234.027);
|
||||||
|
/* 16:54 */waypoints[73].type = "stand";
|
||||||
|
/* 16:54 */waypoints[73].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[73].children[0] = 72;
|
||||||
|
/* 16:54 */waypoints[73].children[1] = 70;
|
||||||
|
/* 16:54 */waypoints[73].children[2] = 74;
|
||||||
|
/* 16:54 */waypoints[74] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[74].origin = (844.961, 1521.12, -241.81);
|
||||||
|
/* 16:54 */waypoints[74].type = "stand";
|
||||||
|
/* 16:54 */waypoints[74].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[74].children[0] = 73;
|
||||||
|
/* 16:54 */waypoints[74].children[1] = 75;
|
||||||
|
/* 16:54 */waypoints[74].children[2] = 110;
|
||||||
|
/* 16:54 */waypoints[75] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[75].origin = (867.965, 1776.65, -231.965);
|
||||||
|
/* 16:54 */waypoints[75].type = "stand";
|
||||||
|
/* 16:54 */waypoints[75].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[75].children[0] = 74;
|
||||||
|
/* 16:54 */waypoints[75].children[1] = 76;
|
||||||
|
/* 16:54 */waypoints[75].children[2] = 111;
|
||||||
|
/* 16:54 */waypoints[76] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[76].origin = (1324.54, 1775.42, -219.466);
|
||||||
|
/* 16:54 */waypoints[76].type = "stand";
|
||||||
|
/* 16:54 */waypoints[76].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[76].children[0] = 75;
|
||||||
|
/* 16:54 */waypoints[76].children[1] = 27;
|
||||||
|
/* 16:54 */waypoints[76].children[2] = 29;
|
||||||
|
/* 16:54 */waypoints[77] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[77].origin = (291.364, 231.233, -239.875);
|
||||||
|
/* 16:54 */waypoints[77].type = "stand";
|
||||||
|
/* 16:54 */waypoints[77].childCount = 5;
|
||||||
|
/* 16:54 */waypoints[77].children[0] = 47;
|
||||||
|
/* 16:54 */waypoints[77].children[1] = 64;
|
||||||
|
/* 16:54 */waypoints[77].children[2] = 11;
|
||||||
|
/* 16:54 */waypoints[77].children[3] = 78;
|
||||||
|
/* 16:54 */waypoints[77].children[4] = 12;
|
||||||
|
/* 16:54 */waypoints[78] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[78].origin = (-26.5828, 545.816, -238.699);
|
||||||
|
/* 16:54 */waypoints[78].type = "stand";
|
||||||
|
/* 16:54 */waypoints[78].childCount = 5;
|
||||||
|
/* 16:54 */waypoints[78].children[0] = 64;
|
||||||
|
/* 16:54 */waypoints[78].children[1] = 13;
|
||||||
|
/* 16:54 */waypoints[78].children[2] = 80;
|
||||||
|
/* 16:54 */waypoints[78].children[3] = 65;
|
||||||
|
/* 16:54 */waypoints[78].children[4] = 77;
|
||||||
|
/* 16:54 */waypoints[79] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[79].origin = (-394.344, 743.624, -237.474);
|
||||||
|
/* 16:54 */waypoints[79].type = "stand";
|
||||||
|
/* 16:54 */waypoints[79].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[79].children[0] = 13;
|
||||||
|
/* 16:54 */waypoints[79].children[1] = 80;
|
||||||
|
/* 16:54 */waypoints[80] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[80].origin = (-81.6225, 792.062, -246.71);
|
||||||
|
/* 16:54 */waypoints[80].type = "stand";
|
||||||
|
/* 16:54 */waypoints[80].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[80].children[0] = 79;
|
||||||
|
/* 16:54 */waypoints[80].children[1] = 78;
|
||||||
|
/* 16:54 */waypoints[80].children[2] = 93;
|
||||||
|
/* 16:54 */waypoints[80].children[3] = 94;
|
||||||
|
/* 16:54 */waypoints[81] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[81].origin = (-110.924, 1613.39, -129.192);
|
||||||
|
/* 16:54 */waypoints[81].type = "stand";
|
||||||
|
/* 16:54 */waypoints[81].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[81].children[0] = 22;
|
||||||
|
/* 16:54 */waypoints[81].children[1] = 82;
|
||||||
|
/* 16:54 */waypoints[81].children[2] = 84;
|
||||||
|
/* 16:54 */waypoints[82] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[82].origin = (-5.88204, 1521.12, -127.188);
|
||||||
|
/* 16:54 */waypoints[82].type = "stand";
|
||||||
|
/* 16:54 */waypoints[82].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[82].children[0] = 81;
|
||||||
|
/* 16:54 */waypoints[82].children[1] = 83;
|
||||||
|
/* 16:54 */waypoints[83] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[83].origin = (-107.482, 1420.18, -127.946);
|
||||||
|
/* 16:54 */waypoints[83].type = "stand";
|
||||||
|
/* 16:54 */waypoints[83].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[83].children[0] = 82;
|
||||||
|
/* 16:54 */waypoints[83].children[1] = 84;
|
||||||
|
/* 16:54 */waypoints[84] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[84].origin = (-191.948, 1536.31, -129.072);
|
||||||
|
/* 16:54 */waypoints[84].type = "stand";
|
||||||
|
/* 16:54 */waypoints[84].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[84].children[0] = 83;
|
||||||
|
/* 16:54 */waypoints[84].children[1] = 81;
|
||||||
|
/* 16:54 */waypoints[84].children[2] = 85;
|
||||||
|
/* 16:54 */waypoints[85] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[85].origin = (-246.907, 1522.87, -129.85);
|
||||||
|
/* 16:54 */waypoints[85].type = "climb";
|
||||||
|
/* 16:54 */waypoints[85].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[85].children[0] = 84;
|
||||||
|
/* 16:54 */waypoints[85].children[1] = 86;
|
||||||
|
/* 16:54 */waypoints[85].angles = (5.85449, 6.32263, 0);
|
||||||
|
/* 16:54 */waypoints[86] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[86].origin = (-318.098, 1495.13, -235.992);
|
||||||
|
/* 16:54 */waypoints[86].type = "climb";
|
||||||
|
/* 16:54 */waypoints[86].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[86].children[0] = 85;
|
||||||
|
/* 16:54 */waypoints[86].children[1] = 87;
|
||||||
|
/* 16:54 */waypoints[86].angles = (-2.81372, 8.34412, 0);
|
||||||
|
/* 16:54 */waypoints[87] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[87].origin = (-326.789, 1495.11, -235.979);
|
||||||
|
/* 16:54 */waypoints[87].type = "stand";
|
||||||
|
/* 16:54 */waypoints[87].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[87].children[0] = 86;
|
||||||
|
/* 16:54 */waypoints[87].children[1] = 88;
|
||||||
|
/* 16:54 */waypoints[87].children[2] = 94;
|
||||||
|
/* 16:54 */waypoints[87].children[3] = 97;
|
||||||
|
/* 16:54 */waypoints[88] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[88].origin = (-309.637, 1756.92, -239.386);
|
||||||
|
/* 16:54 */waypoints[88].type = "stand";
|
||||||
|
/* 16:54 */waypoints[88].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[88].children[0] = 87;
|
||||||
|
/* 16:54 */waypoints[88].children[1] = 89;
|
||||||
|
/* 16:54 */waypoints[89] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[89].origin = (146.179, 1751.09, -234.287);
|
||||||
|
/* 16:54 */waypoints[89].type = "stand";
|
||||||
|
/* 16:54 */waypoints[89].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[89].children[0] = 88;
|
||||||
|
/* 16:54 */waypoints[89].children[1] = 90;
|
||||||
|
/* 16:54 */waypoints[90] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[90].origin = (183.514, 1535.33, -223.194);
|
||||||
|
/* 16:54 */waypoints[90].type = "stand";
|
||||||
|
/* 16:54 */waypoints[90].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[90].children[0] = 89;
|
||||||
|
/* 16:54 */waypoints[90].children[1] = 91;
|
||||||
|
/* 16:54 */waypoints[90].children[2] = 110;
|
||||||
|
/* 16:54 */waypoints[91] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[91].origin = (214.313, 1293.15, -230.376);
|
||||||
|
/* 16:54 */waypoints[91].type = "stand";
|
||||||
|
/* 16:54 */waypoints[91].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[91].children[0] = 90;
|
||||||
|
/* 16:54 */waypoints[91].children[1] = 96;
|
||||||
|
/* 16:54 */waypoints[91].children[2] = 93;
|
||||||
|
/* 16:54 */waypoints[91].children[3] = 112;
|
||||||
|
/* 16:54 */waypoints[92] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[92].origin = (584.236, 1185.72, -215.174);
|
||||||
|
/* 16:54 */waypoints[92].type = "stand";
|
||||||
|
/* 16:54 */waypoints[92].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[92].children[0] = 72;
|
||||||
|
/* 16:54 */waypoints[92].children[1] = 109;
|
||||||
|
/* 16:54 */waypoints[92].children[2] = 112;
|
||||||
|
/* 16:54 */waypoints[93] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[93].origin = (211.979, 1000.62, -240.1);
|
||||||
|
/* 16:54 */waypoints[93].type = "stand";
|
||||||
|
/* 16:54 */waypoints[93].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[93].children[0] = 80;
|
||||||
|
/* 16:54 */waypoints[93].children[1] = 91;
|
||||||
|
/* 16:54 */waypoints[93].children[2] = 94;
|
||||||
|
/* 16:54 */waypoints[93].children[3] = 109;
|
||||||
|
/* 16:54 */waypoints[94] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[94].origin = (-205.525, 1126.52, -236.195);
|
||||||
|
/* 16:54 */waypoints[94].type = "stand";
|
||||||
|
/* 16:54 */waypoints[94].childCount = 5;
|
||||||
|
/* 16:54 */waypoints[94].children[0] = 80;
|
||||||
|
/* 16:54 */waypoints[94].children[1] = 95;
|
||||||
|
/* 16:54 */waypoints[94].children[2] = 87;
|
||||||
|
/* 16:54 */waypoints[94].children[3] = 96;
|
||||||
|
/* 16:54 */waypoints[94].children[4] = 93;
|
||||||
|
/* 16:54 */waypoints[95] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[95].origin = (-671.191, 1147.66, -233.875);
|
||||||
|
/* 16:54 */waypoints[95].type = "stand";
|
||||||
|
/* 16:54 */waypoints[95].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[95].children[0] = 94;
|
||||||
|
/* 16:54 */waypoints[95].children[1] = 98;
|
||||||
|
/* 16:54 */waypoints[96] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[96].origin = (-126.961, 1303.12, -230.419);
|
||||||
|
/* 16:54 */waypoints[96].type = "stand";
|
||||||
|
/* 16:54 */waypoints[96].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[96].children[0] = 94;
|
||||||
|
/* 16:54 */waypoints[96].children[1] = 91;
|
||||||
|
/* 16:54 */waypoints[97] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[97].origin = (-635.831, 1633.13, -237.757);
|
||||||
|
/* 16:54 */waypoints[97].type = "stand";
|
||||||
|
/* 16:54 */waypoints[97].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[97].children[0] = 87;
|
||||||
|
/* 16:54 */waypoints[97].children[1] = 98;
|
||||||
|
/* 16:54 */waypoints[97].children[2] = 100;
|
||||||
|
/* 16:54 */waypoints[98] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[98].origin = (-755.12, 1316.25, -234.727);
|
||||||
|
/* 16:54 */waypoints[98].type = "stand";
|
||||||
|
/* 16:54 */waypoints[98].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[98].children[0] = 97;
|
||||||
|
/* 16:54 */waypoints[98].children[1] = 95;
|
||||||
|
/* 16:54 */waypoints[98].children[2] = 99;
|
||||||
|
/* 16:54 */waypoints[98].children[3] = 101;
|
||||||
|
/* 16:54 */waypoints[99] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[99].origin = (-1156.93, 1342.89, -234.709);
|
||||||
|
/* 16:54 */waypoints[99].type = "stand";
|
||||||
|
/* 16:54 */waypoints[99].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[99].children[0] = 98;
|
||||||
|
/* 16:54 */waypoints[99].children[1] = 18;
|
||||||
|
/* 16:54 */waypoints[99].children[2] = 100;
|
||||||
|
/* 16:54 */waypoints[100] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[100].origin = (-1075.3, 1666.44, -229.389);
|
||||||
|
/* 16:54 */waypoints[100].type = "stand";
|
||||||
|
/* 16:54 */waypoints[100].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[100].children[0] = 99;
|
||||||
|
/* 16:54 */waypoints[100].children[1] = 20;
|
||||||
|
/* 16:54 */waypoints[100].children[2] = 97;
|
||||||
|
/* 16:54 */waypoints[100].children[3] = 19;
|
||||||
|
/* 16:54 */waypoints[101] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[101].origin = (-795.956, 911.921, -233.875);
|
||||||
|
/* 16:54 */waypoints[101].type = "stand";
|
||||||
|
/* 16:54 */waypoints[101].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[101].children[0] = 16;
|
||||||
|
/* 16:54 */waypoints[101].children[1] = 98;
|
||||||
|
/* 16:54 */waypoints[101].children[2] = 15;
|
||||||
|
/* 16:54 */waypoints[102] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[102].origin = (-1013.13, 561.238, -211.875);
|
||||||
|
/* 16:54 */waypoints[102].type = "stand";
|
||||||
|
/* 16:54 */waypoints[102].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[102].children[0] = 15;
|
||||||
|
/* 16:54 */waypoints[102].children[1] = 103;
|
||||||
|
/* 16:54 */waypoints[103] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[103].origin = (-910.605, 287.081, -211.875);
|
||||||
|
/* 16:54 */waypoints[103].type = "stand";
|
||||||
|
/* 16:54 */waypoints[103].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[103].children[0] = 102;
|
||||||
|
/* 16:54 */waypoints[103].children[1] = 14;
|
||||||
|
/* 16:54 */waypoints[104] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[104].origin = (1239.12, 1282.77, -113.875);
|
||||||
|
/* 16:54 */waypoints[104].type = "stand";
|
||||||
|
/* 16:54 */waypoints[104].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[104].children[0] = 26;
|
||||||
|
/* 16:54 */waypoints[104].children[1] = 105;
|
||||||
|
/* 16:54 */waypoints[105] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[105].origin = (1261.94, 1227.8, -99.875);
|
||||||
|
/* 16:54 */waypoints[105].type = "climb";
|
||||||
|
/* 16:54 */waypoints[105].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[105].children[0] = 104;
|
||||||
|
/* 16:54 */waypoints[105].children[1] = 106;
|
||||||
|
/* 16:54 */waypoints[105].angles = (1.58081, 92.9883, 0);
|
||||||
|
/* 16:54 */waypoints[106] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[106].origin = (1263.66, 1123.1, -155.875);
|
||||||
|
/* 16:54 */waypoints[106].type = "climb";
|
||||||
|
/* 16:54 */waypoints[106].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[106].children[0] = 105;
|
||||||
|
/* 16:54 */waypoints[106].children[1] = 107;
|
||||||
|
/* 16:54 */waypoints[106].angles = (-2.65991, 90.5878, 0);
|
||||||
|
/* 16:54 */waypoints[107] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[107].origin = (1263.16, 1118.87, -221.722);
|
||||||
|
/* 16:54 */waypoints[107].type = "climb";
|
||||||
|
/* 16:54 */waypoints[107].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[107].children[0] = 106;
|
||||||
|
/* 16:54 */waypoints[107].children[1] = 108;
|
||||||
|
/* 16:54 */waypoints[107].angles = (16.4343, 91.0272, 0);
|
||||||
|
/* 16:54 */waypoints[108] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[108].origin = (1275.58, 1093.73, -223.175);
|
||||||
|
/* 16:54 */waypoints[108].type = "stand";
|
||||||
|
/* 16:54 */waypoints[108].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[108].children[0] = 107;
|
||||||
|
/* 16:54 */waypoints[108].children[1] = 41;
|
||||||
|
/* 16:54 */waypoints[108].children[2] = 70;
|
||||||
|
/* 16:54 */waypoints[109] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[109].origin = (565.796, 1039.69, -206.524);
|
||||||
|
/* 16:54 */waypoints[109].type = "stand";
|
||||||
|
/* 16:54 */waypoints[109].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[109].children[0] = 92;
|
||||||
|
/* 16:54 */waypoints[109].children[1] = 93;
|
||||||
|
/* 16:54 */waypoints[110] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[110].origin = (424.135, 1547.05, -233.992);
|
||||||
|
/* 16:54 */waypoints[110].type = "stand";
|
||||||
|
/* 16:54 */waypoints[110].childCount = 4;
|
||||||
|
/* 16:54 */waypoints[110].children[0] = 90;
|
||||||
|
/* 16:54 */waypoints[110].children[1] = 74;
|
||||||
|
/* 16:54 */waypoints[110].children[2] = 111;
|
||||||
|
/* 16:54 */waypoints[110].children[3] = 112;
|
||||||
|
/* 16:54 */waypoints[111] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[111].origin = (469.979, 1753.03, -231.631);
|
||||||
|
/* 16:54 */waypoints[111].type = "stand";
|
||||||
|
/* 16:54 */waypoints[111].childCount = 2;
|
||||||
|
/* 16:54 */waypoints[111].children[0] = 75;
|
||||||
|
/* 16:54 */waypoints[111].children[1] = 110;
|
||||||
|
/* 16:54 */waypoints[112] = spawnstruct();
|
||||||
|
/* 16:54 */waypoints[112].origin = (438.492, 1205.8, -234.232);
|
||||||
|
/* 16:54 */waypoints[112].type = "stand";
|
||||||
|
/* 16:54 */waypoints[112].childCount = 3;
|
||||||
|
/* 16:54 */waypoints[112].children[0] = 110;
|
||||||
|
/* 16:54 */waypoints[112].children[1] = 92;
|
||||||
|
/* 16:54 */waypoints[112].children[2] = 91;
|
||||||
|
/* 16:54 */return waypoints;
|
||||||
|
}
|
1645
mods/bots/maps/mp/bots/waypoints/salvage.gsc
Normal file
1645
mods/bots/maps/mp/bots/waypoints/salvage.gsc
Normal file
File diff suppressed because it is too large
Load Diff
870
mods/bots/maps/mp/bots/waypoints/scrapyard.gsc
Normal file
870
mods/bots/maps/mp/bots/waypoints/scrapyard.gsc
Normal file
@ -0,0 +1,870 @@
|
|||||||
|
Scrapyard()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
/* 1:58 */waypoints[0] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[0].origin =(-1602, 1436, -142.728);
|
||||||
|
/* 9:13 */waypoints[0].type = "stand";
|
||||||
|
/* 9:13 */waypoints[0].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[0].children[0] = 1;
|
||||||
|
/* 9:13 */waypoints[0].children[1] = 45;
|
||||||
|
/* 9:13 */waypoints[1] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[1].origin =(-1189.48, 1540.37, -140.532);
|
||||||
|
/* 9:13 */waypoints[1].type = "stand";
|
||||||
|
/* 9:13 */waypoints[1].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[1].children[0] = 0;
|
||||||
|
/* 9:13 */waypoints[1].children[1] = 2;
|
||||||
|
/* 9:13 */waypoints[2] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[2].origin =(-838.592, 1549.15, -140.758);
|
||||||
|
/* 9:13 */waypoints[2].type = "stand";
|
||||||
|
/* 9:13 */waypoints[2].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[2].children[0] = 1;
|
||||||
|
/* 9:13 */waypoints[2].children[1] = 3;
|
||||||
|
/* 9:13 */waypoints[3] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[3].origin =(-475.163, 1420.65, -82.5541);
|
||||||
|
/* 9:13 */waypoints[3].type = "stand";
|
||||||
|
/* 9:13 */waypoints[3].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[3].children[0] = 2;
|
||||||
|
/* 9:13 */waypoints[3].children[1] = 4;
|
||||||
|
/* 9:13 */waypoints[3].children[2] = 9;
|
||||||
|
/* 9:13 */waypoints[3].children[3] = 43;
|
||||||
|
/* 9:13 */waypoints[4] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[4].origin =(-474.49, 1148.94, -81.6161);
|
||||||
|
/* 9:13 */waypoints[4].type = "stand";
|
||||||
|
/* 9:13 */waypoints[4].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[4].children[0] = 3;
|
||||||
|
/* 9:13 */waypoints[4].children[1] = 5;
|
||||||
|
/* 9:13 */waypoints[5] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[5].origin =(1.7197, 1138.06, -70.9783);
|
||||||
|
/* 9:13 */waypoints[5].type = "stand";
|
||||||
|
/* 9:13 */waypoints[5].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[5].children[0] = 4;
|
||||||
|
/* 9:13 */waypoints[5].children[1] = 6;
|
||||||
|
/* 9:13 */waypoints[6] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[6].origin =(320.282, 1139.66, -71.875);
|
||||||
|
/* 9:13 */waypoints[6].type = "stand";
|
||||||
|
/* 9:13 */waypoints[6].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[6].children[0] = 5;
|
||||||
|
/* 9:13 */waypoints[6].children[1] = 7;
|
||||||
|
/* 9:13 */waypoints[6].children[2] = 8;
|
||||||
|
/* 9:13 */waypoints[7] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[7].origin =(471.149, 1131.97, -71.875);
|
||||||
|
/* 9:13 */waypoints[7].type = "stand";
|
||||||
|
/* 9:13 */waypoints[7].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[7].children[0] = 6;
|
||||||
|
/* 9:13 */waypoints[7].children[1] = 37;
|
||||||
|
/* 9:13 */waypoints[8] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[8].origin =(328.996, 1375.58, -71.875);
|
||||||
|
/* 9:13 */waypoints[8].type = "stand";
|
||||||
|
/* 9:13 */waypoints[8].childCount = 5;
|
||||||
|
/* 9:13 */waypoints[8].children[0] = 6;
|
||||||
|
/* 9:13 */waypoints[8].children[1] = 9;
|
||||||
|
/* 9:13 */waypoints[8].children[2] = 10;
|
||||||
|
/* 9:13 */waypoints[8].children[3] = 14;
|
||||||
|
/* 9:13 */waypoints[8].children[4] = 98;
|
||||||
|
/* 9:13 */waypoints[9] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[9].origin =(-98.1031, 1423.69, -71.875);
|
||||||
|
/* 9:13 */waypoints[9].type = "stand";
|
||||||
|
/* 9:13 */waypoints[9].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[9].children[0] = 8;
|
||||||
|
/* 9:13 */waypoints[9].children[1] = 3;
|
||||||
|
/* 9:13 */waypoints[9].children[2] = 104;
|
||||||
|
/* 9:13 */waypoints[10] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[10].origin =(635.512, 1219.34, -119.875);
|
||||||
|
/* 9:13 */waypoints[10].type = "stand";
|
||||||
|
/* 9:13 */waypoints[10].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[10].children[0] = 8;
|
||||||
|
/* 9:13 */waypoints[10].children[1] = 11;
|
||||||
|
/* 9:13 */waypoints[10].children[2] = 36;
|
||||||
|
/* 9:13 */waypoints[11] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[11].origin =(842.891, 1233.12, -71.875);
|
||||||
|
/* 9:13 */waypoints[11].type = "stand";
|
||||||
|
/* 9:13 */waypoints[11].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[11].children[0] = 10;
|
||||||
|
/* 9:13 */waypoints[11].children[1] = 12;
|
||||||
|
/* 9:13 */waypoints[12] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[12].origin =(857.962, 1635.15, -71.875);
|
||||||
|
/* 9:13 */waypoints[12].type = "stand";
|
||||||
|
/* 9:13 */waypoints[12].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[12].children[0] = 11;
|
||||||
|
/* 9:13 */waypoints[12].children[1] = 13;
|
||||||
|
/* 9:13 */waypoints[12].children[2] = 15;
|
||||||
|
/* 9:13 */waypoints[13] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[13].origin =(706.497, 1551.23, -71.875);
|
||||||
|
/* 9:13 */waypoints[13].type = "stand";
|
||||||
|
/* 9:13 */waypoints[13].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[13].children[0] = 12;
|
||||||
|
/* 9:13 */waypoints[13].children[1] = 14;
|
||||||
|
/* 9:13 */waypoints[14] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[14].origin =(376.865, 1505.26, -71.875);
|
||||||
|
/* 9:13 */waypoints[14].type = "stand";
|
||||||
|
/* 9:13 */waypoints[14].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[14].children[0] = 13;
|
||||||
|
/* 9:13 */waypoints[14].children[1] = 8;
|
||||||
|
/* 9:13 */waypoints[15] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[15].origin =(1186.59, 1567.96, -73.4892);
|
||||||
|
/* 9:13 */waypoints[15].type = "stand";
|
||||||
|
/* 9:13 */waypoints[15].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[15].children[0] = 12;
|
||||||
|
/* 9:13 */waypoints[15].children[1] = 16;
|
||||||
|
/* 9:13 */waypoints[15].children[2] = 35;
|
||||||
|
/* 9:13 */waypoints[16] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[16].origin =(1764.55, 1505.55, -81.5711);
|
||||||
|
/* 9:13 */waypoints[16].type = "stand";
|
||||||
|
/* 9:13 */waypoints[16].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[16].children[0] = 15;
|
||||||
|
/* 9:13 */waypoints[16].children[1] = 17;
|
||||||
|
/* 9:13 */waypoints[17] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[17].origin =(1789.57, 916.273, -149.625);
|
||||||
|
/* 9:13 */waypoints[17].type = "stand";
|
||||||
|
/* 9:13 */waypoints[17].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[17].children[0] = 16;
|
||||||
|
/* 9:13 */waypoints[17].children[1] = 18;
|
||||||
|
/* 9:13 */waypoints[17].children[2] = 33;
|
||||||
|
/* 9:13 */waypoints[18] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[18].origin =(1842.53, 663.125, -151.875);
|
||||||
|
/* 9:13 */waypoints[18].type = "stand";
|
||||||
|
/* 9:13 */waypoints[18].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[18].children[0] = 17;
|
||||||
|
/* 9:13 */waypoints[18].children[1] = 19;
|
||||||
|
/* 9:13 */waypoints[19] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[19].origin =(2322.31, 624.038, -151.875);
|
||||||
|
/* 9:13 */waypoints[19].type = "stand";
|
||||||
|
/* 9:13 */waypoints[19].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[19].children[0] = 18;
|
||||||
|
/* 9:13 */waypoints[19].children[1] = 20;
|
||||||
|
/* 9:13 */waypoints[19].children[2] = 25;
|
||||||
|
/* 9:13 */waypoints[20] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[20].origin =(2310.91, 752.838, -151.875);
|
||||||
|
/* 9:13 */waypoints[20].type = "stand";
|
||||||
|
/* 9:13 */waypoints[20].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[20].children[0] = 19;
|
||||||
|
/* 9:13 */waypoints[20].children[1] = 21;
|
||||||
|
/* 9:13 */waypoints[21] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[21].origin =(2015.18, 735.306, -17.875);
|
||||||
|
/* 9:13 */waypoints[21].type = "stand";
|
||||||
|
/* 9:13 */waypoints[21].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[21].children[0] = 20;
|
||||||
|
/* 9:13 */waypoints[21].children[1] = 22;
|
||||||
|
/* 9:13 */waypoints[21].children[2] = 24;
|
||||||
|
/* 9:13 */waypoints[22] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[22].origin =(2026.71, 345.598, -17.875);
|
||||||
|
/* 9:13 */waypoints[22].type = "stand";
|
||||||
|
/* 9:13 */waypoints[22].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[22].children[0] = 21;
|
||||||
|
/* 9:13 */waypoints[22].children[1] = 23;
|
||||||
|
/* 9:13 */waypoints[23] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[23].origin =(2277.68, 352.407, -17.875);
|
||||||
|
/* 9:13 */waypoints[23].type = "stand";
|
||||||
|
/* 9:13 */waypoints[23].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[23].children[0] = 22;
|
||||||
|
/* 9:13 */waypoints[24] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[24].origin =(1768.93, 648.556, -17.875);
|
||||||
|
/* 9:13 */waypoints[24].type = "stand";
|
||||||
|
/* 9:13 */waypoints[24].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[24].children[0] = 21;
|
||||||
|
/* 9:13 */waypoints[25] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[25].origin =(2091.63, 335.371, -151.875);
|
||||||
|
/* 9:13 */waypoints[25].type = "stand";
|
||||||
|
/* 9:13 */waypoints[25].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[25].children[0] = 19;
|
||||||
|
/* 9:13 */waypoints[25].children[1] = 31;
|
||||||
|
/* 9:13 */waypoints[25].children[2] = 118;
|
||||||
|
/* 9:13 */waypoints[26] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[26].origin =(2095.13, -186.302, -195.911);
|
||||||
|
/* 9:13 */waypoints[26].type = "stand";
|
||||||
|
/* 9:13 */waypoints[26].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[26].children[0] = 27;
|
||||||
|
/* 9:13 */waypoints[26].children[1] = 121;
|
||||||
|
/* 9:13 */waypoints[26].children[2] = 122;
|
||||||
|
/* 9:13 */waypoints[27] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[27].origin =(1882.31, -176.857, -194.478);
|
||||||
|
/* 9:13 */waypoints[27].type = "stand";
|
||||||
|
/* 9:13 */waypoints[27].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[27].children[0] = 26;
|
||||||
|
/* 9:13 */waypoints[27].children[1] = 28;
|
||||||
|
/* 9:13 */waypoints[27].children[2] = 29;
|
||||||
|
/* 9:13 */waypoints[27].children[3] = 92;
|
||||||
|
/* 9:13 */waypoints[28] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[28].origin =(1921.53, -560.936, -176.501);
|
||||||
|
/* 9:13 */waypoints[28].type = "stand";
|
||||||
|
/* 9:13 */waypoints[28].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[28].children[0] = 27;
|
||||||
|
/* 9:13 */waypoints[28].children[1] = 95;
|
||||||
|
/* 9:13 */waypoints[29] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[29].origin =(1716.45, 217.444, -200.123);
|
||||||
|
/* 9:13 */waypoints[29].type = "stand";
|
||||||
|
/* 9:13 */waypoints[29].childCount = 5;
|
||||||
|
/* 9:13 */waypoints[29].children[0] = 27;
|
||||||
|
/* 9:13 */waypoints[29].children[1] = 30;
|
||||||
|
/* 9:13 */waypoints[29].children[2] = 32;
|
||||||
|
/* 9:13 */waypoints[29].children[3] = 86;
|
||||||
|
/* 9:13 */waypoints[29].children[4] = 100;
|
||||||
|
/* 9:13 */waypoints[30] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[30].origin =(1946.21, 216.162, -151.875);
|
||||||
|
/* 9:13 */waypoints[30].type = "stand";
|
||||||
|
/* 9:13 */waypoints[30].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[30].children[0] = 29;
|
||||||
|
/* 9:13 */waypoints[30].children[1] = 31;
|
||||||
|
/* 9:13 */waypoints[31] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[31].origin =(1914.38, 336.926, -151.875);
|
||||||
|
/* 9:13 */waypoints[31].type = "stand";
|
||||||
|
/* 9:13 */waypoints[31].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[31].children[0] = 30;
|
||||||
|
/* 9:13 */waypoints[31].children[1] = 25;
|
||||||
|
/* 9:13 */waypoints[32] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[32].origin =(1590.48, 593.568, -175.342);
|
||||||
|
/* 9:13 */waypoints[32].type = "stand";
|
||||||
|
/* 9:13 */waypoints[32].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[32].children[0] = 29;
|
||||||
|
/* 9:13 */waypoints[32].children[1] = 33;
|
||||||
|
/* 9:13 */waypoints[32].children[2] = 91;
|
||||||
|
/* 9:13 */waypoints[32].children[3] = 87;
|
||||||
|
/* 9:13 */waypoints[33] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[33].origin =(1544.68, 879.233, -127.493);
|
||||||
|
/* 9:13 */waypoints[33].type = "stand";
|
||||||
|
/* 9:13 */waypoints[33].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[33].children[0] = 32;
|
||||||
|
/* 9:13 */waypoints[33].children[1] = 17;
|
||||||
|
/* 9:13 */waypoints[33].children[2] = 34;
|
||||||
|
/* 9:13 */waypoints[34] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[34].origin =(1180.85, 906.882, -127.38);
|
||||||
|
/* 9:13 */waypoints[34].type = "stand";
|
||||||
|
/* 9:13 */waypoints[34].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[34].children[0] = 33;
|
||||||
|
/* 9:13 */waypoints[34].children[1] = 35;
|
||||||
|
/* 9:13 */waypoints[34].children[2] = 36;
|
||||||
|
/* 9:13 */waypoints[35] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[35].origin =(1184.1, 1211.75, -54.6946);
|
||||||
|
/* 9:13 */waypoints[35].type = "stand";
|
||||||
|
/* 9:13 */waypoints[35].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[35].children[0] = 34;
|
||||||
|
/* 9:13 */waypoints[35].children[1] = 15;
|
||||||
|
/* 9:13 */waypoints[36] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[36].origin =(662.28, 907.972, -136.02);
|
||||||
|
/* 9:13 */waypoints[36].type = "stand";
|
||||||
|
/* 9:13 */waypoints[36].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[36].children[0] = 34;
|
||||||
|
/* 9:13 */waypoints[36].children[1] = 10;
|
||||||
|
/* 9:13 */waypoints[36].children[2] = 37;
|
||||||
|
/* 9:13 */waypoints[36].children[3] = 90;
|
||||||
|
/* 9:13 */waypoints[37] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[37].origin =(452.779, 818.663, -136.862);
|
||||||
|
/* 9:13 */waypoints[37].type = "stand";
|
||||||
|
/* 9:13 */waypoints[37].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[37].children[0] = 36;
|
||||||
|
/* 9:13 */waypoints[37].children[1] = 7;
|
||||||
|
/* 9:13 */waypoints[37].children[2] = 38;
|
||||||
|
/* 9:13 */waypoints[37].children[3] = 41;
|
||||||
|
/* 9:13 */waypoints[38] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[38].origin =(-132.388, 807.29, -126.894);
|
||||||
|
/* 9:13 */waypoints[38].type = "stand";
|
||||||
|
/* 9:13 */waypoints[38].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[38].children[0] = 37;
|
||||||
|
/* 9:13 */waypoints[38].children[1] = 39;
|
||||||
|
/* 9:13 */waypoints[39] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[39].origin =(-507.431, 933.453, -136.01);
|
||||||
|
/* 9:13 */waypoints[39].type = "stand";
|
||||||
|
/* 9:13 */waypoints[39].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[39].children[0] = 38;
|
||||||
|
/* 9:13 */waypoints[39].children[1] = 40;
|
||||||
|
/* 9:13 */waypoints[39].children[2] = 42;
|
||||||
|
/* 9:13 */waypoints[40] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[40].origin =(-75.1428, 1029.5, -135.875);
|
||||||
|
/* 9:13 */waypoints[40].type = "stand";
|
||||||
|
/* 9:13 */waypoints[40].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[40].children[0] = 39;
|
||||||
|
/* 9:13 */waypoints[40].children[1] = 41;
|
||||||
|
/* 9:13 */waypoints[41] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[41].origin =(292.354, 1001.69, -135.875);
|
||||||
|
/* 9:13 */waypoints[41].type = "stand";
|
||||||
|
/* 9:13 */waypoints[41].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[41].children[0] = 40;
|
||||||
|
/* 9:13 */waypoints[41].children[1] = 37;
|
||||||
|
/* 9:13 */waypoints[42] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[42].origin =(-872.467, 866.129, -135.886);
|
||||||
|
/* 9:13 */waypoints[42].type = "stand";
|
||||||
|
/* 9:13 */waypoints[42].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[42].children[0] = 39;
|
||||||
|
/* 9:13 */waypoints[42].children[1] = 43;
|
||||||
|
/* 9:13 */waypoints[42].children[2] = 47;
|
||||||
|
/* 9:13 */waypoints[43] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[43].origin =(-840.551, 1212.47, -136.457);
|
||||||
|
/* 9:13 */waypoints[43].type = "stand";
|
||||||
|
/* 9:13 */waypoints[43].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[43].children[0] = 42;
|
||||||
|
/* 9:13 */waypoints[43].children[1] = 3;
|
||||||
|
/* 9:13 */waypoints[43].children[2] = 44;
|
||||||
|
/* 9:13 */waypoints[44] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[44].origin =(-1162.76, 1089.42, -139.69);
|
||||||
|
/* 9:13 */waypoints[44].type = "stand";
|
||||||
|
/* 9:13 */waypoints[44].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[44].children[0] = 43;
|
||||||
|
/* 9:13 */waypoints[44].children[1] = 45;
|
||||||
|
/* 9:13 */waypoints[44].children[2] = 46;
|
||||||
|
/* 9:13 */waypoints[45] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[45].origin =(-1485.67, 1055.61, -129.875);
|
||||||
|
/* 9:13 */waypoints[45].type = "stand";
|
||||||
|
/* 9:13 */waypoints[45].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[45].children[0] = 44;
|
||||||
|
/* 9:13 */waypoints[45].children[1] = 0;
|
||||||
|
/* 9:13 */waypoints[45].children[2] = 48;
|
||||||
|
/* 9:13 */waypoints[46] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[46].origin =(-1158.22, 673.125, -137.875);
|
||||||
|
/* 9:13 */waypoints[46].type = "stand";
|
||||||
|
/* 9:13 */waypoints[46].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[46].children[0] = 44;
|
||||||
|
/* 9:13 */waypoints[46].children[1] = 47;
|
||||||
|
/* 9:13 */waypoints[46].children[2] = 48;
|
||||||
|
/* 9:13 */waypoints[47] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[47].origin =(-798.525, 635.906, -122.076);
|
||||||
|
/* 9:13 */waypoints[47].type = "stand";
|
||||||
|
/* 9:13 */waypoints[47].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[47].children[0] = 42;
|
||||||
|
/* 9:13 */waypoints[47].children[1] = 46;
|
||||||
|
/* 9:13 */waypoints[47].children[2] = 62;
|
||||||
|
/* 9:13 */waypoints[47].children[3] = 106;
|
||||||
|
/* 9:13 */waypoints[48] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[48].origin =(-1486.44, 680.002, -127.875);
|
||||||
|
/* 9:13 */waypoints[48].type = "stand";
|
||||||
|
/* 9:13 */waypoints[48].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[48].children[0] = 46;
|
||||||
|
/* 9:13 */waypoints[48].children[1] = 45;
|
||||||
|
/* 9:13 */waypoints[48].children[2] = 49;
|
||||||
|
/* 9:13 */waypoints[48].children[3] = 107;
|
||||||
|
/* 9:13 */waypoints[49] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[49].origin =(-1585.84, 209.056, -127.875);
|
||||||
|
/* 9:13 */waypoints[49].type = "stand";
|
||||||
|
/* 9:13 */waypoints[49].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[49].children[0] = 48;
|
||||||
|
/* 9:13 */waypoints[49].children[1] = 50;
|
||||||
|
/* 9:13 */waypoints[49].children[2] = 51;
|
||||||
|
/* 9:13 */waypoints[50] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[50].origin =(-1457.84, 195.324, -127.875);
|
||||||
|
/* 9:13 */waypoints[50].type = "stand";
|
||||||
|
/* 9:13 */waypoints[50].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[50].children[0] = 49;
|
||||||
|
/* 9:13 */waypoints[50].children[1] = 54;
|
||||||
|
/* 9:13 */waypoints[51] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[51].origin =(-1601.77, -99.7759, 6.125);
|
||||||
|
/* 9:13 */waypoints[51].type = "stand";
|
||||||
|
/* 9:13 */waypoints[51].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[51].children[0] = 49;
|
||||||
|
/* 9:13 */waypoints[51].children[1] = 52;
|
||||||
|
/* 9:13 */waypoints[52] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[52].origin =(-1330.39, -71.0397, 6.125);
|
||||||
|
/* 9:13 */waypoints[52].type = "stand";
|
||||||
|
/* 9:13 */waypoints[52].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[52].children[0] = 51;
|
||||||
|
/* 9:13 */waypoints[52].children[1] = 53;
|
||||||
|
/* 9:13 */waypoints[53] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[53].origin =(-1336.46, 416.821, 6.125);
|
||||||
|
/* 9:13 */waypoints[53].type = "stand";
|
||||||
|
/* 9:13 */waypoints[53].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[53].children[0] = 52;
|
||||||
|
/* 9:13 */waypoints[54] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[54].origin =(-1464.1, -232.026, -127.875);
|
||||||
|
/* 9:13 */waypoints[54].type = "stand";
|
||||||
|
/* 9:13 */waypoints[54].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[54].children[0] = 50;
|
||||||
|
/* 9:13 */waypoints[54].children[1] = 55;
|
||||||
|
/* 9:13 */waypoints[54].children[2] = 60;
|
||||||
|
/* 9:13 */waypoints[55] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[55].origin =(-1634.92, -432.979, -127.875);
|
||||||
|
/* 9:13 */waypoints[55].type = "stand";
|
||||||
|
/* 9:13 */waypoints[55].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[55].children[0] = 54;
|
||||||
|
/* 9:13 */waypoints[55].children[1] = 56;
|
||||||
|
/* 9:13 */waypoints[56] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[56].origin =(-1228.84, -669.555, -127.875);
|
||||||
|
/* 9:13 */waypoints[56].type = "stand";
|
||||||
|
/* 9:13 */waypoints[56].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[56].children[0] = 55;
|
||||||
|
/* 9:13 */waypoints[56].children[1] = 57;
|
||||||
|
/* 9:13 */waypoints[57] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[57].origin =(-763.557, -710.855, -132.562);
|
||||||
|
/* 9:13 */waypoints[57].type = "stand";
|
||||||
|
/* 9:13 */waypoints[57].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[57].children[0] = 56;
|
||||||
|
/* 9:13 */waypoints[57].children[1] = 58;
|
||||||
|
/* 9:13 */waypoints[57].children[2] = 102;
|
||||||
|
/* 9:13 */waypoints[58] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[58].origin =(-678.781, -389.124, -139.875);
|
||||||
|
/* 9:13 */waypoints[58].type = "stand";
|
||||||
|
/* 9:13 */waypoints[58].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[58].children[0] = 57;
|
||||||
|
/* 9:13 */waypoints[58].children[1] = 59;
|
||||||
|
/* 9:13 */waypoints[58].children[2] = 77;
|
||||||
|
/* 9:13 */waypoints[59] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[59].origin =(-658.257, -128.441, -139.92);
|
||||||
|
/* 9:13 */waypoints[59].type = "stand";
|
||||||
|
/* 9:13 */waypoints[59].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[59].children[0] = 58;
|
||||||
|
/* 9:13 */waypoints[59].children[1] = 60;
|
||||||
|
/* 9:13 */waypoints[59].children[2] = 76;
|
||||||
|
/* 9:13 */waypoints[60] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[60].origin =(-952.672, -109.98, -139.875);
|
||||||
|
/* 9:13 */waypoints[60].type = "stand";
|
||||||
|
/* 9:13 */waypoints[60].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[60].children[0] = 59;
|
||||||
|
/* 9:13 */waypoints[60].children[1] = 54;
|
||||||
|
/* 9:13 */waypoints[60].children[2] = 61;
|
||||||
|
/* 9:13 */waypoints[61] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[61].origin =(-905.728, 107.123, -125.764);
|
||||||
|
/* 9:13 */waypoints[61].type = "stand";
|
||||||
|
/* 9:13 */waypoints[61].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[61].children[0] = 60;
|
||||||
|
/* 9:13 */waypoints[61].children[1] = 62;
|
||||||
|
/* 9:13 */waypoints[61].children[2] = 63;
|
||||||
|
/* 9:13 */waypoints[62] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[62].origin =(-875.829, 414.734, -115.624);
|
||||||
|
/* 9:13 */waypoints[62].type = "stand";
|
||||||
|
/* 9:13 */waypoints[62].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[62].children[0] = 61;
|
||||||
|
/* 9:13 */waypoints[62].children[1] = 47;
|
||||||
|
/* 9:13 */waypoints[62].children[2] = 64;
|
||||||
|
/* 9:13 */waypoints[63] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[63].origin =(-498.772, 101.683, -84.7208);
|
||||||
|
/* 9:13 */waypoints[63].type = "stand";
|
||||||
|
/* 9:13 */waypoints[63].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[63].children[0] = 61;
|
||||||
|
/* 9:13 */waypoints[63].children[1] = 66;
|
||||||
|
/* 9:13 */waypoints[63].children[2] = 115;
|
||||||
|
/* 9:13 */waypoints[64] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[64].origin =(-504.656, 399.463, -124.651);
|
||||||
|
/* 9:13 */waypoints[64].type = "stand";
|
||||||
|
/* 9:13 */waypoints[64].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[64].children[0] = 65;
|
||||||
|
/* 9:13 */waypoints[64].children[1] = 62;
|
||||||
|
/* 9:13 */waypoints[64].children[2] = 72;
|
||||||
|
/* 9:13 */waypoints[64].children[3] = 114;
|
||||||
|
/* 9:13 */waypoints[65] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[65].origin =(-504.696, 651.212, -67.375);
|
||||||
|
/* 9:13 */waypoints[65].type = "stand";
|
||||||
|
/* 9:13 */waypoints[65].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[65].children[0] = 64;
|
||||||
|
/* 9:13 */waypoints[65].children[1] = 71;
|
||||||
|
/* 9:13 */waypoints[65].children[2] = 105;
|
||||||
|
/* 9:13 */waypoints[66] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[66].origin =(31.29, 104.07, -87.4462);
|
||||||
|
/* 9:13 */waypoints[66].type = "stand";
|
||||||
|
/* 9:13 */waypoints[66].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[66].children[0] = 63;
|
||||||
|
/* 9:13 */waypoints[66].children[1] = 67;
|
||||||
|
/* 9:13 */waypoints[67] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[67].origin =(427.144, 107.489, -112.853);
|
||||||
|
/* 9:13 */waypoints[67].type = "stand";
|
||||||
|
/* 9:13 */waypoints[67].childCount = 5;
|
||||||
|
/* 9:13 */waypoints[67].children[0] = 66;
|
||||||
|
/* 9:13 */waypoints[67].children[1] = 68;
|
||||||
|
/* 9:13 */waypoints[67].children[2] = 72;
|
||||||
|
/* 9:13 */waypoints[67].children[3] = 73;
|
||||||
|
/* 9:13 */waypoints[67].children[4] = 74;
|
||||||
|
/* 9:13 */waypoints[68] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[68].origin =(411.628, 429.725, -69.375);
|
||||||
|
/* 9:13 */waypoints[68].type = "stand";
|
||||||
|
/* 9:13 */waypoints[68].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[68].children[0] = 67;
|
||||||
|
/* 9:13 */waypoints[68].children[1] = 69;
|
||||||
|
/* 9:13 */waypoints[68].children[2] = 117;
|
||||||
|
/* 9:13 */waypoints[68].children[3] = 126;
|
||||||
|
/* 9:13 */waypoints[69] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[69].origin =(431.344, 703.556, -69.375);
|
||||||
|
/* 9:13 */waypoints[69].type = "stand";
|
||||||
|
/* 9:13 */waypoints[69].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[69].children[0] = 68;
|
||||||
|
/* 9:13 */waypoints[69].children[1] = 70;
|
||||||
|
/* 9:13 */waypoints[70] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[70].origin =(58.7908, 655.105, -67.375);
|
||||||
|
/* 9:13 */waypoints[70].type = "stand";
|
||||||
|
/* 9:13 */waypoints[70].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[70].children[0] = 69;
|
||||||
|
/* 9:13 */waypoints[70].children[1] = 71;
|
||||||
|
/* 9:13 */waypoints[70].children[2] = 127;
|
||||||
|
/* 9:13 */waypoints[71] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[71].origin =(-217.423, 615.519, -67.375);
|
||||||
|
/* 9:13 */waypoints[71].type = "stand";
|
||||||
|
/* 9:13 */waypoints[71].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[71].children[0] = 70;
|
||||||
|
/* 9:13 */waypoints[71].children[1] = 65;
|
||||||
|
/* 9:13 */waypoints[72] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[72].origin =(88.5694, 453.072, -87.7618);
|
||||||
|
/* 9:13 */waypoints[72].type = "stand";
|
||||||
|
/* 9:13 */waypoints[72].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[72].children[0] = 67;
|
||||||
|
/* 9:13 */waypoints[72].children[1] = 64;
|
||||||
|
/* 9:13 */waypoints[72].children[2] = 125;
|
||||||
|
/* 9:13 */waypoints[73] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[73].origin =(729.786, 115.024, -139.875);
|
||||||
|
/* 9:13 */waypoints[73].type = "stand";
|
||||||
|
/* 9:13 */waypoints[73].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[73].children[0] = 67;
|
||||||
|
/* 9:13 */waypoints[73].children[1] = 83;
|
||||||
|
/* 9:13 */waypoints[73].children[2] = 89;
|
||||||
|
/* 9:13 */waypoints[73].children[3] = 124;
|
||||||
|
/* 9:13 */waypoints[74] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[74].origin =(362.031, -173.569, -138.607);
|
||||||
|
/* 9:13 */waypoints[74].type = "stand";
|
||||||
|
/* 9:13 */waypoints[74].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[74].children[0] = 67;
|
||||||
|
/* 9:13 */waypoints[74].children[1] = 75;
|
||||||
|
/* 9:13 */waypoints[74].children[2] = 83;
|
||||||
|
/* 9:13 */waypoints[75] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[75].origin =(5.79534, -153.508, -138.897);
|
||||||
|
/* 9:13 */waypoints[75].type = "stand";
|
||||||
|
/* 9:13 */waypoints[75].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[75].children[0] = 74;
|
||||||
|
/* 9:13 */waypoints[75].children[1] = 76;
|
||||||
|
/* 9:13 */waypoints[75].children[2] = 78;
|
||||||
|
/* 9:13 */waypoints[76] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[76].origin =(-341.083, -119.735, -139.875);
|
||||||
|
/* 9:13 */waypoints[76].type = "stand";
|
||||||
|
/* 9:13 */waypoints[76].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[76].children[0] = 75;
|
||||||
|
/* 9:13 */waypoints[76].children[1] = 59;
|
||||||
|
/* 9:13 */waypoints[76].children[2] = 96;
|
||||||
|
/* 9:13 */waypoints[77] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[77].origin =(-352.543, -401.156, -140.547);
|
||||||
|
/* 9:13 */waypoints[77].type = "stand";
|
||||||
|
/* 9:13 */waypoints[77].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[77].children[0] = 58;
|
||||||
|
/* 9:13 */waypoints[77].children[1] = 78;
|
||||||
|
/* 9:13 */waypoints[78] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[78].origin =(37.5556, -423.648, -139.875);
|
||||||
|
/* 9:13 */waypoints[78].type = "stand";
|
||||||
|
/* 9:13 */waypoints[78].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[78].children[0] = 77;
|
||||||
|
/* 9:13 */waypoints[78].children[1] = 75;
|
||||||
|
/* 9:13 */waypoints[78].children[2] = 79;
|
||||||
|
/* 9:13 */waypoints[78].children[3] = 116;
|
||||||
|
/* 9:13 */waypoints[79] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[79].origin =(255.141, -466.15, -135.875);
|
||||||
|
/* 9:13 */waypoints[79].type = "stand";
|
||||||
|
/* 9:13 */waypoints[79].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[79].children[0] = 78;
|
||||||
|
/* 9:13 */waypoints[79].children[1] = 80;
|
||||||
|
/* 9:13 */waypoints[79].children[2] = 82;
|
||||||
|
/* 9:13 */waypoints[80] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[80].origin =(368.646, -593.411, -135.875);
|
||||||
|
/* 9:13 */waypoints[80].type = "stand";
|
||||||
|
/* 9:13 */waypoints[80].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[80].children[0] = 79;
|
||||||
|
/* 9:13 */waypoints[80].children[1] = 81;
|
||||||
|
/* 9:13 */waypoints[81] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[81].origin =(649.453, -497.446, -135.875);
|
||||||
|
/* 9:13 */waypoints[81].type = "stand";
|
||||||
|
/* 9:13 */waypoints[81].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[81].children[0] = 80;
|
||||||
|
/* 9:13 */waypoints[81].children[1] = 82;
|
||||||
|
/* 9:13 */waypoints[81].children[2] = 83;
|
||||||
|
/* 9:13 */waypoints[81].children[3] = 93;
|
||||||
|
/* 9:13 */waypoints[82] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[82].origin =(429.677, -347.731, -135.875);
|
||||||
|
/* 9:13 */waypoints[82].type = "stand";
|
||||||
|
/* 9:13 */waypoints[82].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[82].children[0] = 81;
|
||||||
|
/* 9:13 */waypoints[82].children[1] = 79;
|
||||||
|
/* 9:13 */waypoints[83] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[83].origin =(705.537, -148.276, -139.875);
|
||||||
|
/* 9:13 */waypoints[83].type = "stand";
|
||||||
|
/* 9:13 */waypoints[83].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[83].children[0] = 81;
|
||||||
|
/* 9:13 */waypoints[83].children[1] = 74;
|
||||||
|
/* 9:13 */waypoints[83].children[2] = 73;
|
||||||
|
/* 9:13 */waypoints[83].children[3] = 84;
|
||||||
|
/* 9:13 */waypoints[84] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[84].origin =(1043.04, -153.289, -139.875);
|
||||||
|
/* 9:13 */waypoints[84].type = "stand";
|
||||||
|
/* 9:13 */waypoints[84].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[84].children[0] = 83;
|
||||||
|
/* 9:13 */waypoints[84].children[1] = 85;
|
||||||
|
/* 9:13 */waypoints[84].children[2] = 92;
|
||||||
|
/* 9:13 */waypoints[84].children[3] = 93;
|
||||||
|
/* 9:13 */waypoints[85] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[85].origin =(1088.63, 108.952, -127.655);
|
||||||
|
/* 9:13 */waypoints[85].type = "stand";
|
||||||
|
/* 9:13 */waypoints[85].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[85].children[0] = 84;
|
||||||
|
/* 9:13 */waypoints[85].children[1] = 86;
|
||||||
|
/* 9:13 */waypoints[85].children[2] = 123;
|
||||||
|
/* 9:13 */waypoints[86] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[86].origin =(1522.83, 121.386, -188.848);
|
||||||
|
/* 9:13 */waypoints[86].type = "stand";
|
||||||
|
/* 9:13 */waypoints[86].childCount = 5;
|
||||||
|
/* 9:13 */waypoints[86].children[0] = 85;
|
||||||
|
/* 9:13 */waypoints[86].children[1] = 29;
|
||||||
|
/* 9:13 */waypoints[86].children[2] = 87;
|
||||||
|
/* 9:13 */waypoints[86].children[3] = 92;
|
||||||
|
/* 9:13 */waypoints[86].children[4] = 101;
|
||||||
|
/* 9:13 */waypoints[87] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[87].origin =(1501.2, 271.371, -187.101);
|
||||||
|
/* 9:13 */waypoints[87].type = "stand";
|
||||||
|
/* 9:13 */waypoints[87].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[87].children[0] = 86;
|
||||||
|
/* 9:13 */waypoints[87].children[1] = 88;
|
||||||
|
/* 9:13 */waypoints[87].children[2] = 32;
|
||||||
|
/* 9:13 */waypoints[88] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[88].origin =(1104.38, 350.169, -160.919);
|
||||||
|
/* 9:13 */waypoints[88].type = "stand";
|
||||||
|
/* 9:13 */waypoints[88].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[88].children[0] = 87;
|
||||||
|
/* 9:13 */waypoints[88].children[1] = 89;
|
||||||
|
/* 9:13 */waypoints[89] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[89].origin =(778.307, 369.764, -119.478);
|
||||||
|
/* 9:13 */waypoints[89].type = "stand";
|
||||||
|
/* 9:13 */waypoints[89].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[89].children[0] = 88;
|
||||||
|
/* 9:13 */waypoints[89].children[1] = 73;
|
||||||
|
/* 9:13 */waypoints[89].children[2] = 90;
|
||||||
|
/* 9:13 */waypoints[89].children[3] = 117;
|
||||||
|
/* 9:13 */waypoints[90] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[90].origin =(828.597, 640.188, -131.314);
|
||||||
|
/* 9:13 */waypoints[90].type = "stand";
|
||||||
|
/* 9:13 */waypoints[90].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[90].children[0] = 89;
|
||||||
|
/* 9:13 */waypoints[90].children[1] = 36;
|
||||||
|
/* 9:13 */waypoints[90].children[2] = 91;
|
||||||
|
/* 9:13 */waypoints[91] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[91].origin =(1139.18, 614.43, -154.27);
|
||||||
|
/* 9:13 */waypoints[91].type = "stand";
|
||||||
|
/* 9:13 */waypoints[91].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[91].children[0] = 90;
|
||||||
|
/* 9:13 */waypoints[91].children[1] = 32;
|
||||||
|
/* 9:13 */waypoints[92] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[92].origin =(1444.18, -167.716, -162.245);
|
||||||
|
/* 9:13 */waypoints[92].type = "stand";
|
||||||
|
/* 9:13 */waypoints[92].childCount = 4;
|
||||||
|
/* 9:13 */waypoints[92].children[0] = 86;
|
||||||
|
/* 9:13 */waypoints[92].children[1] = 27;
|
||||||
|
/* 9:13 */waypoints[92].children[2] = 84;
|
||||||
|
/* 9:13 */waypoints[92].children[3] = 95;
|
||||||
|
/* 9:13 */waypoints[93] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[93].origin =(941.959, -562.382, -139.692);
|
||||||
|
/* 9:13 */waypoints[93].type = "stand";
|
||||||
|
/* 9:13 */waypoints[93].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[93].children[0] = 84;
|
||||||
|
/* 9:13 */waypoints[93].children[1] = 81;
|
||||||
|
/* 9:13 */waypoints[93].children[2] = 94;
|
||||||
|
/* 9:13 */waypoints[94] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[94].origin =(1085.23, -624.875, -138.491);
|
||||||
|
/* 9:13 */waypoints[94].type = "stand";
|
||||||
|
/* 9:13 */waypoints[94].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[94].children[0] = 93;
|
||||||
|
/* 9:13 */waypoints[94].children[1] = 95;
|
||||||
|
/* 9:13 */waypoints[95] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[95].origin =(1570.06, -592.937, -152.538);
|
||||||
|
/* 9:13 */waypoints[95].type = "stand";
|
||||||
|
/* 9:13 */waypoints[95].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[95].children[0] = 94;
|
||||||
|
/* 9:13 */waypoints[95].children[1] = 28;
|
||||||
|
/* 9:13 */waypoints[95].children[2] = 92;
|
||||||
|
/* 9:13 */waypoints[96] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[96].origin =(-195.868, -79.6483, -139.378);
|
||||||
|
/* 9:13 */waypoints[96].type = "stand";
|
||||||
|
/* 9:13 */waypoints[96].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[96].children[0] = 76;
|
||||||
|
/* 9:13 */waypoints[96].children[1] = 97;
|
||||||
|
/* 9:13 */waypoints[97] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[97].origin =(-189.02, -127.42, -139.875);
|
||||||
|
/* 9:13 */waypoints[97].type = "stand";
|
||||||
|
/* 9:13 */waypoints[97].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[97].children[0] = 96;
|
||||||
|
/* 9:13 */waypoints[98] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[98].origin =(221.61, 1410.82, -71.875);
|
||||||
|
/* 9:13 */waypoints[98].type = "stand";
|
||||||
|
/* 9:13 */waypoints[98].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[98].children[0] = 8;
|
||||||
|
/* 9:13 */waypoints[98].children[1] = 99;
|
||||||
|
/* 9:13 */waypoints[98].children[2] = 104;
|
||||||
|
/* 9:13 */waypoints[99] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[99].origin =(192.426, 1403.67, -71.875);
|
||||||
|
/* 9:13 */waypoints[99].type = "stand";
|
||||||
|
/* 9:13 */waypoints[99].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[99].children[0] = 98;
|
||||||
|
/* 9:13 */waypoints[100] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[100].origin =(1615.77, 217.438, -196.597);
|
||||||
|
/* 9:13 */waypoints[100].type = "stand";
|
||||||
|
/* 9:13 */waypoints[100].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[100].children[0] = 29;
|
||||||
|
/* 9:13 */waypoints[100].children[1] = 101;
|
||||||
|
/* 9:13 */waypoints[101] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[101].origin =(1658.09, 211.492, -197.384);
|
||||||
|
/* 9:13 */waypoints[101].type = "stand";
|
||||||
|
/* 9:13 */waypoints[101].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[101].children[0] = 100;
|
||||||
|
/* 9:13 */waypoints[101].children[1] = 86;
|
||||||
|
/* 9:13 */waypoints[102] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[102].origin =(-818.604, -552.825, -139.875);
|
||||||
|
/* 9:13 */waypoints[102].type = "stand";
|
||||||
|
/* 9:13 */waypoints[102].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[102].children[0] = 57;
|
||||||
|
/* 9:13 */waypoints[102].children[1] = 103;
|
||||||
|
/* 9:13 */waypoints[103] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[103].origin =(-727.721, -481.575, -139.924);
|
||||||
|
/* 9:13 */waypoints[103].type = "stand";
|
||||||
|
/* 9:13 */waypoints[103].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[103].children[0] = 102;
|
||||||
|
/* 9:13 */waypoints[104] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[104].origin =(22.6596, 1454.7, -71.875);
|
||||||
|
/* 9:13 */waypoints[104].type = "stand";
|
||||||
|
/* 9:13 */waypoints[104].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[104].children[0] = 9;
|
||||||
|
/* 9:13 */waypoints[104].children[1] = 98;
|
||||||
|
/* 9:13 */waypoints[105] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[105].origin =(-698.341, 649.666, -67.375);
|
||||||
|
/* 9:13 */waypoints[105].type = "climb";
|
||||||
|
/* 9:13 */waypoints[105].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[105].children[0] = 65;
|
||||||
|
/* 9:13 */waypoints[105].children[1] = 106;
|
||||||
|
/* 9:13 */waypoints[105].angles = (45.1318, -173.875, 0);
|
||||||
|
/* 9:13 */waypoints[106] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[106].origin =(-749.544, 648.274, -124.751);
|
||||||
|
/* 9:13 */waypoints[106].type = "climb";
|
||||||
|
/* 9:13 */waypoints[106].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[106].children[0] = 105;
|
||||||
|
/* 9:13 */waypoints[106].children[1] = 47;
|
||||||
|
/* 9:13 */waypoints[106].angles = (-42.572, 2.93884, 0);
|
||||||
|
/* 9:13 */waypoints[107] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[107].origin =(-1593.5, 766.875, -127.875);
|
||||||
|
/* 9:13 */waypoints[107].type = "climb";
|
||||||
|
/* 9:13 */waypoints[107].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[107].children[0] = 48;
|
||||||
|
/* 9:13 */waypoints[107].children[1] = 108;
|
||||||
|
/* 9:13 */waypoints[107].angles = (-67.3999, 97.7069, 0);
|
||||||
|
/* 9:13 */waypoints[108] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[108].origin =(-1587.78, 766.875, 127.277);
|
||||||
|
/* 9:13 */waypoints[108].type = "climb";
|
||||||
|
/* 9:13 */waypoints[108].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[108].children[0] = 107;
|
||||||
|
/* 9:13 */waypoints[108].children[1] = 109;
|
||||||
|
/* 9:13 */waypoints[108].angles = (76.076, 87.6764, 0);
|
||||||
|
/* 9:13 */waypoints[109] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[109].origin =(-1584.32, 833.476, 142.125);
|
||||||
|
/* 9:13 */waypoints[109].type = "stand";
|
||||||
|
/* 9:13 */waypoints[109].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[109].children[0] = 108;
|
||||||
|
/* 9:13 */waypoints[109].children[1] = 110;
|
||||||
|
/* 9:13 */waypoints[109].children[2] = 112;
|
||||||
|
/* 9:13 */waypoints[109].angles = (26.7529, -132.759, 0);
|
||||||
|
/* 9:13 */waypoints[110] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[110].origin =(-1303.06, 820.774, 142.125);
|
||||||
|
/* 9:13 */waypoints[110].type = "stand";
|
||||||
|
/* 9:13 */waypoints[110].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[110].children[0] = 109;
|
||||||
|
/* 9:13 */waypoints[110].children[1] = 111;
|
||||||
|
/* 9:13 */waypoints[110].children[2] = 113;
|
||||||
|
/* 9:13 */waypoints[110].angles = (26.0333, -89.5715, 0);
|
||||||
|
/* 9:13 */waypoints[111] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[111].origin =(-1306.35, 246.078, 142.125);
|
||||||
|
/* 9:13 */waypoints[111].type = "stand";
|
||||||
|
/* 9:13 */waypoints[111].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[111].children[0] = 110;
|
||||||
|
/* 9:13 */waypoints[111].angles = (20.9192, -5.04272, 0);
|
||||||
|
/* 9:13 */waypoints[112] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[112].origin =(-1714.05, 814.595, 142.125);
|
||||||
|
/* 9:13 */waypoints[112].type = "stand";
|
||||||
|
/* 9:13 */waypoints[112].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[112].children[0] = 109;
|
||||||
|
/* 9:13 */waypoints[112].angles = (23.9899, -171.601, 0);
|
||||||
|
/* 9:13 */waypoints[113] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[113].origin =(-1315.59, 481.908, 142.125);
|
||||||
|
/* 9:13 */waypoints[113].type = "stand";
|
||||||
|
/* 9:13 */waypoints[113].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[113].children[0] = 110;
|
||||||
|
/* 9:13 */waypoints[113].angles = (13.1409, -4.99329, 0);
|
||||||
|
/* 9:13 */waypoints[114] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[114].origin =(-495.738, 223.45, -129.961);
|
||||||
|
/* 9:13 */waypoints[114].type = "climb";
|
||||||
|
/* 9:13 */waypoints[114].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[114].children[0] = 64;
|
||||||
|
/* 9:13 */waypoints[114].children[1] = 115;
|
||||||
|
/* 9:13 */waypoints[114].angles = (7.30713, -87.7368, 0);
|
||||||
|
/* 9:13 */waypoints[115] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[115].origin =(-500.298, 189.302, -72.0113);
|
||||||
|
/* 9:13 */waypoints[115].type = "climb";
|
||||||
|
/* 9:13 */waypoints[115].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[115].children[0] = 114;
|
||||||
|
/* 9:13 */waypoints[115].children[1] = 63;
|
||||||
|
/* 9:13 */waypoints[115].angles = (9.6637, -88.6542, 0);
|
||||||
|
/* 9:13 */waypoints[116] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[116].origin =(49.119, -644.53, -139.875);
|
||||||
|
/* 9:13 */waypoints[116].type = "stand";
|
||||||
|
/* 9:13 */waypoints[116].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[116].children[0] = 78;
|
||||||
|
/* 9:13 */waypoints[116].angles = (12.9376, -83.0511, 0);
|
||||||
|
/* 9:13 */waypoints[117] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[117].origin =(476.234, 379.92, -69.375);
|
||||||
|
/* 9:13 */waypoints[117].type = "stand";
|
||||||
|
/* 9:13 */waypoints[117].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[117].children[0] = 68;
|
||||||
|
/* 9:13 */waypoints[117].children[1] = 89;
|
||||||
|
/* 9:13 */waypoints[117].angles = (22.4518, 0.55481, 0);
|
||||||
|
/* 9:13 */waypoints[118] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[118].origin =(2098.26, 50.5204, -151.875);
|
||||||
|
/* 9:13 */waypoints[118].type = "stand";
|
||||||
|
/* 9:13 */waypoints[118].childCount = 3;
|
||||||
|
/* 9:13 */waypoints[118].children[0] = 25;
|
||||||
|
/* 9:13 */waypoints[118].children[1] = 119;
|
||||||
|
/* 9:13 */waypoints[118].children[2] = 120;
|
||||||
|
/* 9:13 */waypoints[118].angles = (12.63, -1.03271, 0);
|
||||||
|
/* 9:13 */waypoints[119] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[119].origin =(2278.92, 53.4398, -151.875);
|
||||||
|
/* 9:13 */waypoints[119].type = "stand";
|
||||||
|
/* 9:13 */waypoints[119].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[119].children[0] = 118;
|
||||||
|
/* 9:13 */waypoints[119].angles = (22.9681, -5.43823, 0);
|
||||||
|
/* 9:13 */waypoints[120] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[120].origin =(2097.12, -63.0843, -151.875);
|
||||||
|
/* 9:13 */waypoints[120].type = "climb";
|
||||||
|
/* 9:13 */waypoints[120].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[120].children[0] = 118;
|
||||||
|
/* 9:13 */waypoints[120].children[1] = 121;
|
||||||
|
/* 9:13 */waypoints[120].angles = (32.6856, -89.1486, 0);
|
||||||
|
/* 9:13 */waypoints[121] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[121].origin =(2100.06, -109.516, -192.057);
|
||||||
|
/* 9:13 */waypoints[121].type = "climb";
|
||||||
|
/* 9:13 */waypoints[121].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[121].children[0] = 120;
|
||||||
|
/* 9:13 */waypoints[121].children[1] = 26;
|
||||||
|
/* 9:13 */waypoints[121].angles = (-25.6464, 96.5698, 0);
|
||||||
|
/* 9:13 */waypoints[122] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[122].origin =(2203.29, -180.325, -198.311);
|
||||||
|
/* 9:13 */waypoints[122].type = "stand";
|
||||||
|
/* 9:13 */waypoints[122].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[122].children[0] = 26;
|
||||||
|
/* 9:13 */waypoints[122].angles = (11.8115, 4.79553, 0);
|
||||||
|
/* 9:13 */waypoints[123] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[123].origin =(880.221, 111.545, -97.2519);
|
||||||
|
/* 9:13 */waypoints[123].type = "climb";
|
||||||
|
/* 9:13 */waypoints[123].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[123].children[0] = 85;
|
||||||
|
/* 9:13 */waypoints[123].children[1] = 124;
|
||||||
|
/* 9:13 */waypoints[123].angles = (32.7899, 178.566, 0);
|
||||||
|
/* 9:13 */waypoints[124] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[124].origin =(828.875, 113.916, -139.875);
|
||||||
|
/* 9:13 */waypoints[124].type = "climb";
|
||||||
|
/* 9:13 */waypoints[124].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[124].children[0] = 123;
|
||||||
|
/* 9:13 */waypoints[124].children[1] = 73;
|
||||||
|
/* 9:13 */waypoints[124].angles = (-17.2528, 6.22925, 0);
|
||||||
|
/* 9:13 */waypoints[125] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[125].origin =(300.706, 451.748, -115.326);
|
||||||
|
/* 9:13 */waypoints[125].type = "climb";
|
||||||
|
/* 9:13 */waypoints[125].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[125].children[0] = 72;
|
||||||
|
/* 9:13 */waypoints[125].children[1] = 126;
|
||||||
|
/* 9:13 */waypoints[125].angles = (1.98425, -5.00427, 0);
|
||||||
|
/* 9:13 */waypoints[126] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[126].origin =(335.755, 448.525, -69.375);
|
||||||
|
/* 9:13 */waypoints[126].type = "climb";
|
||||||
|
/* 9:13 */waypoints[126].childCount = 2;
|
||||||
|
/* 9:13 */waypoints[126].children[0] = 125;
|
||||||
|
/* 9:13 */waypoints[126].children[1] = 68;
|
||||||
|
/* 9:13 */waypoints[126].angles = (24.1931, -0.911865, 0);
|
||||||
|
/* 9:13 */waypoints[127] = spawnstruct();
|
||||||
|
/* 9:13 */waypoints[127].origin =(-4.02735, 713.934, -67.375);
|
||||||
|
/* 9:13 */waypoints[127].type = "stand";
|
||||||
|
/* 9:13 */waypoints[127].childCount = 1;
|
||||||
|
/* 9:13 */waypoints[127].children[0] = 70;
|
||||||
|
/* 9:13 */waypoints[127].angles = (20.2051, 139.493, 0);
|
||||||
|
return waypoints;
|
||||||
|
}
|
335
mods/bots/maps/mp/bots/waypoints/shipment.gsc
Normal file
335
mods/bots/maps/mp/bots/waypoints/shipment.gsc
Normal file
@ -0,0 +1,335 @@
|
|||||||
|
Shipment()
|
||||||
|
{
|
||||||
|
/* 6:59 */waypoints = [];
|
||||||
|
/* 6:59 */waypoints[0] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[0].origin = (-610.36, 149.264, 201.125);
|
||||||
|
/* 6:59 */waypoints[0].type = "stand";
|
||||||
|
/* 6:59 */waypoints[0].childCount = 1;
|
||||||
|
/* 6:59 */waypoints[0].children[0] = 1;
|
||||||
|
/* 6:59 */waypoints[1] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[1].origin = (-620.079, -126.028, 196.89);
|
||||||
|
/* 6:59 */waypoints[1].type = "stand";
|
||||||
|
/* 6:59 */waypoints[1].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[1].children[0] = 0;
|
||||||
|
/* 6:59 */waypoints[1].children[1] = 2;
|
||||||
|
/* 6:59 */waypoints[1].children[2] = 26;
|
||||||
|
/* 6:59 */waypoints[2] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[2].origin = (-702.762, -282.504, 192.434);
|
||||||
|
/* 6:59 */waypoints[2].type = "stand";
|
||||||
|
/* 6:59 */waypoints[2].childCount = 2;
|
||||||
|
/* 6:59 */waypoints[2].children[0] = 1;
|
||||||
|
/* 6:59 */waypoints[2].children[1] = 3;
|
||||||
|
/* 6:59 */waypoints[3] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[3].origin = (-719.237, -587.184, 199.725);
|
||||||
|
/* 6:59 */waypoints[3].type = "stand";
|
||||||
|
/* 6:59 */waypoints[3].childCount = 2;
|
||||||
|
/* 6:59 */waypoints[3].children[0] = 2;
|
||||||
|
/* 6:59 */waypoints[3].children[1] = 42;
|
||||||
|
/* 6:59 */waypoints[4] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[4].origin = (-228.83, -590.442, 196.605);
|
||||||
|
/* 6:59 */waypoints[4].type = "stand";
|
||||||
|
/* 6:59 */waypoints[4].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[4].children[0] = 5;
|
||||||
|
/* 6:59 */waypoints[4].children[1] = 42;
|
||||||
|
/* 6:59 */waypoints[4].children[2] = 47;
|
||||||
|
/* 6:59 */waypoints[5] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[5].origin = (197.13, -517.064, 192.077);
|
||||||
|
/* 6:59 */waypoints[5].type = "stand";
|
||||||
|
/* 6:59 */waypoints[5].childCount = 4;
|
||||||
|
/* 6:59 */waypoints[5].children[0] = 4;
|
||||||
|
/* 6:59 */waypoints[5].children[1] = 6;
|
||||||
|
/* 6:59 */waypoints[5].children[2] = 28;
|
||||||
|
/* 6:59 */waypoints[5].children[3] = 44;
|
||||||
|
/* 6:59 */waypoints[6] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[6].origin = (453.886, -586.172, 193.314);
|
||||||
|
/* 6:59 */waypoints[6].type = "stand";
|
||||||
|
/* 6:59 */waypoints[6].childCount = 4;
|
||||||
|
/* 6:59 */waypoints[6].children[0] = 5;
|
||||||
|
/* 6:59 */waypoints[6].children[1] = 7;
|
||||||
|
/* 6:59 */waypoints[6].children[2] = 27;
|
||||||
|
/* 6:59 */waypoints[6].children[3] = 44;
|
||||||
|
/* 6:59 */waypoints[7] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[7].origin = (658.928, -582.484, 199.725);
|
||||||
|
/* 6:59 */waypoints[7].type = "stand";
|
||||||
|
/* 6:59 */waypoints[7].childCount = 2;
|
||||||
|
/* 6:59 */waypoints[7].children[0] = 6;
|
||||||
|
/* 6:59 */waypoints[7].children[1] = 8;
|
||||||
|
/* 6:59 */waypoints[8] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[8].origin = (641.269, -362.832, 192.083);
|
||||||
|
/* 6:59 */waypoints[8].type = "stand";
|
||||||
|
/* 6:59 */waypoints[8].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[8].children[0] = 7;
|
||||||
|
/* 6:59 */waypoints[8].children[1] = 9;
|
||||||
|
/* 6:59 */waypoints[8].children[2] = 27;
|
||||||
|
/* 6:59 */waypoints[9] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[9].origin = (654.735, -129.902, 192.091);
|
||||||
|
/* 6:59 */waypoints[9].type = "stand";
|
||||||
|
/* 6:59 */waypoints[9].childCount = 2;
|
||||||
|
/* 6:59 */waypoints[9].children[0] = 8;
|
||||||
|
/* 6:59 */waypoints[9].children[1] = 10;
|
||||||
|
/* 6:59 */waypoints[10] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[10].origin = (439.04, -99.5199, 194.359);
|
||||||
|
/* 6:59 */waypoints[10].type = "stand";
|
||||||
|
/* 6:59 */waypoints[10].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[10].children[0] = 9;
|
||||||
|
/* 6:59 */waypoints[10].children[1] = 11;
|
||||||
|
/* 6:59 */waypoints[10].children[2] = 27;
|
||||||
|
/* 6:59 */waypoints[11] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[11].origin = (439.674, 45.8541, 193.014);
|
||||||
|
/* 6:59 */waypoints[11].type = "stand";
|
||||||
|
/* 6:59 */waypoints[11].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[11].children[0] = 10;
|
||||||
|
/* 6:59 */waypoints[11].children[1] = 12;
|
||||||
|
/* 6:59 */waypoints[11].children[2] = 30;
|
||||||
|
/* 6:59 */waypoints[12] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[12].origin = (449.902, 267.177, 193.16);
|
||||||
|
/* 6:59 */waypoints[12].type = "stand";
|
||||||
|
/* 6:59 */waypoints[12].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[12].children[0] = 11;
|
||||||
|
/* 6:59 */waypoints[12].children[1] = 13;
|
||||||
|
/* 6:59 */waypoints[12].children[2] = 38;
|
||||||
|
/* 6:59 */waypoints[13] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[13].origin = (697.337, 277.811, 192.107);
|
||||||
|
/* 6:59 */waypoints[13].type = "stand";
|
||||||
|
/* 6:59 */waypoints[13].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[13].children[0] = 12;
|
||||||
|
/* 6:59 */waypoints[13].children[1] = 14;
|
||||||
|
/* 6:59 */waypoints[13].children[2] = 46;
|
||||||
|
/* 6:59 */waypoints[14] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[14].origin = (688.533, 535.071, 194.929);
|
||||||
|
/* 6:59 */waypoints[14].type = "stand";
|
||||||
|
/* 6:59 */waypoints[14].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[14].children[0] = 13;
|
||||||
|
/* 6:59 */waypoints[14].children[1] = 15;
|
||||||
|
/* 6:59 */waypoints[14].children[2] = 38;
|
||||||
|
/* 6:59 */waypoints[15] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[15].origin = (675.569, 730.961, 193.597);
|
||||||
|
/* 6:59 */waypoints[15].type = "stand";
|
||||||
|
/* 6:59 */waypoints[15].childCount = 2;
|
||||||
|
/* 6:59 */waypoints[15].children[0] = 14;
|
||||||
|
/* 6:59 */waypoints[15].children[1] = 16;
|
||||||
|
/* 6:59 */waypoints[16] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[16].origin = (514.588, 746.919, 192.074);
|
||||||
|
/* 6:59 */waypoints[16].type = "stand";
|
||||||
|
/* 6:59 */waypoints[16].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[16].children[0] = 15;
|
||||||
|
/* 6:59 */waypoints[16].children[1] = 17;
|
||||||
|
/* 6:59 */waypoints[16].children[2] = 38;
|
||||||
|
/* 6:59 */waypoints[17] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[17].origin = (267.885, 743.71, 196.877);
|
||||||
|
/* 6:59 */waypoints[17].type = "stand";
|
||||||
|
/* 6:59 */waypoints[17].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[17].children[0] = 16;
|
||||||
|
/* 6:59 */waypoints[17].children[1] = 18;
|
||||||
|
/* 6:59 */waypoints[17].children[2] = 39;
|
||||||
|
/* 6:59 */waypoints[18] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[18].origin = (211.788, 586.591, 197.334);
|
||||||
|
/* 6:59 */waypoints[18].type = "stand";
|
||||||
|
/* 6:59 */waypoints[18].childCount = 4;
|
||||||
|
/* 6:59 */waypoints[18].children[0] = 17;
|
||||||
|
/* 6:59 */waypoints[18].children[1] = 19;
|
||||||
|
/* 6:59 */waypoints[18].children[2] = 37;
|
||||||
|
/* 6:59 */waypoints[18].children[3] = 38;
|
||||||
|
/* 6:59 */waypoints[19] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[19].origin = (-135.858, 743.555, 199.374);
|
||||||
|
/* 6:59 */waypoints[19].type = "stand";
|
||||||
|
/* 6:59 */waypoints[19].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[19].children[0] = 18;
|
||||||
|
/* 6:59 */waypoints[19].children[1] = 20;
|
||||||
|
/* 6:59 */waypoints[19].children[2] = 35;
|
||||||
|
/* 6:59 */waypoints[20] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[20].origin = (-428.645, 711.579, 192.645);
|
||||||
|
/* 6:59 */waypoints[20].type = "stand";
|
||||||
|
/* 6:59 */waypoints[20].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[20].children[0] = 19;
|
||||||
|
/* 6:59 */waypoints[20].children[1] = 21;
|
||||||
|
/* 6:59 */waypoints[20].children[2] = 43;
|
||||||
|
/* 6:59 */waypoints[21] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[21].origin = (-681.602, 728.178, 198.336);
|
||||||
|
/* 6:59 */waypoints[21].type = "stand";
|
||||||
|
/* 6:59 */waypoints[21].childCount = 2;
|
||||||
|
/* 6:59 */waypoints[21].children[0] = 20;
|
||||||
|
/* 6:59 */waypoints[21].children[1] = 22;
|
||||||
|
/* 6:59 */waypoints[22] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[22].origin = (-691.159, 515.803, 192.481);
|
||||||
|
/* 6:59 */waypoints[22].type = "stand";
|
||||||
|
/* 6:59 */waypoints[22].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[22].children[0] = 21;
|
||||||
|
/* 6:59 */waypoints[22].children[1] = 23;
|
||||||
|
/* 6:59 */waypoints[22].children[2] = 43;
|
||||||
|
/* 6:59 */waypoints[23] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[23].origin = (-703.595, 283.467, 203.789);
|
||||||
|
/* 6:59 */waypoints[23].type = "stand";
|
||||||
|
/* 6:59 */waypoints[23].childCount = 2;
|
||||||
|
/* 6:59 */waypoints[23].children[0] = 22;
|
||||||
|
/* 6:59 */waypoints[23].children[1] = 24;
|
||||||
|
/* 6:59 */waypoints[24] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[24].origin = (-471.812, 279.935, 195.148);
|
||||||
|
/* 6:59 */waypoints[24].type = "stand";
|
||||||
|
/* 6:59 */waypoints[24].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[24].children[0] = 23;
|
||||||
|
/* 6:59 */waypoints[24].children[1] = 25;
|
||||||
|
/* 6:59 */waypoints[24].children[2] = 43;
|
||||||
|
/* 6:59 */waypoints[25] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[25].origin = (-467.516, 61.9155, 192.077);
|
||||||
|
/* 6:59 */waypoints[25].type = "stand";
|
||||||
|
/* 6:59 */waypoints[25].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[25].children[0] = 24;
|
||||||
|
/* 6:59 */waypoints[25].children[1] = 26;
|
||||||
|
/* 6:59 */waypoints[25].children[2] = 30;
|
||||||
|
/* 6:59 */waypoints[26] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[26].origin = (-490.013, -147.907, 192.077);
|
||||||
|
/* 6:59 */waypoints[26].type = "stand";
|
||||||
|
/* 6:59 */waypoints[26].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[26].children[0] = 25;
|
||||||
|
/* 6:59 */waypoints[26].children[1] = 1;
|
||||||
|
/* 6:59 */waypoints[26].children[2] = 41;
|
||||||
|
/* 6:59 */waypoints[27] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[27].origin = (404.166, -296.141, 196.124);
|
||||||
|
/* 6:59 */waypoints[27].type = "stand";
|
||||||
|
/* 6:59 */waypoints[27].childCount = 4;
|
||||||
|
/* 6:59 */waypoints[27].children[0] = 10;
|
||||||
|
/* 6:59 */waypoints[27].children[1] = 8;
|
||||||
|
/* 6:59 */waypoints[27].children[2] = 6;
|
||||||
|
/* 6:59 */waypoints[27].children[3] = 28;
|
||||||
|
/* 6:59 */waypoints[28] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[28].origin = (179.993, -282.173, 192.565);
|
||||||
|
/* 6:59 */waypoints[28].type = "stand";
|
||||||
|
/* 6:59 */waypoints[28].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[28].children[0] = 27;
|
||||||
|
/* 6:59 */waypoints[28].children[1] = 5;
|
||||||
|
/* 6:59 */waypoints[28].children[2] = 29;
|
||||||
|
/* 6:59 */waypoints[29] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[29].origin = (-11.9686, -299.794, 194.846);
|
||||||
|
/* 6:59 */waypoints[29].type = "stand";
|
||||||
|
/* 6:59 */waypoints[29].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[29].children[0] = 28;
|
||||||
|
/* 6:59 */waypoints[29].children[1] = 30;
|
||||||
|
/* 6:59 */waypoints[29].children[2] = 40;
|
||||||
|
/* 6:59 */waypoints[30] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[30].origin = (3.89531, 52.3469, 196.736);
|
||||||
|
/* 6:59 */waypoints[30].type = "stand";
|
||||||
|
/* 6:59 */waypoints[30].childCount = 4;
|
||||||
|
/* 6:59 */waypoints[30].children[0] = 29;
|
||||||
|
/* 6:59 */waypoints[30].children[1] = 31;
|
||||||
|
/* 6:59 */waypoints[30].children[2] = 11;
|
||||||
|
/* 6:59 */waypoints[30].children[3] = 25;
|
||||||
|
/* 6:59 */waypoints[31] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[31].origin = (6.12919, 194.278, 194.294);
|
||||||
|
/* 6:59 */waypoints[31].type = "stand";
|
||||||
|
/* 6:59 */waypoints[31].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[31].children[0] = 30;
|
||||||
|
/* 6:59 */waypoints[31].children[1] = 32;
|
||||||
|
/* 6:59 */waypoints[31].children[2] = 33;
|
||||||
|
/* 6:59 */waypoints[32] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[32].origin = (276.125, 180.321, 201.125);
|
||||||
|
/* 6:59 */waypoints[32].type = "stand";
|
||||||
|
/* 6:59 */waypoints[32].childCount = 1;
|
||||||
|
/* 6:59 */waypoints[32].children[0] = 31;
|
||||||
|
/* 6:59 */waypoints[33] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[33].origin = (3.54935, 396.17, 192.492);
|
||||||
|
/* 6:59 */waypoints[33].type = "stand";
|
||||||
|
/* 6:59 */waypoints[33].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[33].children[0] = 31;
|
||||||
|
/* 6:59 */waypoints[33].children[1] = 34;
|
||||||
|
/* 6:59 */waypoints[33].children[2] = 37;
|
||||||
|
/* 6:59 */waypoints[34] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[34].origin = (-195.337, 422.622, 196.074);
|
||||||
|
/* 6:59 */waypoints[34].type = "stand";
|
||||||
|
/* 6:59 */waypoints[34].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[34].children[0] = 33;
|
||||||
|
/* 6:59 */waypoints[34].children[1] = 35;
|
||||||
|
/* 6:59 */waypoints[34].children[2] = 43;
|
||||||
|
/* 6:59 */waypoints[35] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[35].origin = (-184.425, 659.203, 200.415);
|
||||||
|
/* 6:59 */waypoints[35].type = "stand";
|
||||||
|
/* 6:59 */waypoints[35].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[35].children[0] = 34;
|
||||||
|
/* 6:59 */waypoints[35].children[1] = 36;
|
||||||
|
/* 6:59 */waypoints[35].children[2] = 19;
|
||||||
|
/* 6:59 */waypoints[36] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[36].origin = (-31.4959, 614.116, 193.165);
|
||||||
|
/* 6:59 */waypoints[36].type = "stand";
|
||||||
|
/* 6:59 */waypoints[36].childCount = 1;
|
||||||
|
/* 6:59 */waypoints[36].children[0] = 35;
|
||||||
|
/* 6:59 */waypoints[37] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[37].origin = (195.783, 399.768, 195.54);
|
||||||
|
/* 6:59 */waypoints[37].type = "stand";
|
||||||
|
/* 6:59 */waypoints[37].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[37].children[0] = 33;
|
||||||
|
/* 6:59 */waypoints[37].children[1] = 18;
|
||||||
|
/* 6:59 */waypoints[37].children[2] = 38;
|
||||||
|
/* 6:59 */waypoints[38] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[38].origin = (436.087, 429.827, 192.077);
|
||||||
|
/* 6:59 */waypoints[38].type = "stand";
|
||||||
|
/* 6:59 */waypoints[38].childCount = 5;
|
||||||
|
/* 6:59 */waypoints[38].children[0] = 37;
|
||||||
|
/* 6:59 */waypoints[38].children[1] = 12;
|
||||||
|
/* 6:59 */waypoints[38].children[2] = 14;
|
||||||
|
/* 6:59 */waypoints[38].children[3] = 16;
|
||||||
|
/* 6:59 */waypoints[38].children[4] = 18;
|
||||||
|
/* 6:59 */waypoints[39] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[39].origin = (48.5285, 749.341, 192.077);
|
||||||
|
/* 6:59 */waypoints[39].type = "stand";
|
||||||
|
/* 6:59 */waypoints[39].childCount = 1;
|
||||||
|
/* 6:59 */waypoints[39].children[0] = 17;
|
||||||
|
/* 6:59 */waypoints[40] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[40].origin = (-225.679, -294.882, 192.376);
|
||||||
|
/* 6:59 */waypoints[40].type = "stand";
|
||||||
|
/* 6:59 */waypoints[40].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[40].children[0] = 29;
|
||||||
|
/* 6:59 */waypoints[40].children[1] = 41;
|
||||||
|
/* 6:59 */waypoints[40].children[2] = 47;
|
||||||
|
/* 6:59 */waypoints[41] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[41].origin = (-407.436, -286.456, 202.332);
|
||||||
|
/* 6:59 */waypoints[41].type = "stand";
|
||||||
|
/* 6:59 */waypoints[41].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[41].children[0] = 40;
|
||||||
|
/* 6:59 */waypoints[41].children[1] = 26;
|
||||||
|
/* 6:59 */waypoints[41].children[2] = 42;
|
||||||
|
/* 6:59 */waypoints[42] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[42].origin = (-518.125, -579.692, 192.816);
|
||||||
|
/* 6:59 */waypoints[42].type = "stand";
|
||||||
|
/* 6:59 */waypoints[42].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[42].children[0] = 41;
|
||||||
|
/* 6:59 */waypoints[42].children[1] = 3;
|
||||||
|
/* 6:59 */waypoints[42].children[2] = 4;
|
||||||
|
/* 6:59 */waypoints[43] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[43].origin = (-375.487, 437.212, 194.418);
|
||||||
|
/* 6:59 */waypoints[43].type = "stand";
|
||||||
|
/* 6:59 */waypoints[43].childCount = 4;
|
||||||
|
/* 6:59 */waypoints[43].children[0] = 24;
|
||||||
|
/* 6:59 */waypoints[43].children[1] = 34;
|
||||||
|
/* 6:59 */waypoints[43].children[2] = 20;
|
||||||
|
/* 6:59 */waypoints[43].children[3] = 22;
|
||||||
|
/* 6:59 */waypoints[44] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[44].origin = (179.819, -613.838, 193.623);
|
||||||
|
/* 6:59 */waypoints[44].type = "stand";
|
||||||
|
/* 6:59 */waypoints[44].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[44].children[0] = 5;
|
||||||
|
/* 6:59 */waypoints[44].children[1] = 45;
|
||||||
|
/* 6:59 */waypoints[44].children[2] = 6;
|
||||||
|
/* 6:59 */waypoints[45] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[45].origin = (4.56071, -613.979, 193.115);
|
||||||
|
/* 6:59 */waypoints[45].type = "stand";
|
||||||
|
/* 6:59 */waypoints[45].childCount = 1;
|
||||||
|
/* 6:59 */waypoints[45].children[0] = 44;
|
||||||
|
/* 6:59 */waypoints[46] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[46].origin = (692.214, 24.3686, 201.125);
|
||||||
|
/* 6:59 */waypoints[46].type = "stand";
|
||||||
|
/* 6:59 */waypoints[46].childCount = 1;
|
||||||
|
/* 6:59 */waypoints[46].children[0] = 13;
|
||||||
|
/* 6:59 */waypoints[47] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[47].origin = (-204.915, -503.883, 196.582);
|
||||||
|
/* 6:59 */waypoints[47].type = "stand";
|
||||||
|
/* 6:59 */waypoints[47].childCount = 3;
|
||||||
|
/* 6:59 */waypoints[47].children[0] = 48;
|
||||||
|
/* 6:59 */waypoints[47].children[1] = 4;
|
||||||
|
/* 6:59 */waypoints[47].children[2] = 40;
|
||||||
|
/* 6:59 */waypoints[48] = spawnstruct();
|
||||||
|
/* 6:59 */waypoints[48].origin = (-21.0485, -482.997, 192.077);
|
||||||
|
/* 6:59 */waypoints[48].type = "stand";
|
||||||
|
/* 6:59 */waypoints[48].childCount = 1;
|
||||||
|
/* 6:59 */waypoints[48].children[0] = 47;
|
||||||
|
/* 6:59 */return waypoints;
|
||||||
|
}
|
589
mods/bots/maps/mp/bots/waypoints/shipmentlong.gsc
Normal file
589
mods/bots/maps/mp/bots/waypoints/shipmentlong.gsc
Normal file
@ -0,0 +1,589 @@
|
|||||||
|
ShipmentLong()
|
||||||
|
{
|
||||||
|
/* 9:53 */waypoints = [];
|
||||||
|
/* 9:53 */waypoints[0] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[0].origin = (-620.079, -126.028, 196.89);
|
||||||
|
/* 9:53 */waypoints[0].type = "stand";
|
||||||
|
/* 9:53 */waypoints[0].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[0].children[0] = 1;
|
||||||
|
/* 9:53 */waypoints[0].children[1] = 25;
|
||||||
|
/* 9:53 */waypoints[0].children[2] = 75;
|
||||||
|
/* 9:53 */waypoints[1] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[1].origin = (-702.762, -282.504, 192.434);
|
||||||
|
/* 9:53 */waypoints[1].type = "stand";
|
||||||
|
/* 9:53 */waypoints[1].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[1].children[0] = 0;
|
||||||
|
/* 9:53 */waypoints[1].children[1] = 2;
|
||||||
|
/* 9:53 */waypoints[2] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[2].origin = (-719.237, -587.184, 199.725);
|
||||||
|
/* 9:53 */waypoints[2].type = "stand";
|
||||||
|
/* 9:53 */waypoints[2].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[2].children[0] = 1;
|
||||||
|
/* 9:53 */waypoints[2].children[1] = 38;
|
||||||
|
/* 9:53 */waypoints[2].children[2] = 73;
|
||||||
|
/* 9:53 */waypoints[3] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[3].origin = (-228.83, -590.442, 196.605);
|
||||||
|
/* 9:53 */waypoints[3].type = "stand";
|
||||||
|
/* 9:53 */waypoints[3].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[3].children[0] = 4;
|
||||||
|
/* 9:53 */waypoints[3].children[1] = 38;
|
||||||
|
/* 9:53 */waypoints[3].children[2] = 36;
|
||||||
|
/* 9:53 */waypoints[4] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[4].origin = (197.13, -517.064, 192.077);
|
||||||
|
/* 9:53 */waypoints[4].type = "stand";
|
||||||
|
/* 9:53 */waypoints[4].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[4].children[0] = 3;
|
||||||
|
/* 9:53 */waypoints[4].children[1] = 5;
|
||||||
|
/* 9:53 */waypoints[4].children[2] = 27;
|
||||||
|
/* 9:53 */waypoints[5] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[5].origin = (453.886, -586.172, 193.314);
|
||||||
|
/* 9:53 */waypoints[5].type = "stand";
|
||||||
|
/* 9:53 */waypoints[5].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[5].children[0] = 4;
|
||||||
|
/* 9:53 */waypoints[5].children[1] = 6;
|
||||||
|
/* 9:53 */waypoints[5].children[2] = 26;
|
||||||
|
/* 9:53 */waypoints[6] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[6].origin = (658.928, -582.484, 199.725);
|
||||||
|
/* 9:53 */waypoints[6].type = "stand";
|
||||||
|
/* 9:53 */waypoints[6].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[6].children[0] = 5;
|
||||||
|
/* 9:53 */waypoints[6].children[1] = 7;
|
||||||
|
/* 9:53 */waypoints[6].children[2] = 44;
|
||||||
|
/* 9:53 */waypoints[7] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[7].origin = (641.269, -362.832, 192.083);
|
||||||
|
/* 9:53 */waypoints[7].type = "stand";
|
||||||
|
/* 9:53 */waypoints[7].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[7].children[0] = 6;
|
||||||
|
/* 9:53 */waypoints[7].children[1] = 8;
|
||||||
|
/* 9:53 */waypoints[7].children[2] = 26;
|
||||||
|
/* 9:53 */waypoints[8] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[8].origin = (654.735, -129.902, 192.091);
|
||||||
|
/* 9:53 */waypoints[8].type = "stand";
|
||||||
|
/* 9:53 */waypoints[8].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[8].children[0] = 7;
|
||||||
|
/* 9:53 */waypoints[8].children[1] = 9;
|
||||||
|
/* 9:53 */waypoints[8].children[2] = 47;
|
||||||
|
/* 9:53 */waypoints[9] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[9].origin = (439.04, -99.5199, 194.359);
|
||||||
|
/* 9:53 */waypoints[9].type = "stand";
|
||||||
|
/* 9:53 */waypoints[9].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[9].children[0] = 8;
|
||||||
|
/* 9:53 */waypoints[9].children[1] = 10;
|
||||||
|
/* 9:53 */waypoints[9].children[2] = 26;
|
||||||
|
/* 9:53 */waypoints[10] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[10].origin = (439.674, 45.8541, 193.014);
|
||||||
|
/* 9:53 */waypoints[10].type = "stand";
|
||||||
|
/* 9:53 */waypoints[10].childCount = 4;
|
||||||
|
/* 9:53 */waypoints[10].children[0] = 9;
|
||||||
|
/* 9:53 */waypoints[10].children[1] = 11;
|
||||||
|
/* 9:53 */waypoints[10].children[2] = 29;
|
||||||
|
/* 9:53 */waypoints[10].children[3] = 31;
|
||||||
|
/* 9:53 */waypoints[11] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[11].origin = (449.902, 267.177, 193.16);
|
||||||
|
/* 9:53 */waypoints[11].type = "stand";
|
||||||
|
/* 9:53 */waypoints[11].childCount = 4;
|
||||||
|
/* 9:53 */waypoints[11].children[0] = 10;
|
||||||
|
/* 9:53 */waypoints[11].children[1] = 12;
|
||||||
|
/* 9:53 */waypoints[11].children[2] = 35;
|
||||||
|
/* 9:53 */waypoints[11].children[3] = 31;
|
||||||
|
/* 9:53 */waypoints[12] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[12].origin = (697.337, 277.811, 192.107);
|
||||||
|
/* 9:53 */waypoints[12].type = "stand";
|
||||||
|
/* 9:53 */waypoints[12].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[12].children[0] = 11;
|
||||||
|
/* 9:53 */waypoints[12].children[1] = 13;
|
||||||
|
/* 9:53 */waypoints[12].children[2] = 45;
|
||||||
|
/* 9:53 */waypoints[13] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[13].origin = (688.533, 535.071, 194.929);
|
||||||
|
/* 9:53 */waypoints[13].type = "stand";
|
||||||
|
/* 9:53 */waypoints[13].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[13].children[0] = 12;
|
||||||
|
/* 9:53 */waypoints[13].children[1] = 14;
|
||||||
|
/* 9:53 */waypoints[13].children[2] = 35;
|
||||||
|
/* 9:53 */waypoints[14] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[14].origin = (675.569, 730.961, 193.597);
|
||||||
|
/* 9:53 */waypoints[14].type = "stand";
|
||||||
|
/* 9:53 */waypoints[14].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[14].children[0] = 13;
|
||||||
|
/* 9:53 */waypoints[14].children[1] = 15;
|
||||||
|
/* 9:53 */waypoints[14].children[2] = 54;
|
||||||
|
/* 9:53 */waypoints[15] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[15].origin = (514.588, 746.919, 192.074);
|
||||||
|
/* 9:53 */waypoints[15].type = "stand";
|
||||||
|
/* 9:53 */waypoints[15].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[15].children[0] = 14;
|
||||||
|
/* 9:53 */waypoints[15].children[1] = 16;
|
||||||
|
/* 9:53 */waypoints[15].children[2] = 35;
|
||||||
|
/* 9:53 */waypoints[16] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[16].origin = (267.885, 743.71, 196.877);
|
||||||
|
/* 9:53 */waypoints[16].type = "stand";
|
||||||
|
/* 9:53 */waypoints[16].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[16].children[0] = 15;
|
||||||
|
/* 9:53 */waypoints[16].children[1] = 17;
|
||||||
|
/* 9:53 */waypoints[17] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[17].origin = (211.788, 586.591, 197.334);
|
||||||
|
/* 9:53 */waypoints[17].type = "stand";
|
||||||
|
/* 9:53 */waypoints[17].childCount = 4;
|
||||||
|
/* 9:53 */waypoints[17].children[0] = 16;
|
||||||
|
/* 9:53 */waypoints[17].children[1] = 18;
|
||||||
|
/* 9:53 */waypoints[17].children[2] = 34;
|
||||||
|
/* 9:53 */waypoints[17].children[3] = 35;
|
||||||
|
/* 9:53 */waypoints[18] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[18].origin = (-135.858, 743.555, 199.374);
|
||||||
|
/* 9:53 */waypoints[18].type = "stand";
|
||||||
|
/* 9:53 */waypoints[18].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[18].children[0] = 17;
|
||||||
|
/* 9:53 */waypoints[18].children[1] = 19;
|
||||||
|
/* 9:53 */waypoints[18].children[2] = 33;
|
||||||
|
/* 9:53 */waypoints[19] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[19].origin = (-428.645, 711.579, 192.645);
|
||||||
|
/* 9:53 */waypoints[19].type = "stand";
|
||||||
|
/* 9:53 */waypoints[19].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[19].children[0] = 18;
|
||||||
|
/* 9:53 */waypoints[19].children[1] = 20;
|
||||||
|
/* 9:53 */waypoints[19].children[2] = 39;
|
||||||
|
/* 9:53 */waypoints[20] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[20].origin = (-681.602, 728.178, 198.336);
|
||||||
|
/* 9:53 */waypoints[20].type = "stand";
|
||||||
|
/* 9:53 */waypoints[20].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[20].children[0] = 19;
|
||||||
|
/* 9:53 */waypoints[20].children[1] = 21;
|
||||||
|
/* 9:53 */waypoints[20].children[2] = 63;
|
||||||
|
/* 9:53 */waypoints[21] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[21].origin = (-691.159, 515.803, 192.481);
|
||||||
|
/* 9:53 */waypoints[21].type = "stand";
|
||||||
|
/* 9:53 */waypoints[21].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[21].children[0] = 20;
|
||||||
|
/* 9:53 */waypoints[21].children[1] = 22;
|
||||||
|
/* 9:53 */waypoints[21].children[2] = 39;
|
||||||
|
/* 9:53 */waypoints[22] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[22].origin = (-703.595, 283.467, 203.789);
|
||||||
|
/* 9:53 */waypoints[22].type = "stand";
|
||||||
|
/* 9:53 */waypoints[22].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[22].children[0] = 21;
|
||||||
|
/* 9:53 */waypoints[22].children[1] = 23;
|
||||||
|
/* 9:53 */waypoints[22].children[2] = 79;
|
||||||
|
/* 9:53 */waypoints[23] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[23].origin = (-471.812, 279.935, 195.148);
|
||||||
|
/* 9:53 */waypoints[23].type = "stand";
|
||||||
|
/* 9:53 */waypoints[23].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[23].children[0] = 22;
|
||||||
|
/* 9:53 */waypoints[23].children[1] = 24;
|
||||||
|
/* 9:53 */waypoints[23].children[2] = 39;
|
||||||
|
/* 9:53 */waypoints[24] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[24].origin = (-467.516, 61.9155, 192.077);
|
||||||
|
/* 9:53 */waypoints[24].type = "stand";
|
||||||
|
/* 9:53 */waypoints[24].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[24].children[0] = 23;
|
||||||
|
/* 9:53 */waypoints[24].children[1] = 29;
|
||||||
|
/* 9:53 */waypoints[24].children[2] = 83;
|
||||||
|
/* 9:53 */waypoints[25] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[25].origin = (-490.013, -147.907, 192.077);
|
||||||
|
/* 9:53 */waypoints[25].type = "stand";
|
||||||
|
/* 9:53 */waypoints[25].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[25].children[0] = 0;
|
||||||
|
/* 9:53 */waypoints[25].children[1] = 37;
|
||||||
|
/* 9:53 */waypoints[25].children[2] = 83;
|
||||||
|
/* 9:53 */waypoints[26] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[26].origin = (404.166, -296.141, 196.124);
|
||||||
|
/* 9:53 */waypoints[26].type = "stand";
|
||||||
|
/* 9:53 */waypoints[26].childCount = 4;
|
||||||
|
/* 9:53 */waypoints[26].children[0] = 9;
|
||||||
|
/* 9:53 */waypoints[26].children[1] = 7;
|
||||||
|
/* 9:53 */waypoints[26].children[2] = 5;
|
||||||
|
/* 9:53 */waypoints[26].children[3] = 27;
|
||||||
|
/* 9:53 */waypoints[27] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[27].origin = (179.993, -282.173, 192.565);
|
||||||
|
/* 9:53 */waypoints[27].type = "stand";
|
||||||
|
/* 9:53 */waypoints[27].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[27].children[0] = 26;
|
||||||
|
/* 9:53 */waypoints[27].children[1] = 4;
|
||||||
|
/* 9:53 */waypoints[27].children[2] = 28;
|
||||||
|
/* 9:53 */waypoints[28] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[28].origin = (-11.9686, -299.794, 194.846);
|
||||||
|
/* 9:53 */waypoints[28].type = "stand";
|
||||||
|
/* 9:53 */waypoints[28].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[28].children[0] = 27;
|
||||||
|
/* 9:53 */waypoints[28].children[1] = 36;
|
||||||
|
/* 9:53 */waypoints[28].children[2] = 84;
|
||||||
|
/* 9:53 */waypoints[29] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[29].origin = (3.89531, 52.3469, 196.736);
|
||||||
|
/* 9:53 */waypoints[29].type = "stand";
|
||||||
|
/* 9:53 */waypoints[29].childCount = 4;
|
||||||
|
/* 9:53 */waypoints[29].children[0] = 30;
|
||||||
|
/* 9:53 */waypoints[29].children[1] = 10;
|
||||||
|
/* 9:53 */waypoints[29].children[2] = 24;
|
||||||
|
/* 9:53 */waypoints[29].children[3] = 84;
|
||||||
|
/* 9:53 */waypoints[30] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[30].origin = (6.12919, 194.278, 194.294);
|
||||||
|
/* 9:53 */waypoints[30].type = "stand";
|
||||||
|
/* 9:53 */waypoints[30].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[30].children[0] = 29;
|
||||||
|
/* 9:53 */waypoints[30].children[1] = 31;
|
||||||
|
/* 9:53 */waypoints[30].children[2] = 32;
|
||||||
|
/* 9:53 */waypoints[31] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[31].origin = (276.125, 180.321, 201.125);
|
||||||
|
/* 9:53 */waypoints[31].type = "stand";
|
||||||
|
/* 9:53 */waypoints[31].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[31].children[0] = 30;
|
||||||
|
/* 9:53 */waypoints[31].children[1] = 11;
|
||||||
|
/* 9:53 */waypoints[31].children[2] = 10;
|
||||||
|
/* 9:53 */waypoints[32] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[32].origin = (3.54935, 396.17, 192.492);
|
||||||
|
/* 9:53 */waypoints[32].type = "stand";
|
||||||
|
/* 9:53 */waypoints[32].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[32].children[0] = 30;
|
||||||
|
/* 9:53 */waypoints[32].children[1] = 33;
|
||||||
|
/* 9:53 */waypoints[32].children[2] = 34;
|
||||||
|
/* 9:53 */waypoints[33] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[33].origin = (-195.337, 422.622, 196.074);
|
||||||
|
/* 9:53 */waypoints[33].type = "stand";
|
||||||
|
/* 9:53 */waypoints[33].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[33].children[0] = 32;
|
||||||
|
/* 9:53 */waypoints[33].children[1] = 39;
|
||||||
|
/* 9:53 */waypoints[33].children[2] = 18;
|
||||||
|
/* 9:53 */waypoints[34] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[34].origin = (195.783, 399.768, 195.54);
|
||||||
|
/* 9:53 */waypoints[34].type = "stand";
|
||||||
|
/* 9:53 */waypoints[34].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[34].children[0] = 32;
|
||||||
|
/* 9:53 */waypoints[34].children[1] = 17;
|
||||||
|
/* 9:53 */waypoints[34].children[2] = 35;
|
||||||
|
/* 9:53 */waypoints[35] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[35].origin = (436.087, 429.827, 192.077);
|
||||||
|
/* 9:53 */waypoints[35].type = "stand";
|
||||||
|
/* 9:53 */waypoints[35].childCount = 5;
|
||||||
|
/* 9:53 */waypoints[35].children[0] = 34;
|
||||||
|
/* 9:53 */waypoints[35].children[1] = 11;
|
||||||
|
/* 9:53 */waypoints[35].children[2] = 13;
|
||||||
|
/* 9:53 */waypoints[35].children[3] = 15;
|
||||||
|
/* 9:53 */waypoints[35].children[4] = 17;
|
||||||
|
/* 9:53 */waypoints[36] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[36].origin = (-225.679, -294.882, 192.376);
|
||||||
|
/* 9:53 */waypoints[36].type = "stand";
|
||||||
|
/* 9:53 */waypoints[36].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[36].children[0] = 28;
|
||||||
|
/* 9:53 */waypoints[36].children[1] = 37;
|
||||||
|
/* 9:53 */waypoints[36].children[2] = 3;
|
||||||
|
/* 9:53 */waypoints[37] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[37].origin = (-407.436, -286.456, 202.332);
|
||||||
|
/* 9:53 */waypoints[37].type = "stand";
|
||||||
|
/* 9:53 */waypoints[37].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[37].children[0] = 36;
|
||||||
|
/* 9:53 */waypoints[37].children[1] = 25;
|
||||||
|
/* 9:53 */waypoints[37].children[2] = 38;
|
||||||
|
/* 9:53 */waypoints[38] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[38].origin = (-518.125, -579.692, 192.816);
|
||||||
|
/* 9:53 */waypoints[38].type = "stand";
|
||||||
|
/* 9:53 */waypoints[38].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[38].children[0] = 37;
|
||||||
|
/* 9:53 */waypoints[38].children[1] = 2;
|
||||||
|
/* 9:53 */waypoints[38].children[2] = 3;
|
||||||
|
/* 9:53 */waypoints[39] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[39].origin = (-375.487, 437.212, 194.418);
|
||||||
|
/* 9:53 */waypoints[39].type = "stand";
|
||||||
|
/* 9:53 */waypoints[39].childCount = 4;
|
||||||
|
/* 9:53 */waypoints[39].children[0] = 23;
|
||||||
|
/* 9:53 */waypoints[39].children[1] = 33;
|
||||||
|
/* 9:53 */waypoints[39].children[2] = 19;
|
||||||
|
/* 9:53 */waypoints[39].children[3] = 21;
|
||||||
|
/* 9:53 */waypoints[40] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[40].origin = (2025.97, -517.198, 192.125);
|
||||||
|
/* 9:53 */waypoints[40].type = "stand";
|
||||||
|
/* 9:53 */waypoints[40].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[40].children[0] = 41;
|
||||||
|
/* 9:53 */waypoints[40].children[1] = 59;
|
||||||
|
/* 9:53 */waypoints[41] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[41].origin = (1467.4, -532.27, 194.169);
|
||||||
|
/* 9:53 */waypoints[41].type = "stand";
|
||||||
|
/* 9:53 */waypoints[41].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[41].children[0] = 40;
|
||||||
|
/* 9:53 */waypoints[41].children[1] = 42;
|
||||||
|
/* 9:53 */waypoints[42] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[42].origin = (1466.17, -371.041, 193.194);
|
||||||
|
/* 9:53 */waypoints[42].type = "stand";
|
||||||
|
/* 9:53 */waypoints[42].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[42].children[0] = 41;
|
||||||
|
/* 9:53 */waypoints[42].children[1] = 43;
|
||||||
|
/* 9:53 */waypoints[42].children[2] = 62;
|
||||||
|
/* 9:53 */waypoints[43] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[43].origin = (1038.09, -384.742, 192.557);
|
||||||
|
/* 9:53 */waypoints[43].type = "stand";
|
||||||
|
/* 9:53 */waypoints[43].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[43].children[0] = 42;
|
||||||
|
/* 9:53 */waypoints[43].children[1] = 44;
|
||||||
|
/* 9:53 */waypoints[43].children[2] = 51;
|
||||||
|
/* 9:53 */waypoints[44] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[44].origin = (1023.05, -530.183, 192.125);
|
||||||
|
/* 9:53 */waypoints[44].type = "stand";
|
||||||
|
/* 9:53 */waypoints[44].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[44].children[0] = 43;
|
||||||
|
/* 9:53 */waypoints[44].children[1] = 6;
|
||||||
|
/* 9:53 */waypoints[45] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[45].origin = (945.378, 319.017, 192.419);
|
||||||
|
/* 9:53 */waypoints[45].type = "stand";
|
||||||
|
/* 9:53 */waypoints[45].childCount = 4;
|
||||||
|
/* 9:53 */waypoints[45].children[0] = 12;
|
||||||
|
/* 9:53 */waypoints[45].children[1] = 46;
|
||||||
|
/* 9:53 */waypoints[45].children[2] = 53;
|
||||||
|
/* 9:53 */waypoints[45].children[3] = 54;
|
||||||
|
/* 9:53 */waypoints[46] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[46].origin = (963.131, 32.1251, 194.551);
|
||||||
|
/* 9:53 */waypoints[46].type = "stand";
|
||||||
|
/* 9:53 */waypoints[46].childCount = 4;
|
||||||
|
/* 9:53 */waypoints[46].children[0] = 45;
|
||||||
|
/* 9:53 */waypoints[46].children[1] = 47;
|
||||||
|
/* 9:53 */waypoints[46].children[2] = 51;
|
||||||
|
/* 9:53 */waypoints[46].children[3] = 52;
|
||||||
|
/* 9:53 */waypoints[47] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[47].origin = (782.403, -86.344, 197.367);
|
||||||
|
/* 9:53 */waypoints[47].type = "stand";
|
||||||
|
/* 9:53 */waypoints[47].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[47].children[0] = 46;
|
||||||
|
/* 9:53 */waypoints[47].children[1] = 8;
|
||||||
|
/* 9:53 */waypoints[47].children[2] = 48;
|
||||||
|
/* 9:53 */waypoints[48] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[48].origin = (769.707, 187.133, 324.125);
|
||||||
|
/* 9:53 */waypoints[48].type = "stand";
|
||||||
|
/* 9:53 */waypoints[48].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[48].children[0] = 47;
|
||||||
|
/* 9:53 */waypoints[48].children[1] = 49;
|
||||||
|
/* 9:53 */waypoints[49] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[49].origin = (616.766, 185.265, 324.125);
|
||||||
|
/* 9:53 */waypoints[49].type = "stand";
|
||||||
|
/* 9:53 */waypoints[49].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[49].children[0] = 48;
|
||||||
|
/* 9:53 */waypoints[49].children[1] = 50;
|
||||||
|
/* 9:53 */waypoints[50] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[50].origin = (639.593, 29.6557, 324.125);
|
||||||
|
/* 9:53 */waypoints[50].type = "stand";
|
||||||
|
/* 9:53 */waypoints[50].childCount = 1;
|
||||||
|
/* 9:53 */waypoints[50].children[0] = 49;
|
||||||
|
/* 9:53 */waypoints[51] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[51].origin = (1089.57, -97.3956, 193.451);
|
||||||
|
/* 9:53 */waypoints[51].type = "stand";
|
||||||
|
/* 9:53 */waypoints[51].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[51].children[0] = 43;
|
||||||
|
/* 9:53 */waypoints[51].children[1] = 46;
|
||||||
|
/* 9:53 */waypoints[51].children[2] = 62;
|
||||||
|
/* 9:53 */waypoints[52] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[52].origin = (1210.04, 122.125, 192.358);
|
||||||
|
/* 9:53 */waypoints[52].type = "stand";
|
||||||
|
/* 9:53 */waypoints[52].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[52].children[0] = 46;
|
||||||
|
/* 9:53 */waypoints[52].children[1] = 53;
|
||||||
|
/* 9:53 */waypoints[52].children[2] = 61;
|
||||||
|
/* 9:53 */waypoints[53] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[53].origin = (1117.5, 417.318, 192.125);
|
||||||
|
/* 9:53 */waypoints[53].type = "stand";
|
||||||
|
/* 9:53 */waypoints[53].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[53].children[0] = 52;
|
||||||
|
/* 9:53 */waypoints[53].children[1] = 45;
|
||||||
|
/* 9:53 */waypoints[53].children[2] = 55;
|
||||||
|
/* 9:53 */waypoints[54] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[54].origin = (875.353, 734.602, 192.448);
|
||||||
|
/* 9:53 */waypoints[54].type = "stand";
|
||||||
|
/* 9:53 */waypoints[54].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[54].children[0] = 45;
|
||||||
|
/* 9:53 */waypoints[54].children[1] = 14;
|
||||||
|
/* 9:53 */waypoints[55] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[55].origin = (1335.75, 641.292, 192.125);
|
||||||
|
/* 9:53 */waypoints[55].type = "stand";
|
||||||
|
/* 9:53 */waypoints[55].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[55].children[0] = 53;
|
||||||
|
/* 9:53 */waypoints[55].children[1] = 56;
|
||||||
|
/* 9:53 */waypoints[56] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[56].origin = (1606.4, 581.137, 192.125);
|
||||||
|
/* 9:53 */waypoints[56].type = "stand";
|
||||||
|
/* 9:53 */waypoints[56].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[56].children[0] = 55;
|
||||||
|
/* 9:53 */waypoints[56].children[1] = 57;
|
||||||
|
/* 9:53 */waypoints[56].children[2] = 60;
|
||||||
|
/* 9:53 */waypoints[57] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[57].origin = (1811.03, 571.335, 192.125);
|
||||||
|
/* 9:53 */waypoints[57].type = "stand";
|
||||||
|
/* 9:53 */waypoints[57].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[57].children[0] = 56;
|
||||||
|
/* 9:53 */waypoints[57].children[1] = 58;
|
||||||
|
/* 9:53 */waypoints[58] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[58].origin = (2066.01, 425.637, 192.125);
|
||||||
|
/* 9:53 */waypoints[58].type = "stand";
|
||||||
|
/* 9:53 */waypoints[58].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[58].children[0] = 57;
|
||||||
|
/* 9:53 */waypoints[58].children[1] = 59;
|
||||||
|
/* 9:53 */waypoints[59] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[59].origin = (2019.24, 83.9163, 192.125);
|
||||||
|
/* 9:53 */waypoints[59].type = "stand";
|
||||||
|
/* 9:53 */waypoints[59].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[59].children[0] = 58;
|
||||||
|
/* 9:53 */waypoints[59].children[1] = 40;
|
||||||
|
/* 9:53 */waypoints[59].children[2] = 60;
|
||||||
|
/* 9:53 */waypoints[60] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[60].origin = (1599.6, 138.424, 191.396);
|
||||||
|
/* 9:53 */waypoints[60].type = "stand";
|
||||||
|
/* 9:53 */waypoints[60].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[60].children[0] = 59;
|
||||||
|
/* 9:53 */waypoints[60].children[1] = 61;
|
||||||
|
/* 9:53 */waypoints[60].children[2] = 56;
|
||||||
|
/* 9:53 */waypoints[61] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[61].origin = (1457.82, 89.405, 192.125);
|
||||||
|
/* 9:53 */waypoints[61].type = "stand";
|
||||||
|
/* 9:53 */waypoints[61].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[61].children[0] = 60;
|
||||||
|
/* 9:53 */waypoints[61].children[1] = 52;
|
||||||
|
/* 9:53 */waypoints[61].children[2] = 62;
|
||||||
|
/* 9:53 */waypoints[62] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[62].origin = (1446.64, -123.86, 193.648);
|
||||||
|
/* 9:53 */waypoints[62].type = "stand";
|
||||||
|
/* 9:53 */waypoints[62].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[62].children[0] = 61;
|
||||||
|
/* 9:53 */waypoints[62].children[1] = 42;
|
||||||
|
/* 9:53 */waypoints[62].children[2] = 51;
|
||||||
|
/* 9:53 */waypoints[63] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[63].origin = (-946.43, 705.196, 193.796);
|
||||||
|
/* 9:53 */waypoints[63].type = "stand";
|
||||||
|
/* 9:53 */waypoints[63].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[63].children[0] = 20;
|
||||||
|
/* 9:53 */waypoints[63].children[1] = 64;
|
||||||
|
/* 9:53 */waypoints[64] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[64].origin = (-1048.27, 371.155, 193.951);
|
||||||
|
/* 9:53 */waypoints[64].type = "stand";
|
||||||
|
/* 9:53 */waypoints[64].childCount = 4;
|
||||||
|
/* 9:53 */waypoints[64].children[0] = 63;
|
||||||
|
/* 9:53 */waypoints[64].children[1] = 65;
|
||||||
|
/* 9:53 */waypoints[64].children[2] = 79;
|
||||||
|
/* 9:53 */waypoints[64].children[3] = 80;
|
||||||
|
/* 9:53 */waypoints[65] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[65].origin = (-1302.73, 587.611, 190.097);
|
||||||
|
/* 9:53 */waypoints[65].type = "stand";
|
||||||
|
/* 9:53 */waypoints[65].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[65].children[0] = 64;
|
||||||
|
/* 9:53 */waypoints[65].children[1] = 66;
|
||||||
|
/* 9:53 */waypoints[66] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[66].origin = (-1603.54, 627.129, 183.775);
|
||||||
|
/* 9:53 */waypoints[66].type = "stand";
|
||||||
|
/* 9:53 */waypoints[66].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[66].children[0] = 65;
|
||||||
|
/* 9:53 */waypoints[66].children[1] = 67;
|
||||||
|
/* 9:53 */waypoints[66].children[2] = 82;
|
||||||
|
/* 9:53 */waypoints[67] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[67].origin = (-2096.17, 406.04, 192.125);
|
||||||
|
/* 9:53 */waypoints[67].type = "stand";
|
||||||
|
/* 9:53 */waypoints[67].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[67].children[0] = 66;
|
||||||
|
/* 9:53 */waypoints[67].children[1] = 68;
|
||||||
|
/* 9:53 */waypoints[68] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[68].origin = (-2026.21, 64.5417, 192.125);
|
||||||
|
/* 9:53 */waypoints[68].type = "stand";
|
||||||
|
/* 9:53 */waypoints[68].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[68].children[0] = 67;
|
||||||
|
/* 9:53 */waypoints[68].children[1] = 69;
|
||||||
|
/* 9:53 */waypoints[68].children[2] = 82;
|
||||||
|
/* 9:53 */waypoints[69] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[69].origin = (-1984.92, -535.71, 192.125);
|
||||||
|
/* 9:53 */waypoints[69].type = "stand";
|
||||||
|
/* 9:53 */waypoints[69].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[69].children[0] = 68;
|
||||||
|
/* 9:53 */waypoints[69].children[1] = 70;
|
||||||
|
/* 9:53 */waypoints[70] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[70].origin = (-1512.78, -532.514, 192.125);
|
||||||
|
/* 9:53 */waypoints[70].type = "stand";
|
||||||
|
/* 9:53 */waypoints[70].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[70].children[0] = 69;
|
||||||
|
/* 9:53 */waypoints[70].children[1] = 71;
|
||||||
|
/* 9:53 */waypoints[71] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[71].origin = (-1521.43, -354.801, 192.992);
|
||||||
|
/* 9:53 */waypoints[71].type = "stand";
|
||||||
|
/* 9:53 */waypoints[71].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[71].children[0] = 70;
|
||||||
|
/* 9:53 */waypoints[71].children[1] = 72;
|
||||||
|
/* 9:53 */waypoints[71].children[2] = 81;
|
||||||
|
/* 9:53 */waypoints[72] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[72].origin = (-1076.28, -345.719, 192.125);
|
||||||
|
/* 9:53 */waypoints[72].type = "stand";
|
||||||
|
/* 9:53 */waypoints[72].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[72].children[0] = 71;
|
||||||
|
/* 9:53 */waypoints[72].children[1] = 73;
|
||||||
|
/* 9:53 */waypoints[72].children[2] = 74;
|
||||||
|
/* 9:53 */waypoints[73] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[73].origin = (-1052.81, -541.585, 199.426);
|
||||||
|
/* 9:53 */waypoints[73].type = "stand";
|
||||||
|
/* 9:53 */waypoints[73].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[73].children[0] = 72;
|
||||||
|
/* 9:53 */waypoints[73].children[1] = 2;
|
||||||
|
/* 9:53 */waypoints[74] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[74].origin = (-1089.18, 2.40356, 187.904);
|
||||||
|
/* 9:53 */waypoints[74].type = "stand";
|
||||||
|
/* 9:53 */waypoints[74].childCount = 4;
|
||||||
|
/* 9:53 */waypoints[74].children[0] = 72;
|
||||||
|
/* 9:53 */waypoints[74].children[1] = 75;
|
||||||
|
/* 9:53 */waypoints[74].children[2] = 79;
|
||||||
|
/* 9:53 */waypoints[74].children[3] = 81;
|
||||||
|
/* 9:53 */waypoints[75] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[75].origin = (-831.465, -86.1712, 198.123);
|
||||||
|
/* 9:53 */waypoints[75].type = "stand";
|
||||||
|
/* 9:53 */waypoints[75].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[75].children[0] = 74;
|
||||||
|
/* 9:53 */waypoints[75].children[1] = 76;
|
||||||
|
/* 9:53 */waypoints[75].children[2] = 0;
|
||||||
|
/* 9:53 */waypoints[76] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[76].origin = (-808.38, 185.993, 324.125);
|
||||||
|
/* 9:53 */waypoints[76].type = "stand";
|
||||||
|
/* 9:53 */waypoints[76].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[76].children[0] = 75;
|
||||||
|
/* 9:53 */waypoints[76].children[1] = 77;
|
||||||
|
/* 9:53 */waypoints[77] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[77].origin = (-646.857, 154.506, 324.125);
|
||||||
|
/* 9:53 */waypoints[77].type = "stand";
|
||||||
|
/* 9:53 */waypoints[77].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[77].children[0] = 76;
|
||||||
|
/* 9:53 */waypoints[77].children[1] = 78;
|
||||||
|
/* 9:53 */waypoints[78] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[78].origin = (-664.71, 10.9477, 324.125);
|
||||||
|
/* 9:53 */waypoints[78].type = "stand";
|
||||||
|
/* 9:53 */waypoints[78].childCount = 1;
|
||||||
|
/* 9:53 */waypoints[78].children[0] = 77;
|
||||||
|
/* 9:53 */waypoints[79] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[79].origin = (-876.227, 258.675, 199.656);
|
||||||
|
/* 9:53 */waypoints[79].type = "stand";
|
||||||
|
/* 9:53 */waypoints[79].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[79].children[0] = 74;
|
||||||
|
/* 9:53 */waypoints[79].children[1] = 22;
|
||||||
|
/* 9:53 */waypoints[79].children[2] = 64;
|
||||||
|
/* 9:53 */waypoints[80] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[80].origin = (-1265.17, 245.717, 194.318);
|
||||||
|
/* 9:53 */waypoints[80].type = "stand";
|
||||||
|
/* 9:53 */waypoints[80].childCount = 2;
|
||||||
|
/* 9:53 */waypoints[80].children[0] = 64;
|
||||||
|
/* 9:53 */waypoints[80].children[1] = 81;
|
||||||
|
/* 9:53 */waypoints[81] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[81].origin = (-1477.95, 59.1839, 190.516);
|
||||||
|
/* 9:53 */waypoints[81].type = "stand";
|
||||||
|
/* 9:53 */waypoints[81].childCount = 4;
|
||||||
|
/* 9:53 */waypoints[81].children[0] = 80;
|
||||||
|
/* 9:53 */waypoints[81].children[1] = 71;
|
||||||
|
/* 9:53 */waypoints[81].children[2] = 74;
|
||||||
|
/* 9:53 */waypoints[81].children[3] = 82;
|
||||||
|
/* 9:53 */waypoints[82] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[82].origin = (-1656.02, 117.647, 190.447);
|
||||||
|
/* 9:53 */waypoints[82].type = "stand";
|
||||||
|
/* 9:53 */waypoints[82].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[82].children[0] = 81;
|
||||||
|
/* 9:53 */waypoints[82].children[1] = 68;
|
||||||
|
/* 9:53 */waypoints[82].children[2] = 66;
|
||||||
|
/* 9:53 */waypoints[83] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[83].origin = (-488.853, -44.8883, 192.077);
|
||||||
|
/* 9:53 */waypoints[83].type = "stand";
|
||||||
|
/* 9:53 */waypoints[83].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[83].children[0] = 24;
|
||||||
|
/* 9:53 */waypoints[83].children[1] = 25;
|
||||||
|
/* 9:53 */waypoints[83].children[2] = 84;
|
||||||
|
/* 9:53 */waypoints[84] = spawnstruct();
|
||||||
|
/* 9:53 */waypoints[84].origin = (-1.94602, -66.4622, 196.525);
|
||||||
|
/* 9:53 */waypoints[84].type = "stand";
|
||||||
|
/* 9:53 */waypoints[84].childCount = 3;
|
||||||
|
/* 9:53 */waypoints[84].children[0] = 83;
|
||||||
|
/* 9:53 */waypoints[84].children[1] = 29;
|
||||||
|
/* 9:53 */waypoints[84].children[2] = 28;
|
||||||
|
/* 9:53 */return waypoints;
|
||||||
|
}
|
1361
mods/bots/maps/mp/bots/waypoints/skidrow.gsc
Normal file
1361
mods/bots/maps/mp/bots/waypoints/skidrow.gsc
Normal file
File diff suppressed because it is too large
Load Diff
1673
mods/bots/maps/mp/bots/waypoints/storm.gsc
Normal file
1673
mods/bots/maps/mp/bots/waypoints/storm.gsc
Normal file
File diff suppressed because it is too large
Load Diff
2415
mods/bots/maps/mp/bots/waypoints/strike.gsc
Normal file
2415
mods/bots/maps/mp/bots/waypoints/strike.gsc
Normal file
File diff suppressed because it is too large
Load Diff
1171
mods/bots/maps/mp/bots/waypoints/subbase.gsc
Normal file
1171
mods/bots/maps/mp/bots/waypoints/subbase.gsc
Normal file
File diff suppressed because it is too large
Load Diff
1432
mods/bots/maps/mp/bots/waypoints/terminal.gsc
Normal file
1432
mods/bots/maps/mp/bots/waypoints/terminal.gsc
Normal file
File diff suppressed because it is too large
Load Diff
233
mods/bots/maps/mp/bots/waypoints/testmap.gsc
Normal file
233
mods/bots/maps/mp/bots/waypoints/testmap.gsc
Normal file
@ -0,0 +1,233 @@
|
|||||||
|
TestMap()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
waypoints[0] = spawnstruct();
|
||||||
|
waypoints[0].origin =(-1.01495, 490.006, -63.875);
|
||||||
|
waypoints[0].type = "stand";
|
||||||
|
waypoints[0].childCount = 5;
|
||||||
|
waypoints[0].children[0] = 1;
|
||||||
|
waypoints[0].children[1] = 14;
|
||||||
|
waypoints[0].children[2] = 15;
|
||||||
|
waypoints[0].children[3] = 13;
|
||||||
|
waypoints[0].children[4] = 21;
|
||||||
|
waypoints[1] = spawnstruct();
|
||||||
|
waypoints[1].origin =(461.337, 489.549, -63.875);
|
||||||
|
waypoints[1].type = "stand";
|
||||||
|
waypoints[1].childCount = 6;
|
||||||
|
waypoints[1].children[0] = 0;
|
||||||
|
waypoints[1].children[1] = 2;
|
||||||
|
waypoints[1].children[2] = 18;
|
||||||
|
waypoints[1].children[3] = 18;
|
||||||
|
waypoints[1].children[4] = 18;
|
||||||
|
waypoints[1].children[5] = 20;
|
||||||
|
waypoints[2] = spawnstruct();
|
||||||
|
waypoints[2].origin =(655.728, 493.466, -63.875);
|
||||||
|
waypoints[2].type = "stand";
|
||||||
|
waypoints[2].childCount = 2;
|
||||||
|
waypoints[2].children[0] = 1;
|
||||||
|
waypoints[2].children[1] = 3;
|
||||||
|
waypoints[3] = spawnstruct();
|
||||||
|
waypoints[3].origin =(685.795, -23.2244, -63.875);
|
||||||
|
waypoints[3].type = "stand";
|
||||||
|
waypoints[3].childCount = 3;
|
||||||
|
waypoints[3].children[0] = 2;
|
||||||
|
waypoints[3].children[1] = 4;
|
||||||
|
waypoints[3].children[2] = 18;
|
||||||
|
waypoints[4] = spawnstruct();
|
||||||
|
waypoints[4].origin =(685.753, -490.267, -63.875);
|
||||||
|
waypoints[4].type = "stand";
|
||||||
|
waypoints[4].childCount = 2;
|
||||||
|
waypoints[4].children[0] = 3;
|
||||||
|
waypoints[4].children[1] = 5;
|
||||||
|
waypoints[5] = spawnstruct();
|
||||||
|
waypoints[5].origin =(697.191, -603.442, -63.875);
|
||||||
|
waypoints[5].type = "stand";
|
||||||
|
waypoints[5].childCount = 2;
|
||||||
|
waypoints[5].children[0] = 4;
|
||||||
|
waypoints[5].children[1] = 7;
|
||||||
|
waypoints[6] = spawnstruct();
|
||||||
|
waypoints[6].origin =(-67.4587, -590.356, -63.875);
|
||||||
|
waypoints[6].type = "stand";
|
||||||
|
waypoints[6].childCount = 4;
|
||||||
|
waypoints[6].children[0] = 7;
|
||||||
|
waypoints[6].children[1] = 8;
|
||||||
|
waypoints[6].children[2] = 16;
|
||||||
|
waypoints[6].children[3] = 24;
|
||||||
|
waypoints[7] = spawnstruct();
|
||||||
|
waypoints[7].origin =(343.56, -587.272, -63.875);
|
||||||
|
waypoints[7].type = "stand";
|
||||||
|
waypoints[7].childCount = 3;
|
||||||
|
waypoints[7].children[0] = 5;
|
||||||
|
waypoints[7].children[1] = 6;
|
||||||
|
waypoints[7].children[2] = 19;
|
||||||
|
waypoints[8] = spawnstruct();
|
||||||
|
waypoints[8].origin =(-572.202, -593.835, -63.875);
|
||||||
|
waypoints[8].type = "stand";
|
||||||
|
waypoints[8].childCount = 3;
|
||||||
|
waypoints[8].children[0] = 6;
|
||||||
|
waypoints[8].children[1] = 9;
|
||||||
|
waypoints[8].children[2] = 16;
|
||||||
|
waypoints[9] = spawnstruct();
|
||||||
|
waypoints[9].origin =(-752.875, -591.781, -63.875);
|
||||||
|
waypoints[9].type = "stand";
|
||||||
|
waypoints[9].childCount = 2;
|
||||||
|
waypoints[9].children[0] = 8;
|
||||||
|
waypoints[9].children[1] = 10;
|
||||||
|
waypoints[10] = spawnstruct();
|
||||||
|
waypoints[10].origin =(-726.027, -323.589, -63.875);
|
||||||
|
waypoints[10].type = "stand";
|
||||||
|
waypoints[10].childCount = 3;
|
||||||
|
waypoints[10].children[0] = 9;
|
||||||
|
waypoints[10].children[1] = 11;
|
||||||
|
waypoints[10].children[2] = 16;
|
||||||
|
waypoints[11] = spawnstruct();
|
||||||
|
waypoints[11].origin =(-720.13, 115.657, -63.875);
|
||||||
|
waypoints[11].type = "stand";
|
||||||
|
waypoints[11].childCount = 4;
|
||||||
|
waypoints[11].children[0] = 10;
|
||||||
|
waypoints[11].children[1] = 12;
|
||||||
|
waypoints[11].children[2] = 16;
|
||||||
|
waypoints[11].children[3] = 15;
|
||||||
|
waypoints[12] = spawnstruct();
|
||||||
|
waypoints[12].origin =(-721.257, 533.811, -63.875);
|
||||||
|
waypoints[12].type = "stand";
|
||||||
|
waypoints[12].childCount = 3;
|
||||||
|
waypoints[12].children[0] = 11;
|
||||||
|
waypoints[12].children[1] = 13;
|
||||||
|
waypoints[12].children[2] = 27;
|
||||||
|
waypoints[13] = spawnstruct();
|
||||||
|
waypoints[13].origin =(-220.422, 593.421, -63.875);
|
||||||
|
waypoints[13].type = "stand";
|
||||||
|
waypoints[13].childCount = 4;
|
||||||
|
waypoints[13].children[0] = 12;
|
||||||
|
waypoints[13].children[1] = 14;
|
||||||
|
waypoints[13].children[2] = 0;
|
||||||
|
waypoints[13].children[3] = 15;
|
||||||
|
waypoints[14] = spawnstruct();
|
||||||
|
waypoints[14].origin =(-28.2908, 599.348, -63.875);
|
||||||
|
waypoints[14].type = "stand";
|
||||||
|
waypoints[14].childCount = 2;
|
||||||
|
waypoints[14].children[0] = 0;
|
||||||
|
waypoints[14].children[1] = 13;
|
||||||
|
waypoints[15] = spawnstruct();
|
||||||
|
waypoints[15].origin =(-258.609, 6.70396, -63.875);
|
||||||
|
waypoints[15].type = "stand";
|
||||||
|
waypoints[15].childCount = 7;
|
||||||
|
waypoints[15].children[0] = 0;
|
||||||
|
waypoints[15].children[1] = 16;
|
||||||
|
waypoints[15].children[2] = 11;
|
||||||
|
waypoints[15].children[3] = 13;
|
||||||
|
waypoints[15].children[4] = 17;
|
||||||
|
waypoints[15].children[5] = 23;
|
||||||
|
waypoints[15].children[6] = 27;
|
||||||
|
waypoints[16] = spawnstruct();
|
||||||
|
waypoints[16].origin =(-467.668, -343.397, -63.875);
|
||||||
|
waypoints[16].type = "stand";
|
||||||
|
waypoints[16].childCount = 5;
|
||||||
|
waypoints[16].children[0] = 15;
|
||||||
|
waypoints[16].children[1] = 8;
|
||||||
|
waypoints[16].children[2] = 11;
|
||||||
|
waypoints[16].children[3] = 6;
|
||||||
|
waypoints[16].children[4] = 10;
|
||||||
|
waypoints[17] = spawnstruct();
|
||||||
|
waypoints[17].origin =(99.6763, -61.88, -63.875);
|
||||||
|
waypoints[17].type = "stand";
|
||||||
|
waypoints[17].childCount = 6;
|
||||||
|
waypoints[17].children[0] = 15;
|
||||||
|
waypoints[17].children[1] = 18;
|
||||||
|
waypoints[17].children[2] = 21;
|
||||||
|
waypoints[17].children[3] = 22;
|
||||||
|
waypoints[17].children[4] = 25;
|
||||||
|
waypoints[17].children[5] = 25;
|
||||||
|
waypoints[18] = spawnstruct();
|
||||||
|
waypoints[18].origin =(439.094, -60.3452, -63.875);
|
||||||
|
waypoints[18].type = "stand";
|
||||||
|
waypoints[18].childCount = 7;
|
||||||
|
waypoints[18].children[0] = 17;
|
||||||
|
waypoints[18].children[1] = 3;
|
||||||
|
waypoints[18].children[2] = 1;
|
||||||
|
waypoints[18].children[3] = 1;
|
||||||
|
waypoints[18].children[4] = 1;
|
||||||
|
waypoints[18].children[5] = 19;
|
||||||
|
waypoints[18].children[6] = 20;
|
||||||
|
waypoints[19] = spawnstruct();
|
||||||
|
waypoints[19].origin =(426.874, -327.668, -63.875);
|
||||||
|
waypoints[19].type = "stand";
|
||||||
|
waypoints[19].childCount = 2;
|
||||||
|
waypoints[19].children[0] = 18;
|
||||||
|
waypoints[19].children[1] = 7;
|
||||||
|
waypoints[20] = spawnstruct();
|
||||||
|
waypoints[20].origin =(383.704, 241.401, -63.875);
|
||||||
|
waypoints[20].type = "stand";
|
||||||
|
waypoints[20].childCount = 3;
|
||||||
|
waypoints[20].children[0] = 18;
|
||||||
|
waypoints[20].children[1] = 1;
|
||||||
|
waypoints[20].children[2] = 22;
|
||||||
|
waypoints[21] = spawnstruct();
|
||||||
|
waypoints[21].origin =(119.403, 231.893, -63.875);
|
||||||
|
waypoints[21].type = "stand";
|
||||||
|
waypoints[21].childCount = 4;
|
||||||
|
waypoints[21].children[0] = 17;
|
||||||
|
waypoints[21].children[1] = 0;
|
||||||
|
waypoints[21].children[2] = 22;
|
||||||
|
waypoints[21].children[3] = 23;
|
||||||
|
waypoints[22] = spawnstruct();
|
||||||
|
waypoints[22].origin =(241.672, 173.537, -63.875);
|
||||||
|
waypoints[22].type = "stand";
|
||||||
|
waypoints[22].childCount = 4;
|
||||||
|
waypoints[22].children[0] = 20;
|
||||||
|
waypoints[22].children[1] = 17;
|
||||||
|
waypoints[22].children[2] = 21;
|
||||||
|
waypoints[22].children[3] = 26;
|
||||||
|
waypoints[23] = spawnstruct();
|
||||||
|
waypoints[23].origin =(7.42357, 184.274, -63.875);
|
||||||
|
waypoints[23].type = "stand";
|
||||||
|
waypoints[23].childCount = 2;
|
||||||
|
waypoints[23].children[0] = 15;
|
||||||
|
waypoints[23].children[1] = 21;
|
||||||
|
waypoints[24] = spawnstruct();
|
||||||
|
waypoints[24].origin =(-90.5587, -297.083, -63.875);
|
||||||
|
waypoints[24].type = "stand";
|
||||||
|
waypoints[24].childCount = 2;
|
||||||
|
waypoints[24].children[0] = 25;
|
||||||
|
waypoints[24].children[1] = 6;
|
||||||
|
waypoints[25] = spawnstruct();
|
||||||
|
waypoints[25].origin =(12.887, -197.818, -63.875);
|
||||||
|
waypoints[25].type = "stand";
|
||||||
|
waypoints[25].childCount = 4;
|
||||||
|
waypoints[25].children[0] = 17;
|
||||||
|
waypoints[25].children[1] = 17;
|
||||||
|
waypoints[25].children[2] = 24;
|
||||||
|
waypoints[25].children[3] = 28;
|
||||||
|
waypoints[26] = spawnstruct();
|
||||||
|
waypoints[26].origin =(257.245, 479.599, -63.875);
|
||||||
|
waypoints[26].type = "stand";
|
||||||
|
waypoints[26].childCount = 1;
|
||||||
|
waypoints[26].children[0] = 22;
|
||||||
|
waypoints[27] = spawnstruct();
|
||||||
|
waypoints[27].origin =(-434.592, 275.541, -63.875);
|
||||||
|
waypoints[27].type = "stand";
|
||||||
|
waypoints[27].childCount = 3;
|
||||||
|
waypoints[27].children[0] = 12;
|
||||||
|
waypoints[27].children[1] = 15;
|
||||||
|
waypoints[27].children[2] = 30;
|
||||||
|
waypoints[28] = spawnstruct();
|
||||||
|
waypoints[28].origin =(-318.531, -100.442, -63.875);
|
||||||
|
waypoints[28].type = "stand";
|
||||||
|
waypoints[28].childCount = 2;
|
||||||
|
waypoints[28].children[0] = 25;
|
||||||
|
waypoints[28].children[1] = 29;
|
||||||
|
waypoints[29] = spawnstruct();
|
||||||
|
waypoints[29].origin =(-397, 14.8198, -63.875);
|
||||||
|
waypoints[29].type = "stand";
|
||||||
|
waypoints[29].childCount = 2;
|
||||||
|
waypoints[29].children[0] = 28;
|
||||||
|
waypoints[29].children[1] = 30;
|
||||||
|
waypoints[30] = spawnstruct();
|
||||||
|
waypoints[30].origin =(-404.831, 63.7778, -63.875);
|
||||||
|
waypoints[30].type = "stand";
|
||||||
|
waypoints[30].childCount = 2;
|
||||||
|
waypoints[30].children[0] = 29;
|
||||||
|
waypoints[30].children[1] = 27;
|
||||||
|
return waypoints;
|
||||||
|
}
|
1103
mods/bots/maps/mp/bots/waypoints/trailerpark.gsc
Normal file
1103
mods/bots/maps/mp/bots/waypoints/trailerpark.gsc
Normal file
File diff suppressed because it is too large
Load Diff
533
mods/bots/maps/mp/bots/waypoints/trainer.gsc
Normal file
533
mods/bots/maps/mp/bots/waypoints/trainer.gsc
Normal file
@ -0,0 +1,533 @@
|
|||||||
|
Trainer()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
/* 13:26 */waypoints[0] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[0].origin =(-5430.69, 2682.93, -47.875);
|
||||||
|
/* 13:26 */waypoints[0].type = "stand";
|
||||||
|
/* 13:26 */waypoints[0].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[0].children[0] = 1;
|
||||||
|
/* 13:26 */waypoints[0].children[1] = 9;
|
||||||
|
/* 13:26 */waypoints[0].children[2] = 46;
|
||||||
|
/* 13:26 */waypoints[1] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[1].origin =(-5726.93, 2673.99, -47.875);
|
||||||
|
/* 13:26 */waypoints[1].type = "stand";
|
||||||
|
/* 13:26 */waypoints[1].childCount = 4;
|
||||||
|
/* 13:26 */waypoints[1].children[0] = 0;
|
||||||
|
/* 13:26 */waypoints[1].children[1] = 4;
|
||||||
|
/* 13:26 */waypoints[1].children[2] = 10;
|
||||||
|
/* 13:26 */waypoints[1].children[3] = 77;
|
||||||
|
/* 13:26 */waypoints[2] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[2].origin =(-5423.53, 2957.42, -47.875);
|
||||||
|
/* 13:26 */waypoints[2].type = "stand";
|
||||||
|
/* 13:26 */waypoints[2].childCount = 5;
|
||||||
|
/* 13:26 */waypoints[2].children[0] = 3;
|
||||||
|
/* 13:26 */waypoints[2].children[1] = 9;
|
||||||
|
/* 13:26 */waypoints[2].children[2] = 50;
|
||||||
|
/* 13:26 */waypoints[2].children[3] = 51;
|
||||||
|
/* 13:26 */waypoints[2].children[4] = 74;
|
||||||
|
/* 13:26 */waypoints[3] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[3].origin =(-5674.4, 2958.99, -47.875);
|
||||||
|
/* 13:26 */waypoints[3].type = "stand";
|
||||||
|
/* 13:26 */waypoints[3].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[3].children[0] = 2;
|
||||||
|
/* 13:26 */waypoints[3].children[1] = 10;
|
||||||
|
/* 13:26 */waypoints[3].children[2] = 77;
|
||||||
|
/* 13:26 */waypoints[4] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[4].origin =(-5721.98, 2294.47, -183.875);
|
||||||
|
/* 13:26 */waypoints[4].type = "stand";
|
||||||
|
/* 13:26 */waypoints[4].childCount = 4;
|
||||||
|
/* 13:26 */waypoints[4].children[0] = 1;
|
||||||
|
/* 13:26 */waypoints[4].children[1] = 5;
|
||||||
|
/* 13:26 */waypoints[4].children[2] = 7;
|
||||||
|
/* 13:26 */waypoints[4].children[3] = 8;
|
||||||
|
/* 13:26 */waypoints[5] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[5].origin =(-5706.58, 2043.68, -183.875);
|
||||||
|
/* 13:26 */waypoints[5].type = "stand";
|
||||||
|
/* 13:26 */waypoints[5].childCount = 2;
|
||||||
|
/* 13:26 */waypoints[5].children[0] = 4;
|
||||||
|
/* 13:26 */waypoints[5].children[1] = 6;
|
||||||
|
/* 13:26 */waypoints[6] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[6].origin =(-5439.74, 2075.55, -183.875);
|
||||||
|
/* 13:26 */waypoints[6].type = "stand";
|
||||||
|
/* 13:26 */waypoints[6].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[6].children[0] = 5;
|
||||||
|
/* 13:26 */waypoints[6].children[1] = 7;
|
||||||
|
/* 13:26 */waypoints[6].children[2] = 35;
|
||||||
|
/* 13:26 */waypoints[7] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[7].origin =(-5461, 2260.07, -183.875);
|
||||||
|
/* 13:26 */waypoints[7].type = "stand";
|
||||||
|
/* 13:26 */waypoints[7].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[7].children[0] = 6;
|
||||||
|
/* 13:26 */waypoints[7].children[1] = 4;
|
||||||
|
/* 13:26 */waypoints[7].children[2] = 8;
|
||||||
|
/* 13:26 */waypoints[8] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[8].origin =(-5511.12, 2437.66, -183.875);
|
||||||
|
/* 13:26 */waypoints[8].type = "stand";
|
||||||
|
/* 13:26 */waypoints[8].childCount = 6;
|
||||||
|
/* 13:26 */waypoints[8].children[0] = 7;
|
||||||
|
/* 13:26 */waypoints[8].children[1] = 4;
|
||||||
|
/* 13:26 */waypoints[8].children[2] = 52;
|
||||||
|
/* 13:26 */waypoints[8].children[3] = 53;
|
||||||
|
/* 13:26 */waypoints[8].children[4] = 54;
|
||||||
|
/* 13:26 */waypoints[8].children[5] = 76;
|
||||||
|
/* 13:26 */waypoints[9] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[9].origin =(-5403.86, 2804.39, -47.875);
|
||||||
|
/* 13:26 */waypoints[9].type = "stand";
|
||||||
|
/* 13:26 */waypoints[9].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[9].children[0] = 0;
|
||||||
|
/* 13:26 */waypoints[9].children[1] = 2;
|
||||||
|
/* 13:26 */waypoints[9].children[2] = 11;
|
||||||
|
/* 13:26 */waypoints[10] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[10].origin =(-5574.18, 2789.4, -47.875);
|
||||||
|
/* 13:26 */waypoints[10].type = "stand";
|
||||||
|
/* 13:26 */waypoints[10].childCount = 2;
|
||||||
|
/* 13:26 */waypoints[10].children[0] = 1;
|
||||||
|
/* 13:26 */waypoints[10].children[1] = 3;
|
||||||
|
/* 13:26 */waypoints[11] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[11].origin =(-5152.24, 2791.42, -187.544);
|
||||||
|
/* 13:26 */waypoints[11].type = "stand";
|
||||||
|
/* 13:26 */waypoints[11].childCount = 5;
|
||||||
|
/* 13:26 */waypoints[11].children[0] = 9;
|
||||||
|
/* 13:26 */waypoints[11].children[1] = 12;
|
||||||
|
/* 13:26 */waypoints[11].children[2] = 14;
|
||||||
|
/* 13:26 */waypoints[11].children[3] = 15;
|
||||||
|
/* 13:26 */waypoints[11].children[4] = 16;
|
||||||
|
/* 13:26 */waypoints[12] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[12].origin =(-5158.48, 2951.87, -191.875);
|
||||||
|
/* 13:26 */waypoints[12].type = "stand";
|
||||||
|
/* 13:26 */waypoints[12].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[12].children[0] = 11;
|
||||||
|
/* 13:26 */waypoints[12].children[1] = 13;
|
||||||
|
/* 13:26 */waypoints[12].children[2] = 56;
|
||||||
|
/* 13:26 */waypoints[13] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[13].origin =(-5282.38, 2947.94, -191.301);
|
||||||
|
/* 13:26 */waypoints[13].type = "stand";
|
||||||
|
/* 13:26 */waypoints[13].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[13].children[0] = 12;
|
||||||
|
/* 13:26 */waypoints[13].children[1] = 14;
|
||||||
|
/* 13:26 */waypoints[13].children[2] = 73;
|
||||||
|
/* 13:26 */waypoints[14] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[14].origin =(-5304.06, 2654.96, -156.353);
|
||||||
|
/* 13:26 */waypoints[14].type = "stand";
|
||||||
|
/* 13:26 */waypoints[14].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[14].children[0] = 13;
|
||||||
|
/* 13:26 */waypoints[14].children[1] = 11;
|
||||||
|
/* 13:26 */waypoints[14].children[2] = 72;
|
||||||
|
/* 13:26 */waypoints[15] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[15].origin =(-5050.18, 2667.08, -191.764);
|
||||||
|
/* 13:26 */waypoints[15].type = "stand";
|
||||||
|
/* 13:26 */waypoints[15].childCount = 4;
|
||||||
|
/* 13:26 */waypoints[15].children[0] = 11;
|
||||||
|
/* 13:26 */waypoints[15].children[1] = 16;
|
||||||
|
/* 13:26 */waypoints[15].children[2] = 18;
|
||||||
|
/* 13:26 */waypoints[15].children[3] = 59;
|
||||||
|
/* 13:26 */waypoints[16] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[16].origin =(-5029.92, 2946.53, -191.875);
|
||||||
|
/* 13:26 */waypoints[16].type = "stand";
|
||||||
|
/* 13:26 */waypoints[16].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[16].children[0] = 15;
|
||||||
|
/* 13:26 */waypoints[16].children[1] = 17;
|
||||||
|
/* 13:26 */waypoints[16].children[2] = 11;
|
||||||
|
/* 13:26 */waypoints[17] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[17].origin =(-4891.88, 2962.91, -191.875);
|
||||||
|
/* 13:26 */waypoints[17].type = "stand";
|
||||||
|
/* 13:26 */waypoints[17].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[17].children[0] = 16;
|
||||||
|
/* 13:26 */waypoints[17].children[1] = 18;
|
||||||
|
/* 13:26 */waypoints[17].children[2] = 20;
|
||||||
|
/* 13:26 */waypoints[18] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[18].origin =(-4833.83, 2637.74, -188.686);
|
||||||
|
/* 13:26 */waypoints[18].type = "stand";
|
||||||
|
/* 13:26 */waypoints[18].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[18].children[0] = 17;
|
||||||
|
/* 13:26 */waypoints[18].children[1] = 15;
|
||||||
|
/* 13:26 */waypoints[18].children[2] = 19;
|
||||||
|
/* 13:26 */waypoints[19] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[19].origin =(-4631.05, 2842.71, -191.369);
|
||||||
|
/* 13:26 */waypoints[19].type = "stand";
|
||||||
|
/* 13:26 */waypoints[19].childCount = 4;
|
||||||
|
/* 13:26 */waypoints[19].children[0] = 18;
|
||||||
|
/* 13:26 */waypoints[19].children[1] = 20;
|
||||||
|
/* 13:26 */waypoints[19].children[2] = 21;
|
||||||
|
/* 13:26 */waypoints[19].children[3] = 24;
|
||||||
|
/* 13:26 */waypoints[20] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[20].origin =(-4762.93, 2959.61, -191.875);
|
||||||
|
/* 13:26 */waypoints[20].type = "stand";
|
||||||
|
/* 13:26 */waypoints[20].childCount = 2;
|
||||||
|
/* 13:26 */waypoints[20].children[0] = 19;
|
||||||
|
/* 13:26 */waypoints[20].children[1] = 17;
|
||||||
|
/* 13:26 */waypoints[21] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[21].origin =(-4594.73, 2628.5, -188.187);
|
||||||
|
/* 13:26 */waypoints[21].type = "stand";
|
||||||
|
/* 13:26 */waypoints[21].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[21].children[0] = 19;
|
||||||
|
/* 13:26 */waypoints[21].children[1] = 22;
|
||||||
|
/* 13:26 */waypoints[21].children[2] = 57;
|
||||||
|
/* 13:26 */waypoints[22] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[22].origin =(-4333.74, 2667, -190.766);
|
||||||
|
/* 13:26 */waypoints[22].type = "stand";
|
||||||
|
/* 13:26 */waypoints[22].childCount = 4;
|
||||||
|
/* 13:26 */waypoints[22].children[0] = 21;
|
||||||
|
/* 13:26 */waypoints[22].children[1] = 23;
|
||||||
|
/* 13:26 */waypoints[22].children[2] = 58;
|
||||||
|
/* 13:26 */waypoints[22].children[3] = 71;
|
||||||
|
/* 13:26 */waypoints[23] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[23].origin =(-4325.3, 2916, -192.875);
|
||||||
|
/* 13:26 */waypoints[23].type = "stand";
|
||||||
|
/* 13:26 */waypoints[23].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[23].children[0] = 22;
|
||||||
|
/* 13:26 */waypoints[23].children[1] = 24;
|
||||||
|
/* 13:26 */waypoints[23].children[2] = 25;
|
||||||
|
/* 13:26 */waypoints[24] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[24].origin =(-4554.23, 2916.67, -191.337);
|
||||||
|
/* 13:26 */waypoints[24].type = "stand";
|
||||||
|
/* 13:26 */waypoints[24].childCount = 2;
|
||||||
|
/* 13:26 */waypoints[24].children[0] = 23;
|
||||||
|
/* 13:26 */waypoints[24].children[1] = 19;
|
||||||
|
/* 13:26 */waypoints[25] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[25].origin =(-3571.38, 2908.83, -191.875);
|
||||||
|
/* 13:26 */waypoints[25].type = "stand";
|
||||||
|
/* 13:26 */waypoints[25].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[25].children[0] = 23;
|
||||||
|
/* 13:26 */waypoints[25].children[1] = 26;
|
||||||
|
/* 13:26 */waypoints[25].children[2] = 60;
|
||||||
|
/* 13:26 */waypoints[26] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[26].origin =(-3557.88, 2557.46, -193.153);
|
||||||
|
/* 13:26 */waypoints[26].type = "stand";
|
||||||
|
/* 13:26 */waypoints[26].childCount = 4;
|
||||||
|
/* 13:26 */waypoints[26].children[0] = 25;
|
||||||
|
/* 13:26 */waypoints[26].children[1] = 27;
|
||||||
|
/* 13:26 */waypoints[26].children[2] = 62;
|
||||||
|
/* 13:26 */waypoints[26].children[3] = 63;
|
||||||
|
/* 13:26 */waypoints[27] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[27].origin =(-3565.47, 2129.29, -191.875);
|
||||||
|
/* 13:26 */waypoints[27].type = "stand";
|
||||||
|
/* 13:26 */waypoints[27].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[27].children[0] = 26;
|
||||||
|
/* 13:26 */waypoints[27].children[1] = 28;
|
||||||
|
/* 13:26 */waypoints[27].children[2] = 61;
|
||||||
|
/* 13:26 */waypoints[28] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[28].origin =(-3748.27, 2113.62, -190.087);
|
||||||
|
/* 13:26 */waypoints[28].type = "stand";
|
||||||
|
/* 13:26 */waypoints[28].childCount = 4;
|
||||||
|
/* 13:26 */waypoints[28].children[0] = 27;
|
||||||
|
/* 13:26 */waypoints[28].children[1] = 29;
|
||||||
|
/* 13:26 */waypoints[28].children[2] = 65;
|
||||||
|
/* 13:26 */waypoints[28].children[3] = 68;
|
||||||
|
/* 13:26 */waypoints[29] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[29].origin =(-3726.42, 2283.38, -191.875);
|
||||||
|
/* 13:26 */waypoints[29].type = "stand";
|
||||||
|
/* 13:26 */waypoints[29].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[29].children[0] = 28;
|
||||||
|
/* 13:26 */waypoints[29].children[1] = 30;
|
||||||
|
/* 13:26 */waypoints[29].children[2] = 45;
|
||||||
|
/* 13:26 */waypoints[30] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[30].origin =(-3982.18, 2299.56, -190.4);
|
||||||
|
/* 13:26 */waypoints[30].type = "stand";
|
||||||
|
/* 13:26 */waypoints[30].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[30].children[0] = 29;
|
||||||
|
/* 13:26 */waypoints[30].children[1] = 31;
|
||||||
|
/* 13:26 */waypoints[30].children[2] = 40;
|
||||||
|
/* 13:26 */waypoints[31] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[31].origin =(-3968.41, 2135.29, -191.466);
|
||||||
|
/* 13:26 */waypoints[31].type = "stand";
|
||||||
|
/* 13:26 */waypoints[31].childCount = 4;
|
||||||
|
/* 13:26 */waypoints[31].children[0] = 30;
|
||||||
|
/* 13:26 */waypoints[31].children[1] = 32;
|
||||||
|
/* 13:26 */waypoints[31].children[2] = 42;
|
||||||
|
/* 13:26 */waypoints[31].children[3] = 66;
|
||||||
|
/* 13:26 */waypoints[32] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[32].origin =(-4235.68, 2058.32, -191.875);
|
||||||
|
/* 13:26 */waypoints[32].type = "stand";
|
||||||
|
/* 13:26 */waypoints[32].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[32].children[0] = 31;
|
||||||
|
/* 13:26 */waypoints[32].children[1] = 33;
|
||||||
|
/* 13:26 */waypoints[32].children[2] = 42;
|
||||||
|
/* 13:26 */waypoints[33] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[33].origin =(-4546.72, 2075.31, -191.703);
|
||||||
|
/* 13:26 */waypoints[33].type = "stand";
|
||||||
|
/* 13:26 */waypoints[33].childCount = 2;
|
||||||
|
/* 13:26 */waypoints[33].children[0] = 32;
|
||||||
|
/* 13:26 */waypoints[33].children[1] = 34;
|
||||||
|
/* 13:26 */waypoints[34] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[34].origin =(-4812.83, 2054.36, -191.19);
|
||||||
|
/* 13:26 */waypoints[34].type = "stand";
|
||||||
|
/* 13:26 */waypoints[34].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[34].children[0] = 33;
|
||||||
|
/* 13:26 */waypoints[34].children[1] = 35;
|
||||||
|
/* 13:26 */waypoints[34].children[2] = 39;
|
||||||
|
/* 13:26 */waypoints[35] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[35].origin =(-5156, 2095.66, -190.138);
|
||||||
|
/* 13:26 */waypoints[35].type = "stand";
|
||||||
|
/* 13:26 */waypoints[35].childCount = 4;
|
||||||
|
/* 13:26 */waypoints[35].children[0] = 34;
|
||||||
|
/* 13:26 */waypoints[35].children[1] = 6;
|
||||||
|
/* 13:26 */waypoints[35].children[2] = 36;
|
||||||
|
/* 13:26 */waypoints[35].children[3] = 67;
|
||||||
|
/* 13:26 */waypoints[36] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[36].origin =(-5170.56, 2220.04, -185.063);
|
||||||
|
/* 13:26 */waypoints[36].type = "stand";
|
||||||
|
/* 13:26 */waypoints[36].childCount = 4;
|
||||||
|
/* 13:26 */waypoints[36].children[0] = 35;
|
||||||
|
/* 13:26 */waypoints[36].children[1] = 37;
|
||||||
|
/* 13:26 */waypoints[36].children[2] = 39;
|
||||||
|
/* 13:26 */waypoints[36].children[3] = 55;
|
||||||
|
/* 13:26 */waypoints[37] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[37].origin =(-5125.11, 2436.87, -183.281);
|
||||||
|
/* 13:26 */waypoints[37].type = "stand";
|
||||||
|
/* 13:26 */waypoints[37].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[37].children[0] = 36;
|
||||||
|
/* 13:26 */waypoints[37].children[1] = 38;
|
||||||
|
/* 13:26 */waypoints[37].children[2] = 75;
|
||||||
|
/* 13:26 */waypoints[38] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[38].origin =(-4817.26, 2447.88, -181.359);
|
||||||
|
/* 13:26 */waypoints[38].type = "stand";
|
||||||
|
/* 13:26 */waypoints[38].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[38].children[0] = 37;
|
||||||
|
/* 13:26 */waypoints[38].children[1] = 39;
|
||||||
|
/* 13:26 */waypoints[38].children[2] = 44;
|
||||||
|
/* 13:26 */waypoints[39] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[39].origin =(-4823.53, 2234.28, -190.755);
|
||||||
|
/* 13:26 */waypoints[39].type = "stand";
|
||||||
|
/* 13:26 */waypoints[39].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[39].children[0] = 38;
|
||||||
|
/* 13:26 */waypoints[39].children[1] = 34;
|
||||||
|
/* 13:26 */waypoints[39].children[2] = 36;
|
||||||
|
/* 13:26 */waypoints[40] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[40].origin =(-3988.69, 2394.72, -191.875);
|
||||||
|
/* 13:26 */waypoints[40].type = "stand";
|
||||||
|
/* 13:26 */waypoints[40].childCount = 2;
|
||||||
|
/* 13:26 */waypoints[40].children[0] = 30;
|
||||||
|
/* 13:26 */waypoints[40].children[1] = 41;
|
||||||
|
/* 13:26 */waypoints[41] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[41].origin =(-4239.5, 2423.63, -183.087);
|
||||||
|
/* 13:26 */waypoints[41].type = "stand";
|
||||||
|
/* 13:26 */waypoints[41].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[41].children[0] = 40;
|
||||||
|
/* 13:26 */waypoints[41].children[1] = 42;
|
||||||
|
/* 13:26 */waypoints[41].children[2] = 44;
|
||||||
|
/* 13:26 */waypoints[42] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[42].origin =(-4237.78, 2229.6, -190.85);
|
||||||
|
/* 13:26 */waypoints[42].type = "stand";
|
||||||
|
/* 13:26 */waypoints[42].childCount = 4;
|
||||||
|
/* 13:26 */waypoints[42].children[0] = 41;
|
||||||
|
/* 13:26 */waypoints[42].children[1] = 32;
|
||||||
|
/* 13:26 */waypoints[42].children[2] = 31;
|
||||||
|
/* 13:26 */waypoints[42].children[3] = 43;
|
||||||
|
/* 13:26 */waypoints[43] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[43].origin =(-4532.27, 2253.96, -191.865);
|
||||||
|
/* 13:26 */waypoints[43].type = "stand";
|
||||||
|
/* 13:26 */waypoints[43].childCount = 2;
|
||||||
|
/* 13:26 */waypoints[43].children[0] = 42;
|
||||||
|
/* 13:26 */waypoints[43].children[1] = 44;
|
||||||
|
/* 13:26 */waypoints[44] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[44].origin =(-4556.5, 2411.97, -186.862);
|
||||||
|
/* 13:26 */waypoints[44].type = "stand";
|
||||||
|
/* 13:26 */waypoints[44].childCount = 3;
|
||||||
|
/* 13:26 */waypoints[44].children[0] = 43;
|
||||||
|
/* 13:26 */waypoints[44].children[1] = 41;
|
||||||
|
/* 13:26 */waypoints[44].children[2] = 38;
|
||||||
|
/* 13:26 */waypoints[45] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[45].origin =(-3739.48, 2393.06, -191.875);
|
||||||
|
/* 13:26 */waypoints[45].type = "stand";
|
||||||
|
/* 13:26 */waypoints[45].childCount = 2;
|
||||||
|
/* 13:26 */waypoints[45].children[0] = 29;
|
||||||
|
/* 13:26 */waypoints[45].children[1] = 64;
|
||||||
|
/* 13:26 */waypoints[46] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[46].origin =(-5443.94, 2599.64, -47.875);
|
||||||
|
/* 13:26 */waypoints[46].type = "stand";
|
||||||
|
/* 13:26 */waypoints[46].childCount = 4;
|
||||||
|
/* 13:26 */waypoints[46].children[0] = 0;
|
||||||
|
/* 13:26 */waypoints[46].children[1] = 47;
|
||||||
|
/* 13:26 */waypoints[46].children[2] = 48;
|
||||||
|
/* 13:26 */waypoints[46].children[3] = 49;
|
||||||
|
/* 13:26 */waypoints[47] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[47].origin =(-5384.69, 2578.31, -47.875);
|
||||||
|
/* 13:26 */waypoints[47].type = "crouch";
|
||||||
|
/* 13:26 */waypoints[47].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[47].children[0] = 46;
|
||||||
|
/* 13:26 */waypoints[47].angles = (8.46497, 118.874, 0);
|
||||||
|
/* 13:26 */waypoints[48] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[48].origin =(-5397.71, 2659.47, -47.875);
|
||||||
|
/* 13:26 */waypoints[48].type = "claymore";
|
||||||
|
/* 13:26 */waypoints[48].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[48].children[0] = 46;
|
||||||
|
/* 13:26 */waypoints[48].angles = (27.2131, 107.586, 0);
|
||||||
|
/* 13:26 */waypoints[49] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[49].origin =(-5491.52, 2647.76, -47.875);
|
||||||
|
/* 13:26 */waypoints[49].type = "grenade";
|
||||||
|
/* 13:26 */waypoints[49].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[49].children[0] = 46;
|
||||||
|
/* 13:26 */waypoints[49].angles = (-25.307, 7.51667, 0);
|
||||||
|
/* 13:26 */waypoints[50] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[50].origin =(-5409.36, 2922.96, -47.875);
|
||||||
|
/* 13:26 */waypoints[50].type = "claymore";
|
||||||
|
/* 13:26 */waypoints[50].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[50].children[0] = 2;
|
||||||
|
/* 13:26 */waypoints[50].angles = (29.6082, -102.506, 0);
|
||||||
|
/* 13:26 */waypoints[51] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[51].origin =(-5504.37, 2987.16, -47.875);
|
||||||
|
/* 13:26 */waypoints[51].type = "grenade";
|
||||||
|
/* 13:26 */waypoints[51].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[51].children[0] = 2;
|
||||||
|
/* 13:26 */waypoints[51].angles = (-25.6915, -10.8525, 0);
|
||||||
|
/* 13:26 */waypoints[52] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[52].origin =(-5375.74, 2462.6, -183.875);
|
||||||
|
/* 13:26 */waypoints[52].type = "crouch";
|
||||||
|
/* 13:26 */waypoints[52].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[52].children[0] = 8;
|
||||||
|
/* 13:26 */waypoints[52].angles = (-3.40027, -133.119, 0);
|
||||||
|
/* 13:26 */waypoints[53] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[53].origin =(-5588.59, 2320.98, -183.875);
|
||||||
|
/* 13:26 */waypoints[53].type = "claymore";
|
||||||
|
/* 13:26 */waypoints[53].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[53].children[0] = 8;
|
||||||
|
/* 13:26 */waypoints[53].angles = (18.3142, -169.759, 0);
|
||||||
|
/* 13:26 */waypoints[54] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[54].origin =(-5415.33, 2280.36, -183.875);
|
||||||
|
/* 13:26 */waypoints[54].type = "claymore";
|
||||||
|
/* 13:26 */waypoints[54].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[54].children[0] = 8;
|
||||||
|
/* 13:26 */waypoints[54].angles = (19.7534, -94.0904, 0);
|
||||||
|
/* 13:26 */waypoints[55] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[55].origin =(-5262.67, 2255.06, -189.758);
|
||||||
|
/* 13:26 */waypoints[55].type = "grenade";
|
||||||
|
/* 13:26 */waypoints[55].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[55].children[0] = 36;
|
||||||
|
/* 13:26 */waypoints[55].angles = (-22.8186, -0.234189, 0);
|
||||||
|
/* 13:26 */waypoints[56] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[56].origin =(-5120.36, 2808.17, -191.875);
|
||||||
|
/* 13:26 */waypoints[56].type = "grenade";
|
||||||
|
/* 13:26 */waypoints[56].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[56].children[0] = 12;
|
||||||
|
/* 13:26 */waypoints[56].angles = (-12.9694, 3.58356, 0);
|
||||||
|
/* 13:26 */waypoints[57] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[57].origin =(-4649.1, 2649.64, -190.684);
|
||||||
|
/* 13:26 */waypoints[57].type = "claymore";
|
||||||
|
/* 13:26 */waypoints[57].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[57].children[0] = 21;
|
||||||
|
/* 13:26 */waypoints[57].angles = (20.8026, 78.2961, 0);
|
||||||
|
/* 13:26 */waypoints[58] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[58].origin =(-4296.43, 2751.14, -189.467);
|
||||||
|
/* 13:26 */waypoints[58].type = "claymore";
|
||||||
|
/* 13:26 */waypoints[58].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[58].children[0] = 22;
|
||||||
|
/* 13:26 */waypoints[58].angles = (26.6418, 101.351, 0);
|
||||||
|
/* 13:26 */waypoints[59] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[59].origin =(-5122.88, 2669.19, -189.566);
|
||||||
|
/* 13:26 */waypoints[59].type = "claymore";
|
||||||
|
/* 13:26 */waypoints[59].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[59].children[0] = 15;
|
||||||
|
/* 13:26 */waypoints[59].angles = (25.1093, 60.5971, 0);
|
||||||
|
/* 13:26 */waypoints[60] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[60].origin =(-3596.97, 2762.94, -191.793);
|
||||||
|
/* 13:26 */waypoints[60].type = "claymore";
|
||||||
|
/* 13:26 */waypoints[60].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[60].children[0] = 25;
|
||||||
|
/* 13:26 */waypoints[60].angles = (21.4728, 77.3403, 0);
|
||||||
|
/* 13:26 */waypoints[61] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[61].origin =(-3596.06, 2312.2, -190.912);
|
||||||
|
/* 13:26 */waypoints[61].type = "claymore";
|
||||||
|
/* 13:26 */waypoints[61].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[61].children[0] = 27;
|
||||||
|
/* 13:26 */waypoints[61].angles = (21.4728, -78.1218, 0);
|
||||||
|
/* 13:26 */waypoints[62] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[62].origin =(-3481.41, 2722.54, -184.788);
|
||||||
|
/* 13:26 */waypoints[62].type = "grenade";
|
||||||
|
/* 13:26 */waypoints[62].childCount = 2;
|
||||||
|
/* 13:26 */waypoints[62].children[0] = 26;
|
||||||
|
/* 13:26 */waypoints[62].children[1] = 69;
|
||||||
|
/* 13:26 */waypoints[62].angles = (-29.5203, 178.744, 0);
|
||||||
|
/* 13:26 */waypoints[63] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[63].origin =(-3486.4, 2345.23, -185.744);
|
||||||
|
/* 13:26 */waypoints[63].type = "grenade";
|
||||||
|
/* 13:26 */waypoints[63].childCount = 2;
|
||||||
|
/* 13:26 */waypoints[63].children[0] = 26;
|
||||||
|
/* 13:26 */waypoints[63].children[1] = 70;
|
||||||
|
/* 13:26 */waypoints[63].angles = (-29.9982, -176.664, 0);
|
||||||
|
/* 13:26 */waypoints[64] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[64].origin =(-3716.72, 2285.92, -191.875);
|
||||||
|
/* 13:26 */waypoints[64].type = "claymore";
|
||||||
|
/* 13:26 */waypoints[64].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[64].children[0] = 45;
|
||||||
|
/* 13:26 */waypoints[64].angles = (22.5275, -104.242, 0);
|
||||||
|
/* 13:26 */waypoints[65] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[65].origin =(-3726.78, 2247.47, -191.856);
|
||||||
|
/* 13:26 */waypoints[65].type = "grenade";
|
||||||
|
/* 13:26 */waypoints[65].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[65].children[0] = 28;
|
||||||
|
/* 13:26 */waypoints[65].angles = (-12.2003, -178.96, 0);
|
||||||
|
/* 13:26 */waypoints[66] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[66].origin =(-3845.13, 2119.49, -189.832);
|
||||||
|
/* 13:26 */waypoints[66].type = "claymore";
|
||||||
|
/* 13:26 */waypoints[66].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[66].children[0] = 31;
|
||||||
|
/* 13:26 */waypoints[66].angles = (26.9275, 114.359, 0);
|
||||||
|
/* 13:26 */waypoints[67] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[67].origin =(-5317.17, 2232.52, -191.875);
|
||||||
|
/* 13:26 */waypoints[67].type = "claymore";
|
||||||
|
/* 13:26 */waypoints[67].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[67].children[0] = 35;
|
||||||
|
/* 13:26 */waypoints[67].angles = (22.6208, -65.3996, 0);
|
||||||
|
/* 13:26 */waypoints[68] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[68].origin =(-3759.95, 2033.62, -185.705);
|
||||||
|
/* 13:26 */waypoints[68].type = "crouch";
|
||||||
|
/* 13:26 */waypoints[68].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[68].children[0] = 28;
|
||||||
|
/* 13:26 */waypoints[68].angles = (7.7948, 83.8442, 0);
|
||||||
|
/* 13:26 */waypoints[69] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[69].origin =(-3478.95, 2750.88, -187.502);
|
||||||
|
/* 13:26 */waypoints[69].type = "crouch";
|
||||||
|
/* 13:26 */waypoints[69].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[69].children[0] = 62;
|
||||||
|
/* 13:26 */waypoints[69].angles = (4.25598, -110.174, 0);
|
||||||
|
/* 13:26 */waypoints[70] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[70].origin =(-3484.06, 2282.63, -179.835);
|
||||||
|
/* 13:26 */waypoints[70].type = "crouch";
|
||||||
|
/* 13:26 */waypoints[70].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[70].children[0] = 63;
|
||||||
|
/* 13:26 */waypoints[70].angles = (7.12891, 117.039, 0);
|
||||||
|
/* 13:26 */waypoints[71] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[71].origin =(-4280.03, 2609.13, -170.082);
|
||||||
|
/* 13:26 */waypoints[71].type = "crouch";
|
||||||
|
/* 13:26 */waypoints[71].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[71].children[0] = 22;
|
||||||
|
/* 13:26 */waypoints[71].angles = (12.0068, 140.764, 0);
|
||||||
|
/* 13:26 */waypoints[72] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[72].origin =(-5328.88, 2619.13, -147.581);
|
||||||
|
/* 13:26 */waypoints[72].type = "crouch";
|
||||||
|
/* 13:26 */waypoints[72].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[72].children[0] = 14;
|
||||||
|
/* 13:26 */waypoints[72].angles = (3.20129, 0.897403, 0);
|
||||||
|
/* 13:26 */waypoints[73] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[73].origin =(-5328.88, 2996.88, -131.375);
|
||||||
|
/* 13:26 */waypoints[73].type = "crouch";
|
||||||
|
/* 13:26 */waypoints[73].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[73].children[0] = 13;
|
||||||
|
/* 13:26 */waypoints[73].angles = (3.20129, -30.4795, 0);
|
||||||
|
/* 13:26 */waypoints[74] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[74].origin =(-5375.13, 3056.88, -47.875);
|
||||||
|
/* 13:26 */waypoints[74].type = "crouch";
|
||||||
|
/* 13:26 */waypoints[74].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[74].children[0] = 2;
|
||||||
|
/* 13:26 */waypoints[74].angles = (5.59631, -127.297, 0);
|
||||||
|
/* 13:26 */waypoints[75] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[75].origin =(-5328.88, 2436.88, -157.875);
|
||||||
|
/* 13:26 */waypoints[75].type = "crouch";
|
||||||
|
/* 13:26 */waypoints[75].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[75].children[0] = 37;
|
||||||
|
/* 13:26 */waypoints[75].angles = (19.7522, -60.225, 0);
|
||||||
|
/* 13:26 */waypoints[76] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[76].origin =(-5662.88, 2458.88, -183.875);
|
||||||
|
/* 13:26 */waypoints[76].type = "crouch";
|
||||||
|
/* 13:26 */waypoints[76].childCount = 1;
|
||||||
|
/* 13:26 */waypoints[76].children[0] = 8;
|
||||||
|
/* 13:26 */waypoints[76].angles = (-3.30261, -46.0691, 0);
|
||||||
|
/* 13:26 */waypoints[77] = spawnstruct();
|
||||||
|
/* 13:26 */waypoints[77].origin =(-5752.88, 2929.78, -47.875);
|
||||||
|
/* 13:26 */waypoints[77].type = "stand";
|
||||||
|
/* 13:26 */waypoints[77].childCount = 2;
|
||||||
|
/* 13:26 */waypoints[77].children[0] = 3;
|
||||||
|
/* 13:26 */waypoints[77].children[1] = 1;
|
||||||
|
return waypoints;
|
||||||
|
}
|
863
mods/bots/maps/mp/bots/waypoints/underpass.gsc
Normal file
863
mods/bots/maps/mp/bots/waypoints/underpass.gsc
Normal file
@ -0,0 +1,863 @@
|
|||||||
|
Underpass()
|
||||||
|
{
|
||||||
|
waypoints = [];
|
||||||
|
/* 2:28 */waypoints[0] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[0].origin =(2970.98, -1118.71, 353.582);
|
||||||
|
/* 2:28 */waypoints[0].type = "stand";
|
||||||
|
/* 2:28 */waypoints[0].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[0].children[0] = 1;
|
||||||
|
/* 2:28 */waypoints[0].children[1] = 86;
|
||||||
|
/* 2:28 */waypoints[1] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[1].origin =(3449.15, -891.658, 353.19);
|
||||||
|
/* 2:28 */waypoints[1].type = "stand";
|
||||||
|
/* 2:28 */waypoints[1].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[1].children[0] = 0;
|
||||||
|
/* 2:28 */waypoints[1].children[1] = 2;
|
||||||
|
/* 2:28 */waypoints[2] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[2].origin =(3446.15, -333.007, 336.125);
|
||||||
|
/* 2:28 */waypoints[2].type = "stand";
|
||||||
|
/* 2:28 */waypoints[2].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[2].children[0] = 1;
|
||||||
|
/* 2:28 */waypoints[2].children[1] = 3;
|
||||||
|
/* 2:28 */waypoints[3] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[3].origin =(3102.34, -303.271, 334.55);
|
||||||
|
/* 2:28 */waypoints[3].type = "stand";
|
||||||
|
/* 2:28 */waypoints[3].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[3].children[0] = 2;
|
||||||
|
/* 2:28 */waypoints[3].children[1] = 4;
|
||||||
|
/* 2:28 */waypoints[3].children[2] = 86;
|
||||||
|
/* 2:28 */waypoints[4] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[4].origin =(3071.78, -109, 340.125);
|
||||||
|
/* 2:28 */waypoints[4].type = "stand";
|
||||||
|
/* 2:28 */waypoints[4].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[4].children[0] = 3;
|
||||||
|
/* 2:28 */waypoints[4].children[1] = 5;
|
||||||
|
/* 2:28 */waypoints[4].children[2] = 6;
|
||||||
|
/* 2:28 */waypoints[4].children[3] = 7;
|
||||||
|
/* 2:28 */waypoints[5] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[5].origin =(2583.34, -58.5648, 292.125);
|
||||||
|
/* 2:28 */waypoints[5].type = "stand";
|
||||||
|
/* 2:28 */waypoints[5].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[5].children[0] = 4;
|
||||||
|
/* 2:28 */waypoints[6] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[6].origin =(3633.85, -93.181, 340.125);
|
||||||
|
/* 2:28 */waypoints[6].type = "stand";
|
||||||
|
/* 2:28 */waypoints[6].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[6].children[0] = 4;
|
||||||
|
/* 2:28 */waypoints[7] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[7].origin =(3086.69, 355.472, 272.427);
|
||||||
|
/* 2:28 */waypoints[7].type = "stand";
|
||||||
|
/* 2:28 */waypoints[7].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[7].children[0] = 4;
|
||||||
|
/* 2:28 */waypoints[7].children[1] = 8;
|
||||||
|
/* 2:28 */waypoints[7].children[2] = 9;
|
||||||
|
/* 2:28 */waypoints[8] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[8].origin =(3662.98, 339.407, 288.125);
|
||||||
|
/* 2:28 */waypoints[8].type = "stand";
|
||||||
|
/* 2:28 */waypoints[8].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[8].children[0] = 7;
|
||||||
|
/* 2:28 */waypoints[9] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[9].origin =(3102.6, 538.051, 283.759);
|
||||||
|
/* 2:28 */waypoints[9].type = "stand";
|
||||||
|
/* 2:28 */waypoints[9].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[9].children[0] = 7;
|
||||||
|
/* 2:28 */waypoints[9].children[1] = 10;
|
||||||
|
/* 2:28 */waypoints[9].children[2] = 11;
|
||||||
|
/* 2:28 */waypoints[10] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[10].origin =(3660.77, 578.988, 288.125);
|
||||||
|
/* 2:28 */waypoints[10].type = "stand";
|
||||||
|
/* 2:28 */waypoints[10].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[10].children[0] = 9;
|
||||||
|
/* 2:28 */waypoints[11] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[11].origin =(2933.53, 542.036, 276.925);
|
||||||
|
/* 2:28 */waypoints[11].type = "stand";
|
||||||
|
/* 2:28 */waypoints[11].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[11].children[0] = 9;
|
||||||
|
/* 2:28 */waypoints[11].children[1] = 12;
|
||||||
|
/* 2:28 */waypoints[11].children[2] = 19;
|
||||||
|
/* 2:28 */waypoints[12] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[12].origin =(2618.76, 670.378, 285.244);
|
||||||
|
/* 2:28 */waypoints[12].type = "stand";
|
||||||
|
/* 2:28 */waypoints[12].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[12].children[0] = 11;
|
||||||
|
/* 2:28 */waypoints[12].children[1] = 13;
|
||||||
|
/* 2:28 */waypoints[12].children[2] = 18;
|
||||||
|
/* 2:28 */waypoints[13] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[13].origin =(2589.82, 645.935, 289.512);
|
||||||
|
/* 2:28 */waypoints[13].type = "stand";
|
||||||
|
/* 2:28 */waypoints[13].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[13].children[0] = 12;
|
||||||
|
/* 2:28 */waypoints[13].children[1] = 14;
|
||||||
|
/* 2:28 */waypoints[14] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[14].origin =(2306.16, 539.214, 286.302);
|
||||||
|
/* 2:28 */waypoints[14].type = "stand";
|
||||||
|
/* 2:28 */waypoints[14].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[14].children[0] = 13;
|
||||||
|
/* 2:28 */waypoints[14].children[1] = 15;
|
||||||
|
/* 2:28 */waypoints[14].children[2] = 16;
|
||||||
|
/* 2:28 */waypoints[15] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[15].origin =(2302.75, 357.788, 292.125);
|
||||||
|
/* 2:28 */waypoints[15].type = "stand";
|
||||||
|
/* 2:28 */waypoints[15].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[15].children[0] = 14;
|
||||||
|
/* 2:28 */waypoints[16] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[16].origin =(2257.43, 768.539, 282.138);
|
||||||
|
/* 2:28 */waypoints[16].type = "stand";
|
||||||
|
/* 2:28 */waypoints[16].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[16].children[0] = 14;
|
||||||
|
/* 2:28 */waypoints[16].children[1] = 17;
|
||||||
|
/* 2:28 */waypoints[16].children[2] = 22;
|
||||||
|
/* 2:28 */waypoints[17] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[17].origin =(1765.99, 758.822, 448.125);
|
||||||
|
/* 2:28 */waypoints[17].type = "stand";
|
||||||
|
/* 2:28 */waypoints[17].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[17].children[0] = 16;
|
||||||
|
/* 2:28 */waypoints[17].children[1] = 80;
|
||||||
|
/* 2:28 */waypoints[17].children[2] = 81;
|
||||||
|
/* 2:28 */waypoints[18] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[18].origin =(2614.08, 803.665, 285.171);
|
||||||
|
/* 2:28 */waypoints[18].type = "stand";
|
||||||
|
/* 2:28 */waypoints[18].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[18].children[0] = 12;
|
||||||
|
/* 2:28 */waypoints[18].children[1] = 22;
|
||||||
|
/* 2:28 */waypoints[18].children[2] = 20;
|
||||||
|
/* 2:28 */waypoints[19] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[19].origin =(2947.62, 972.593, 300.07);
|
||||||
|
/* 2:28 */waypoints[19].type = "stand";
|
||||||
|
/* 2:28 */waypoints[19].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[19].children[0] = 11;
|
||||||
|
/* 2:28 */waypoints[19].children[1] = 20;
|
||||||
|
/* 2:28 */waypoints[20] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[20].origin =(2751.81, 1099.02, 282.779);
|
||||||
|
/* 2:28 */waypoints[20].type = "stand";
|
||||||
|
/* 2:28 */waypoints[20].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[20].children[0] = 19;
|
||||||
|
/* 2:28 */waypoints[20].children[1] = 21;
|
||||||
|
/* 2:28 */waypoints[20].children[2] = 18;
|
||||||
|
/* 2:28 */waypoints[20].children[3] = 23;
|
||||||
|
/* 2:28 */waypoints[21] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[21].origin =(2519.6, 1095.77, 283.447);
|
||||||
|
/* 2:28 */waypoints[21].type = "stand";
|
||||||
|
/* 2:28 */waypoints[21].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[21].children[0] = 20;
|
||||||
|
/* 2:28 */waypoints[21].children[1] = 22;
|
||||||
|
/* 2:28 */waypoints[22] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[22].origin =(2469.19, 780.358, 285.104);
|
||||||
|
/* 2:28 */waypoints[22].type = "stand";
|
||||||
|
/* 2:28 */waypoints[22].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[22].children[0] = 21;
|
||||||
|
/* 2:28 */waypoints[22].children[1] = 16;
|
||||||
|
/* 2:28 */waypoints[22].children[2] = 18;
|
||||||
|
/* 2:28 */waypoints[22].children[3] = 132;
|
||||||
|
/* 2:28 */waypoints[23] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[23].origin =(2683.97, 1482.39, 278.887);
|
||||||
|
/* 2:28 */waypoints[23].type = "stand";
|
||||||
|
/* 2:28 */waypoints[23].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[23].children[0] = 20;
|
||||||
|
/* 2:28 */waypoints[23].children[1] = 24;
|
||||||
|
/* 2:28 */waypoints[23].children[2] = 25;
|
||||||
|
/* 2:28 */waypoints[24] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[24].origin =(3238.38, 1474.93, 284.65);
|
||||||
|
/* 2:28 */waypoints[24].type = "stand";
|
||||||
|
/* 2:28 */waypoints[24].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[24].children[0] = 23;
|
||||||
|
/* 2:28 */waypoints[25] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[25].origin =(2644.44, 1987.13, 288.125);
|
||||||
|
/* 2:28 */waypoints[25].type = "stand";
|
||||||
|
/* 2:28 */waypoints[25].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[25].children[0] = 23;
|
||||||
|
/* 2:28 */waypoints[25].children[1] = 26;
|
||||||
|
/* 2:28 */waypoints[25].children[2] = 27;
|
||||||
|
/* 2:28 */waypoints[25].children[3] = 77;
|
||||||
|
/* 2:28 */waypoints[26] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[26].origin =(3081.02, 1992.95, 294.156);
|
||||||
|
/* 2:28 */waypoints[26].type = "stand";
|
||||||
|
/* 2:28 */waypoints[26].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[26].children[0] = 25;
|
||||||
|
/* 2:28 */waypoints[27] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[27].origin =(2625.04, 2491.25, 380.395);
|
||||||
|
/* 2:28 */waypoints[27].type = "stand";
|
||||||
|
/* 2:28 */waypoints[27].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[27].children[0] = 25;
|
||||||
|
/* 2:28 */waypoints[27].children[1] = 28;
|
||||||
|
/* 2:28 */waypoints[28] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[28].origin =(2625.74, 2768.65, 376.144);
|
||||||
|
/* 2:28 */waypoints[28].type = "stand";
|
||||||
|
/* 2:28 */waypoints[28].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[28].children[0] = 27;
|
||||||
|
/* 2:28 */waypoints[28].children[1] = 29;
|
||||||
|
/* 2:28 */waypoints[29] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[29].origin =(2329.38, 2978.26, 384.874);
|
||||||
|
/* 2:28 */waypoints[29].type = "stand";
|
||||||
|
/* 2:28 */waypoints[29].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[29].children[0] = 28;
|
||||||
|
/* 2:28 */waypoints[29].children[1] = 30;
|
||||||
|
/* 2:28 */waypoints[29].children[2] = 31;
|
||||||
|
/* 2:28 */waypoints[30] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[30].origin =(2382.94, 3299.33, 393.808);
|
||||||
|
/* 2:28 */waypoints[30].type = "stand";
|
||||||
|
/* 2:28 */waypoints[30].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[30].children[0] = 29;
|
||||||
|
/* 2:28 */waypoints[31] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[31].origin =(1755.72, 3008.21, 385.806);
|
||||||
|
/* 2:28 */waypoints[31].type = "stand";
|
||||||
|
/* 2:28 */waypoints[31].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[31].children[0] = 29;
|
||||||
|
/* 2:28 */waypoints[31].children[1] = 32;
|
||||||
|
/* 2:28 */waypoints[32] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[32].origin =(1413.97, 2925.41, 377.107);
|
||||||
|
/* 2:28 */waypoints[32].type = "stand";
|
||||||
|
/* 2:28 */waypoints[32].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[32].children[0] = 31;
|
||||||
|
/* 2:28 */waypoints[32].children[1] = 33;
|
||||||
|
/* 2:28 */waypoints[32].children[2] = 36;
|
||||||
|
/* 2:28 */waypoints[32].children[3] = 38;
|
||||||
|
/* 2:28 */waypoints[33] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[33].origin =(1230.12, 3101.85, 379.513);
|
||||||
|
/* 2:28 */waypoints[33].type = "stand";
|
||||||
|
/* 2:28 */waypoints[33].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[33].children[0] = 32;
|
||||||
|
/* 2:28 */waypoints[33].children[1] = 34;
|
||||||
|
/* 2:28 */waypoints[34] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[34].origin =(719.247, 2914.18, 371.099);
|
||||||
|
/* 2:28 */waypoints[34].type = "stand";
|
||||||
|
/* 2:28 */waypoints[34].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[34].children[0] = 33;
|
||||||
|
/* 2:28 */waypoints[34].children[1] = 35;
|
||||||
|
/* 2:28 */waypoints[34].children[2] = 61;
|
||||||
|
/* 2:28 */waypoints[35] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[35].origin =(935.375, 2679.41, 372.01);
|
||||||
|
/* 2:28 */waypoints[35].type = "stand";
|
||||||
|
/* 2:28 */waypoints[35].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[35].children[0] = 34;
|
||||||
|
/* 2:28 */waypoints[35].children[1] = 36;
|
||||||
|
/* 2:28 */waypoints[35].children[2] = 37;
|
||||||
|
/* 2:28 */waypoints[36] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[36].origin =(1248.41, 2889.49, 376.125);
|
||||||
|
/* 2:28 */waypoints[36].type = "stand";
|
||||||
|
/* 2:28 */waypoints[36].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[36].children[0] = 35;
|
||||||
|
/* 2:28 */waypoints[36].children[1] = 32;
|
||||||
|
/* 2:28 */waypoints[37] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[37].origin =(1198.95, 2521.54, 374.484);
|
||||||
|
/* 2:28 */waypoints[37].type = "stand";
|
||||||
|
/* 2:28 */waypoints[37].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[37].children[0] = 35;
|
||||||
|
/* 2:28 */waypoints[37].children[1] = 38;
|
||||||
|
/* 2:28 */waypoints[37].children[2] = 39;
|
||||||
|
/* 2:28 */waypoints[38] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[38].origin =(1439.04, 2652.22, 375.81);
|
||||||
|
/* 2:28 */waypoints[38].type = "stand";
|
||||||
|
/* 2:28 */waypoints[38].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[38].children[0] = 37;
|
||||||
|
/* 2:28 */waypoints[38].children[1] = 32;
|
||||||
|
/* 2:28 */waypoints[39] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[39].origin =(1202.39, 2313.97, 384.125);
|
||||||
|
/* 2:28 */waypoints[39].type = "stand";
|
||||||
|
/* 2:28 */waypoints[39].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[39].children[0] = 37;
|
||||||
|
/* 2:28 */waypoints[39].children[1] = 40;
|
||||||
|
/* 2:28 */waypoints[40] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[40].origin =(1170.06, 2236.94, 384.125);
|
||||||
|
/* 2:28 */waypoints[40].type = "stand";
|
||||||
|
/* 2:28 */waypoints[40].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[40].children[0] = 39;
|
||||||
|
/* 2:28 */waypoints[40].children[1] = 41;
|
||||||
|
/* 2:28 */waypoints[41] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[41].origin =(1165.58, 1833.96, 378.137);
|
||||||
|
/* 2:28 */waypoints[41].type = "stand";
|
||||||
|
/* 2:28 */waypoints[41].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[41].children[0] = 40;
|
||||||
|
/* 2:28 */waypoints[41].children[1] = 42;
|
||||||
|
/* 2:28 */waypoints[41].children[2] = 44;
|
||||||
|
/* 2:28 */waypoints[41].children[3] = 60;
|
||||||
|
/* 2:28 */waypoints[42] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[42].origin =(1371.65, 1735.32, 376.125);
|
||||||
|
/* 2:28 */waypoints[42].type = "stand";
|
||||||
|
/* 2:28 */waypoints[42].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[42].children[0] = 41;
|
||||||
|
/* 2:28 */waypoints[42].children[1] = 43;
|
||||||
|
/* 2:28 */waypoints[42].children[2] = 78;
|
||||||
|
/* 2:28 */waypoints[43] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[43].origin =(1490.87, 2104.24, 241.671);
|
||||||
|
/* 2:28 */waypoints[43].type = "stand";
|
||||||
|
/* 2:28 */waypoints[43].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[43].children[0] = 42;
|
||||||
|
/* 2:28 */waypoints[43].children[1] = 75;
|
||||||
|
/* 2:28 */waypoints[43].children[2] = 76;
|
||||||
|
/* 2:28 */waypoints[44] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[44].origin =(938.574, 1331.17, 360.383);
|
||||||
|
/* 2:28 */waypoints[44].type = "stand";
|
||||||
|
/* 2:28 */waypoints[44].childCount = 5;
|
||||||
|
/* 2:28 */waypoints[44].children[0] = 41;
|
||||||
|
/* 2:28 */waypoints[44].children[1] = 45;
|
||||||
|
/* 2:28 */waypoints[44].children[2] = 120;
|
||||||
|
/* 2:28 */waypoints[44].children[3] = 121;
|
||||||
|
/* 2:28 */waypoints[44].children[4] = 60;
|
||||||
|
/* 2:28 */waypoints[45] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[45].origin =(631.748, 1234.34, 336.125);
|
||||||
|
/* 2:28 */waypoints[45].type = "stand";
|
||||||
|
/* 2:28 */waypoints[45].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[45].children[0] = 44;
|
||||||
|
/* 2:28 */waypoints[45].children[1] = 46;
|
||||||
|
/* 2:28 */waypoints[46] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[46].origin =(330.757, 1227.15, 338.144);
|
||||||
|
/* 2:28 */waypoints[46].type = "stand";
|
||||||
|
/* 2:28 */waypoints[46].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[46].children[0] = 45;
|
||||||
|
/* 2:28 */waypoints[46].children[1] = 47;
|
||||||
|
/* 2:28 */waypoints[47] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[47].origin =(331.848, 1385.84, 372.794);
|
||||||
|
/* 2:28 */waypoints[47].type = "stand";
|
||||||
|
/* 2:28 */waypoints[47].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[47].children[0] = 46;
|
||||||
|
/* 2:28 */waypoints[47].children[1] = 48;
|
||||||
|
/* 2:28 */waypoints[47].children[2] = 51;
|
||||||
|
/* 2:28 */waypoints[48] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[48].origin =(339.506, 1607.89, 384.125);
|
||||||
|
/* 2:28 */waypoints[48].type = "stand";
|
||||||
|
/* 2:28 */waypoints[48].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[48].children[0] = 47;
|
||||||
|
/* 2:28 */waypoints[48].children[1] = 49;
|
||||||
|
/* 2:28 */waypoints[49] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[49].origin =(236.789, 1601.3, 384.125);
|
||||||
|
/* 2:28 */waypoints[49].type = "stand";
|
||||||
|
/* 2:28 */waypoints[49].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[49].children[0] = 48;
|
||||||
|
/* 2:28 */waypoints[49].children[1] = 50;
|
||||||
|
/* 2:28 */waypoints[49].children[2] = 56;
|
||||||
|
/* 2:28 */waypoints[50] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[50].origin =(32.2328, 1510.5, 384.125);
|
||||||
|
/* 2:28 */waypoints[50].type = "stand";
|
||||||
|
/* 2:28 */waypoints[50].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[50].children[0] = 49;
|
||||||
|
/* 2:28 */waypoints[50].children[1] = 51;
|
||||||
|
/* 2:28 */waypoints[50].children[2] = 52;
|
||||||
|
/* 2:28 */waypoints[51] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[51].origin =(31.197, 1384.85, 368.125);
|
||||||
|
/* 2:28 */waypoints[51].type = "stand";
|
||||||
|
/* 2:28 */waypoints[51].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[51].children[0] = 50;
|
||||||
|
/* 2:28 */waypoints[51].children[1] = 47;
|
||||||
|
/* 2:28 */waypoints[51].children[2] = 53;
|
||||||
|
/* 2:28 */waypoints[52] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[52].origin =(-130.296, 1530.85, 384.125);
|
||||||
|
/* 2:28 */waypoints[52].type = "stand";
|
||||||
|
/* 2:28 */waypoints[52].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[52].children[0] = 50;
|
||||||
|
/* 2:28 */waypoints[52].children[1] = 53;
|
||||||
|
/* 2:28 */waypoints[52].children[2] = 54;
|
||||||
|
/* 2:28 */waypoints[53] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[53].origin =(-136.009, 1388.05, 368.125);
|
||||||
|
/* 2:28 */waypoints[53].type = "stand";
|
||||||
|
/* 2:28 */waypoints[53].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[53].children[0] = 52;
|
||||||
|
/* 2:28 */waypoints[53].children[1] = 51;
|
||||||
|
/* 2:28 */waypoints[53].children[2] = 72;
|
||||||
|
/* 2:28 */waypoints[54] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[54].origin =(-139.717, 1713.05, 384.125);
|
||||||
|
/* 2:28 */waypoints[54].type = "stand";
|
||||||
|
/* 2:28 */waypoints[54].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[54].children[0] = 52;
|
||||||
|
/* 2:28 */waypoints[54].children[1] = 55;
|
||||||
|
/* 2:28 */waypoints[54].children[2] = 56;
|
||||||
|
/* 2:28 */waypoints[55] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[55].origin =(-117.248, 1953.89, 384.125);
|
||||||
|
/* 2:28 */waypoints[55].type = "stand";
|
||||||
|
/* 2:28 */waypoints[55].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[55].children[0] = 54;
|
||||||
|
/* 2:28 */waypoints[56] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[56].origin =(246.448, 1737.8, 384.125);
|
||||||
|
/* 2:28 */waypoints[56].type = "stand";
|
||||||
|
/* 2:28 */waypoints[56].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[56].children[0] = 54;
|
||||||
|
/* 2:28 */waypoints[56].children[1] = 49;
|
||||||
|
/* 2:28 */waypoints[56].children[2] = 58;
|
||||||
|
/* 2:28 */waypoints[57] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[57].origin =(210.797, 2481.74, 302.547);
|
||||||
|
/* 2:28 */waypoints[57].type = "stand";
|
||||||
|
/* 2:28 */waypoints[57].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[57].children[0] = 58;
|
||||||
|
/* 2:28 */waypoints[58] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[58].origin =(216.612, 1984.77, 330.153);
|
||||||
|
/* 2:28 */waypoints[58].type = "stand";
|
||||||
|
/* 2:28 */waypoints[58].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[58].children[0] = 57;
|
||||||
|
/* 2:28 */waypoints[58].children[1] = 56;
|
||||||
|
/* 2:28 */waypoints[58].children[2] = 59;
|
||||||
|
/* 2:28 */waypoints[59] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[59].origin =(811.009, 1967.78, 343.746);
|
||||||
|
/* 2:28 */waypoints[59].type = "stand";
|
||||||
|
/* 2:28 */waypoints[59].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[59].children[0] = 58;
|
||||||
|
/* 2:28 */waypoints[59].children[1] = 60;
|
||||||
|
/* 2:28 */waypoints[59].children[2] = 74;
|
||||||
|
/* 2:28 */waypoints[60] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[60].origin =(879.619, 1812.23, 377.387);
|
||||||
|
/* 2:28 */waypoints[60].type = "stand";
|
||||||
|
/* 2:28 */waypoints[60].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[60].children[0] = 59;
|
||||||
|
/* 2:28 */waypoints[60].children[1] = 41;
|
||||||
|
/* 2:28 */waypoints[60].children[2] = 44;
|
||||||
|
/* 2:28 */waypoints[61] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[61].origin =(169.236, 3055.81, 279.076);
|
||||||
|
/* 2:28 */waypoints[61].type = "stand";
|
||||||
|
/* 2:28 */waypoints[61].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[61].children[0] = 34;
|
||||||
|
/* 2:28 */waypoints[61].children[1] = 62;
|
||||||
|
/* 2:28 */waypoints[61].children[2] = 63;
|
||||||
|
/* 2:28 */waypoints[61].children[3] = 130;
|
||||||
|
/* 2:28 */waypoints[62] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[62].origin =(-49.7729, 3420.92, 289.774);
|
||||||
|
/* 2:28 */waypoints[62].type = "stand";
|
||||||
|
/* 2:28 */waypoints[62].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[62].children[0] = 61;
|
||||||
|
/* 2:28 */waypoints[63] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[63].origin =(-83.9202, 2829.16, 254.708);
|
||||||
|
/* 2:28 */waypoints[63].type = "stand";
|
||||||
|
/* 2:28 */waypoints[63].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[63].children[0] = 61;
|
||||||
|
/* 2:28 */waypoints[63].children[1] = 64;
|
||||||
|
/* 2:28 */waypoints[63].children[2] = 65;
|
||||||
|
/* 2:28 */waypoints[63].children[3] = 66;
|
||||||
|
/* 2:28 */waypoints[64] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[64].origin =(-189.03, 2456.97, 280.125);
|
||||||
|
/* 2:28 */waypoints[64].type = "stand";
|
||||||
|
/* 2:28 */waypoints[64].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[64].children[0] = 63;
|
||||||
|
/* 2:28 */waypoints[65] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[65].origin =(-4.8071, 2303.86, 0.880319);
|
||||||
|
/* 2:28 */waypoints[65].type = "stand";
|
||||||
|
/* 2:28 */waypoints[65].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[65].children[0] = 63;
|
||||||
|
/* 2:28 */waypoints[65].children[1] = 73;
|
||||||
|
/* 2:28 */waypoints[65].children[2] = 124;
|
||||||
|
/* 2:28 */waypoints[66] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[66].origin =(-261.915, 3170.37, 264.125);
|
||||||
|
/* 2:28 */waypoints[66].type = "stand";
|
||||||
|
/* 2:28 */waypoints[66].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[66].children[0] = 63;
|
||||||
|
/* 2:28 */waypoints[66].children[1] = 67;
|
||||||
|
/* 2:28 */waypoints[67] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[67].origin =(-610.632, 3172.51, 264.125);
|
||||||
|
/* 2:28 */waypoints[67].type = "stand";
|
||||||
|
/* 2:28 */waypoints[67].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[67].children[0] = 66;
|
||||||
|
/* 2:28 */waypoints[67].children[1] = 68;
|
||||||
|
/* 2:28 */waypoints[68] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[68].origin =(-616.378, 2951.13, 392.125);
|
||||||
|
/* 2:28 */waypoints[68].type = "stand";
|
||||||
|
/* 2:28 */waypoints[68].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[68].children[0] = 67;
|
||||||
|
/* 2:28 */waypoints[68].children[1] = 69;
|
||||||
|
/* 2:28 */waypoints[69] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[69].origin =(-467.367, 2976.78, 392.125);
|
||||||
|
/* 2:28 */waypoints[69].type = "stand";
|
||||||
|
/* 2:28 */waypoints[69].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[69].children[0] = 68;
|
||||||
|
/* 2:28 */waypoints[69].children[1] = 70;
|
||||||
|
/* 2:28 */waypoints[70] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[70].origin =(-468.672, 2441.51, 352.125);
|
||||||
|
/* 2:28 */waypoints[70].type = "stand";
|
||||||
|
/* 2:28 */waypoints[70].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[70].children[0] = 69;
|
||||||
|
/* 2:28 */waypoints[70].children[1] = 71;
|
||||||
|
/* 2:28 */waypoints[71] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[71].origin =(-458.045, 1986.04, 352.125);
|
||||||
|
/* 2:28 */waypoints[71].type = "stand";
|
||||||
|
/* 2:28 */waypoints[71].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[71].children[0] = 70;
|
||||||
|
/* 2:28 */waypoints[71].children[1] = 72;
|
||||||
|
/* 2:28 */waypoints[72] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[72].origin =(-447.126, 1392.86, 352.125);
|
||||||
|
/* 2:28 */waypoints[72].type = "stand";
|
||||||
|
/* 2:28 */waypoints[72].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[72].children[0] = 71;
|
||||||
|
/* 2:28 */waypoints[72].children[1] = 53;
|
||||||
|
/* 2:28 */waypoints[73] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[73].origin =(491.768, 2165.86, 66.104);
|
||||||
|
/* 2:28 */waypoints[73].type = "stand";
|
||||||
|
/* 2:28 */waypoints[73].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[73].children[0] = 65;
|
||||||
|
/* 2:28 */waypoints[73].children[1] = 74;
|
||||||
|
/* 2:28 */waypoints[74] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[74].origin =(783.779, 2163.1, 140.809);
|
||||||
|
/* 2:28 */waypoints[74].type = "stand";
|
||||||
|
/* 2:28 */waypoints[74].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[74].children[0] = 59;
|
||||||
|
/* 2:28 */waypoints[74].children[1] = 73;
|
||||||
|
/* 2:28 */waypoints[74].children[2] = 75;
|
||||||
|
/* 2:28 */waypoints[75] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[75].origin =(1200.95, 2199.15, 197.415);
|
||||||
|
/* 2:28 */waypoints[75].type = "stand";
|
||||||
|
/* 2:28 */waypoints[75].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[75].children[0] = 74;
|
||||||
|
/* 2:28 */waypoints[75].children[1] = 43;
|
||||||
|
/* 2:28 */waypoints[76] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[76].origin =(2024.11, 2077.79, 288.125);
|
||||||
|
/* 2:28 */waypoints[76].type = "stand";
|
||||||
|
/* 2:28 */waypoints[76].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[76].children[0] = 43;
|
||||||
|
/* 2:28 */waypoints[76].children[1] = 77;
|
||||||
|
/* 2:28 */waypoints[77] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[77].origin =(2385.09, 2016.69, 289.187);
|
||||||
|
/* 2:28 */waypoints[77].type = "stand";
|
||||||
|
/* 2:28 */waypoints[77].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[77].children[0] = 76;
|
||||||
|
/* 2:28 */waypoints[77].children[1] = 25;
|
||||||
|
/* 2:28 */waypoints[78] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[78].origin =(1463.23, 1447.29, 378.503);
|
||||||
|
/* 2:28 */waypoints[78].type = "stand";
|
||||||
|
/* 2:28 */waypoints[78].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[78].children[0] = 42;
|
||||||
|
/* 2:28 */waypoints[78].children[1] = 79;
|
||||||
|
/* 2:28 */waypoints[78].children[2] = 121;
|
||||||
|
/* 2:28 */waypoints[78].children[3] = 123;
|
||||||
|
/* 2:28 */waypoints[79] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[79].origin =(1730.97, 1437.56, 448.125);
|
||||||
|
/* 2:28 */waypoints[79].type = "stand";
|
||||||
|
/* 2:28 */waypoints[79].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[79].children[0] = 78;
|
||||||
|
/* 2:28 */waypoints[79].children[1] = 80;
|
||||||
|
/* 2:28 */waypoints[80] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[80].origin =(1765.18, 1056.55, 448.125);
|
||||||
|
/* 2:28 */waypoints[80].type = "stand";
|
||||||
|
/* 2:28 */waypoints[80].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[80].children[0] = 79;
|
||||||
|
/* 2:28 */waypoints[80].children[1] = 17;
|
||||||
|
/* 2:28 */waypoints[81] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[81].origin =(1504.92, 647.033, 401.86);
|
||||||
|
/* 2:28 */waypoints[81].type = "stand";
|
||||||
|
/* 2:28 */waypoints[81].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[81].children[0] = 17;
|
||||||
|
/* 2:28 */waypoints[81].children[1] = 82;
|
||||||
|
/* 2:28 */waypoints[81].children[2] = 115;
|
||||||
|
/* 2:28 */waypoints[81].children[3] = 122;
|
||||||
|
/* 2:28 */waypoints[82] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[82].origin =(1858.37, 357.245, 456.125);
|
||||||
|
/* 2:28 */waypoints[82].type = "stand";
|
||||||
|
/* 2:28 */waypoints[82].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[82].children[0] = 81;
|
||||||
|
/* 2:28 */waypoints[82].children[1] = 83;
|
||||||
|
/* 2:28 */waypoints[83] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[83].origin =(2082.95, -121.025, 413.796);
|
||||||
|
/* 2:28 */waypoints[83].type = "stand";
|
||||||
|
/* 2:28 */waypoints[83].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[83].children[0] = 82;
|
||||||
|
/* 2:28 */waypoints[83].children[1] = 84;
|
||||||
|
/* 2:28 */waypoints[83].children[2] = 114;
|
||||||
|
/* 2:28 */waypoints[84] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[84].origin =(2295.63, -576.438, 384.125);
|
||||||
|
/* 2:28 */waypoints[84].type = "stand";
|
||||||
|
/* 2:28 */waypoints[84].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[84].children[0] = 83;
|
||||||
|
/* 2:28 */waypoints[84].children[1] = 85;
|
||||||
|
/* 2:28 */waypoints[85] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[85].origin =(2564.27, -834.922, 365.746);
|
||||||
|
/* 2:28 */waypoints[85].type = "stand";
|
||||||
|
/* 2:28 */waypoints[85].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[85].children[0] = 84;
|
||||||
|
/* 2:28 */waypoints[85].children[1] = 86;
|
||||||
|
/* 2:28 */waypoints[85].children[2] = 87;
|
||||||
|
/* 2:28 */waypoints[86] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[86].origin =(2868.75, -569.29, 327.674);
|
||||||
|
/* 2:28 */waypoints[86].type = "stand";
|
||||||
|
/* 2:28 */waypoints[86].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[86].children[0] = 85;
|
||||||
|
/* 2:28 */waypoints[86].children[1] = 3;
|
||||||
|
/* 2:28 */waypoints[86].children[2] = 0;
|
||||||
|
/* 2:28 */waypoints[87] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[87].origin =(2159.23, -1005.7, 370.408);
|
||||||
|
/* 2:28 */waypoints[87].type = "stand";
|
||||||
|
/* 2:28 */waypoints[87].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[87].children[0] = 85;
|
||||||
|
/* 2:28 */waypoints[87].children[1] = 88;
|
||||||
|
/* 2:28 */waypoints[87].children[2] = 89;
|
||||||
|
/* 2:28 */waypoints[88] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[88].origin =(2112.93, -1331.05, 373.502);
|
||||||
|
/* 2:28 */waypoints[88].type = "stand";
|
||||||
|
/* 2:28 */waypoints[88].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[88].children[0] = 87;
|
||||||
|
/* 2:28 */waypoints[89] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[89].origin =(1748.79, -908.919, 369.212);
|
||||||
|
/* 2:28 */waypoints[89].type = "stand";
|
||||||
|
/* 2:28 */waypoints[89].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[89].children[0] = 87;
|
||||||
|
/* 2:28 */waypoints[89].children[1] = 90;
|
||||||
|
/* 2:28 */waypoints[89].children[2] = 129;
|
||||||
|
/* 2:28 */waypoints[90] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[90].origin =(1169.31, -789.289, 448.078);
|
||||||
|
/* 2:28 */waypoints[90].type = "stand";
|
||||||
|
/* 2:28 */waypoints[90].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[90].children[0] = 89;
|
||||||
|
/* 2:28 */waypoints[90].children[1] = 91;
|
||||||
|
/* 2:28 */waypoints[90].children[2] = 109;
|
||||||
|
/* 2:28 */waypoints[91] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[91].origin =(966.949, -767.481, 458.656);
|
||||||
|
/* 2:28 */waypoints[91].type = "stand";
|
||||||
|
/* 2:28 */waypoints[91].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[91].children[0] = 90;
|
||||||
|
/* 2:28 */waypoints[91].children[1] = 92;
|
||||||
|
/* 2:28 */waypoints[92] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[92].origin =(969.219, -429.656, 463.89);
|
||||||
|
/* 2:28 */waypoints[92].type = "stand";
|
||||||
|
/* 2:28 */waypoints[92].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[92].children[0] = 91;
|
||||||
|
/* 2:28 */waypoints[92].children[1] = 93;
|
||||||
|
/* 2:28 */waypoints[93] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[93].origin =(393.004, -395.058, 324.05);
|
||||||
|
/* 2:28 */waypoints[93].type = "stand";
|
||||||
|
/* 2:28 */waypoints[93].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[93].children[0] = 92;
|
||||||
|
/* 2:28 */waypoints[93].children[1] = 94;
|
||||||
|
/* 2:28 */waypoints[93].children[2] = 95;
|
||||||
|
/* 2:28 */waypoints[94] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[94].origin =(247.477, -145.404, 320.202);
|
||||||
|
/* 2:28 */waypoints[94].type = "stand";
|
||||||
|
/* 2:28 */waypoints[94].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[94].children[0] = 93;
|
||||||
|
/* 2:28 */waypoints[94].children[1] = 98;
|
||||||
|
/* 2:28 */waypoints[94].children[2] = 107;
|
||||||
|
/* 2:28 */waypoints[94].children[3] = 110;
|
||||||
|
/* 2:28 */waypoints[95] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[95].origin =(-184.96, -380.843, 312.125);
|
||||||
|
/* 2:28 */waypoints[95].type = "stand";
|
||||||
|
/* 2:28 */waypoints[95].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[95].children[0] = 93;
|
||||||
|
/* 2:28 */waypoints[95].children[1] = 96;
|
||||||
|
/* 2:28 */waypoints[95].children[2] = 97;
|
||||||
|
/* 2:28 */waypoints[96] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[96].origin =(-235.774, -948.15, 312.125);
|
||||||
|
/* 2:28 */waypoints[96].type = "stand";
|
||||||
|
/* 2:28 */waypoints[96].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[96].children[0] = 95;
|
||||||
|
/* 2:28 */waypoints[97] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[97].origin =(-208.182, -137.853, 318.125);
|
||||||
|
/* 2:28 */waypoints[97].type = "stand";
|
||||||
|
/* 2:28 */waypoints[97].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[97].children[0] = 95;
|
||||||
|
/* 2:28 */waypoints[97].children[1] = 98;
|
||||||
|
/* 2:28 */waypoints[97].children[2] = 101;
|
||||||
|
/* 2:28 */waypoints[98] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[98].origin =(82.2525, -130.375, 318.125);
|
||||||
|
/* 2:28 */waypoints[98].type = "stand";
|
||||||
|
/* 2:28 */waypoints[98].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[98].children[0] = 97;
|
||||||
|
/* 2:28 */waypoints[98].children[1] = 94;
|
||||||
|
/* 2:28 */waypoints[98].children[2] = 99;
|
||||||
|
/* 2:28 */waypoints[99] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[99].origin =(117.842, 344.35, 318.125);
|
||||||
|
/* 2:28 */waypoints[99].type = "stand";
|
||||||
|
/* 2:28 */waypoints[99].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[99].children[0] = 98;
|
||||||
|
/* 2:28 */waypoints[99].children[1] = 100;
|
||||||
|
/* 2:28 */waypoints[100] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[100].origin =(-446.632, 371.655, 318.125);
|
||||||
|
/* 2:28 */waypoints[100].type = "stand";
|
||||||
|
/* 2:28 */waypoints[100].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[100].children[0] = 99;
|
||||||
|
/* 2:28 */waypoints[101] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[101].origin =(-385.118, -146.135, 318.125);
|
||||||
|
/* 2:28 */waypoints[101].type = "stand";
|
||||||
|
/* 2:28 */waypoints[101].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[101].children[0] = 97;
|
||||||
|
/* 2:28 */waypoints[101].children[1] = 102;
|
||||||
|
/* 2:28 */waypoints[102] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[102].origin =(-343.546, 184.716, 184.125);
|
||||||
|
/* 2:28 */waypoints[102].type = "stand";
|
||||||
|
/* 2:28 */waypoints[102].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[102].children[0] = 101;
|
||||||
|
/* 2:28 */waypoints[102].children[1] = 103;
|
||||||
|
/* 2:28 */waypoints[103] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[103].origin =(-216.582, 159.79, 184.125);
|
||||||
|
/* 2:28 */waypoints[103].type = "stand";
|
||||||
|
/* 2:28 */waypoints[103].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[103].children[0] = 102;
|
||||||
|
/* 2:28 */waypoints[103].children[1] = 104;
|
||||||
|
/* 2:28 */waypoints[103].children[2] = 105;
|
||||||
|
/* 2:28 */waypoints[103].children[3] = 131;
|
||||||
|
/* 2:28 */waypoints[104] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[104].origin =(-184.581, 581.531, 164.887);
|
||||||
|
/* 2:28 */waypoints[104].type = "stand";
|
||||||
|
/* 2:28 */waypoints[104].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[104].children[0] = 103;
|
||||||
|
/* 2:28 */waypoints[104].children[1] = 127;
|
||||||
|
/* 2:28 */waypoints[104].children[2] = 128;
|
||||||
|
/* 2:28 */waypoints[105] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[105].origin =(-3.4811, -97.3133, 184.125);
|
||||||
|
/* 2:28 */waypoints[105].type = "stand";
|
||||||
|
/* 2:28 */waypoints[105].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[105].children[0] = 103;
|
||||||
|
/* 2:28 */waypoints[105].children[1] = 106;
|
||||||
|
/* 2:28 */waypoints[106] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[106].origin =(-421.59, -152.007, 184.125);
|
||||||
|
/* 2:28 */waypoints[106].type = "stand";
|
||||||
|
/* 2:28 */waypoints[106].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[106].children[0] = 105;
|
||||||
|
/* 2:28 */waypoints[107] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[107].origin =(790.588, -141.852, 423.57);
|
||||||
|
/* 2:28 */waypoints[107].type = "stand";
|
||||||
|
/* 2:28 */waypoints[107].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[107].children[0] = 94;
|
||||||
|
/* 2:28 */waypoints[107].children[1] = 108;
|
||||||
|
/* 2:28 */waypoints[108] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[108].origin =(1359.77, -256.855, 512.125);
|
||||||
|
/* 2:28 */waypoints[108].type = "stand";
|
||||||
|
/* 2:28 */waypoints[108].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[108].children[0] = 107;
|
||||||
|
/* 2:28 */waypoints[108].children[1] = 109;
|
||||||
|
/* 2:28 */waypoints[109] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[109].origin =(1350.26, -731.4, 512.125);
|
||||||
|
/* 2:28 */waypoints[109].type = "stand";
|
||||||
|
/* 2:28 */waypoints[109].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[109].children[0] = 108;
|
||||||
|
/* 2:28 */waypoints[109].children[1] = 90;
|
||||||
|
/* 2:28 */waypoints[110] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[110].origin =(291.332, 314.778, 352.125);
|
||||||
|
/* 2:28 */waypoints[110].type = "stand";
|
||||||
|
/* 2:28 */waypoints[110].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[110].children[0] = 94;
|
||||||
|
/* 2:28 */waypoints[110].children[1] = 111;
|
||||||
|
/* 2:28 */waypoints[111] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[111].origin =(858.297, 289.272, 352.125);
|
||||||
|
/* 2:28 */waypoints[111].type = "stand";
|
||||||
|
/* 2:28 */waypoints[111].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[111].children[0] = 110;
|
||||||
|
/* 2:28 */waypoints[111].children[1] = 112;
|
||||||
|
/* 2:28 */waypoints[112] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[112].origin =(1314.01, 380.426, 443.314);
|
||||||
|
/* 2:28 */waypoints[112].type = "stand";
|
||||||
|
/* 2:28 */waypoints[112].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[112].children[0] = 111;
|
||||||
|
/* 2:28 */waypoints[112].children[1] = 113;
|
||||||
|
/* 2:28 */waypoints[112].children[2] = 115;
|
||||||
|
/* 2:28 */waypoints[112].children[3] = 116;
|
||||||
|
/* 2:28 */waypoints[113] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[113].origin =(1418.77, -8.68756, 445.114);
|
||||||
|
/* 2:28 */waypoints[113].type = "stand";
|
||||||
|
/* 2:28 */waypoints[113].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[113].children[0] = 112;
|
||||||
|
/* 2:28 */waypoints[113].children[1] = 114;
|
||||||
|
/* 2:28 */waypoints[114] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[114].origin =(1738.93, -26.7734, 429.408);
|
||||||
|
/* 2:28 */waypoints[114].type = "stand";
|
||||||
|
/* 2:28 */waypoints[114].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[114].children[0] = 113;
|
||||||
|
/* 2:28 */waypoints[114].children[1] = 83;
|
||||||
|
/* 2:28 */waypoints[114].children[2] = 115;
|
||||||
|
/* 2:28 */waypoints[114].children[3] = 129;
|
||||||
|
/* 2:28 */waypoints[115] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[115].origin =(1502.51, 474.865, 419.02);
|
||||||
|
/* 2:28 */waypoints[115].type = "stand";
|
||||||
|
/* 2:28 */waypoints[115].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[115].children[0] = 114;
|
||||||
|
/* 2:28 */waypoints[115].children[1] = 112;
|
||||||
|
/* 2:28 */waypoints[115].children[2] = 81;
|
||||||
|
/* 2:28 */waypoints[116] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[116].origin =(938.243, 730.388, 285.171);
|
||||||
|
/* 2:28 */waypoints[116].type = "stand";
|
||||||
|
/* 2:28 */waypoints[116].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[116].children[0] = 112;
|
||||||
|
/* 2:28 */waypoints[116].children[1] = 117;
|
||||||
|
/* 2:28 */waypoints[116].children[2] = 119;
|
||||||
|
/* 2:28 */waypoints[117] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[117].origin =(719.033, 601.535, 229.742);
|
||||||
|
/* 2:28 */waypoints[117].type = "stand";
|
||||||
|
/* 2:28 */waypoints[117].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[117].children[0] = 116;
|
||||||
|
/* 2:28 */waypoints[117].children[1] = 118;
|
||||||
|
/* 2:28 */waypoints[118] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[118].origin =(405.891, 791.676, 100.162);
|
||||||
|
/* 2:28 */waypoints[118].type = "stand";
|
||||||
|
/* 2:28 */waypoints[118].childCount = 4;
|
||||||
|
/* 2:28 */waypoints[118].children[0] = 117;
|
||||||
|
/* 2:28 */waypoints[118].children[1] = 119;
|
||||||
|
/* 2:28 */waypoints[118].children[2] = 126;
|
||||||
|
/* 2:28 */waypoints[118].children[3] = 127;
|
||||||
|
/* 2:28 */waypoints[119] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[119].origin =(776.489, 962.943, 262.21);
|
||||||
|
/* 2:28 */waypoints[119].type = "stand";
|
||||||
|
/* 2:28 */waypoints[119].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[119].children[0] = 118;
|
||||||
|
/* 2:28 */waypoints[119].children[1] = 116;
|
||||||
|
/* 2:28 */waypoints[119].children[2] = 120;
|
||||||
|
/* 2:28 */waypoints[120] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[120].origin =(960.079, 1076.48, 337.225);
|
||||||
|
/* 2:28 */waypoints[120].type = "stand";
|
||||||
|
/* 2:28 */waypoints[120].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[120].children[0] = 119;
|
||||||
|
/* 2:28 */waypoints[120].children[1] = 44;
|
||||||
|
/* 2:28 */waypoints[121] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[121].origin =(1143.09, 1304.75, 377.946);
|
||||||
|
/* 2:28 */waypoints[121].type = "stand";
|
||||||
|
/* 2:28 */waypoints[121].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[121].children[0] = 44;
|
||||||
|
/* 2:28 */waypoints[121].children[1] = 78;
|
||||||
|
/* 2:28 */waypoints[121].children[2] = 122;
|
||||||
|
/* 2:28 */waypoints[122] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[122].origin =(1308.84, 904.774, 379.718);
|
||||||
|
/* 2:28 */waypoints[122].type = "stand";
|
||||||
|
/* 2:28 */waypoints[122].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[122].children[0] = 121;
|
||||||
|
/* 2:28 */waypoints[122].children[1] = 81;
|
||||||
|
/* 2:28 */waypoints[122].children[2] = 123;
|
||||||
|
/* 2:28 */waypoints[123] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[123].origin =(1490.45, 1040.37, 378.852);
|
||||||
|
/* 2:28 */waypoints[123].type = "stand";
|
||||||
|
/* 2:28 */waypoints[123].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[123].children[0] = 78;
|
||||||
|
/* 2:28 */waypoints[123].children[1] = 122;
|
||||||
|
/* 2:28 */waypoints[124] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[124].origin =(-174.957, 1891.13, 42.7026);
|
||||||
|
/* 2:28 */waypoints[124].type = "stand";
|
||||||
|
/* 2:28 */waypoints[124].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[124].children[0] = 65;
|
||||||
|
/* 2:28 */waypoints[124].children[1] = 125;
|
||||||
|
/* 2:28 */waypoints[125] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[125].origin =(-231.508, 1359.29, 96.0002);
|
||||||
|
/* 2:28 */waypoints[125].type = "stand";
|
||||||
|
/* 2:28 */waypoints[125].childCount = 3;
|
||||||
|
/* 2:28 */waypoints[125].children[0] = 124;
|
||||||
|
/* 2:28 */waypoints[125].children[1] = 126;
|
||||||
|
/* 2:28 */waypoints[125].children[2] = 128;
|
||||||
|
/* 2:28 */waypoints[126] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[126].origin =(29.5393, 1039.58, 86.4872);
|
||||||
|
/* 2:28 */waypoints[126].type = "stand";
|
||||||
|
/* 2:28 */waypoints[126].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[126].children[0] = 125;
|
||||||
|
/* 2:28 */waypoints[126].children[1] = 118;
|
||||||
|
/* 2:28 */waypoints[127] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[127].origin =(126.608, 614.914, 150.852);
|
||||||
|
/* 2:28 */waypoints[127].type = "stand";
|
||||||
|
/* 2:28 */waypoints[127].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[127].children[0] = 118;
|
||||||
|
/* 2:28 */waypoints[127].children[1] = 104;
|
||||||
|
/* 2:28 */waypoints[128] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[128].origin =(-268.32, 900.592, 85.5508);
|
||||||
|
/* 2:28 */waypoints[128].type = "stand";
|
||||||
|
/* 2:28 */waypoints[128].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[128].children[0] = 104;
|
||||||
|
/* 2:28 */waypoints[128].children[1] = 125;
|
||||||
|
/* 2:28 */waypoints[129] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[129].origin =(1778.39, -391.275, 399.693);
|
||||||
|
/* 2:28 */waypoints[129].type = "stand";
|
||||||
|
/* 2:28 */waypoints[129].childCount = 2;
|
||||||
|
/* 2:28 */waypoints[129].children[0] = 89;
|
||||||
|
/* 2:28 */waypoints[129].children[1] = 114;
|
||||||
|
/* 2:28 */waypoints[130] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[130].origin =(145.901, 3155.58, 291.817);
|
||||||
|
/* 2:28 */waypoints[130].type = "stand";
|
||||||
|
/* 2:28 */waypoints[130].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[130].children[0] = 61;
|
||||||
|
/* 2:28 */waypoints[131] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[131].origin =(-268.875, 100.425, 184.125);
|
||||||
|
/* 2:28 */waypoints[131].type = "stand";
|
||||||
|
/* 2:28 */waypoints[131].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[131].children[0] = 103;
|
||||||
|
/* 2:28 */waypoints[132] = spawnstruct();
|
||||||
|
/* 2:28 */waypoints[132].origin =(2420.45, 595.496, 286.633);
|
||||||
|
/* 2:28 */waypoints[132].type = "stand";
|
||||||
|
/* 2:28 */waypoints[132].childCount = 1;
|
||||||
|
/* 2:28 */waypoints[132].children[0] = 22;
|
||||||
|
return waypoints;
|
||||||
|
}
|
1009
mods/bots/maps/mp/bots/waypoints/vacant.gsc
Normal file
1009
mods/bots/maps/mp/bots/waypoints/vacant.gsc
Normal file
File diff suppressed because it is too large
Load Diff
1163
mods/bots/maps/mp/bots/waypoints/wasteland.gsc
Normal file
1163
mods/bots/maps/mp/bots/waypoints/wasteland.gsc
Normal file
File diff suppressed because it is too large
Load Diff
1619
mods/bots/maps/mp/bots/waypoints/wetwork.gsc
Normal file
1619
mods/bots/maps/mp/bots/waypoints/wetwork.gsc
Normal file
File diff suppressed because it is too large
Load Diff
4
mods/bots/maps/mp/bots/waypoints/whitehouse.gsc
Normal file
4
mods/bots/maps/mp/bots/waypoints/whitehouse.gsc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Whitehouse()
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
4
mods/bots/scripts/bots.gsc
Normal file
4
mods/bots/scripts/bots.gsc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
init()
|
||||||
|
{
|
||||||
|
level thread maps\mp\bots\_bot::init();
|
||||||
|
}
|
1
z_dev.bat
Normal file
1
z_dev.bat
Normal file
@ -0,0 +1 @@
|
|||||||
|
start iw4x.exe -nosteam -console +set r_fullscreen "0" +set fs_game "mods/bots" +set developer "1" +set developer_script "1" +set cg_drawfps "4" +set sv_cheats "1" +set drawlagometer "1" +set scr_game_spectatetype "2" +set r_mode "7" +devmap mp_rust
|
1
z_devserver.bat
Normal file
1
z_devserver.bat
Normal file
@ -0,0 +1 @@
|
|||||||
|
start iw4x.exe -nosteam -console +set r_fullscreen "0" +set fs_game "mods/bots" +set developer "1" +set developer_script "1" +set cg_drawfps "4" +set sv_cheats "1" +set drawlagometer "1" +set scr_game_spectatetype "2" +set r_mode "7" +connect 127.0.0.1
|
1
z_serverdev.bat
Normal file
1
z_serverdev.bat
Normal file
@ -0,0 +1 @@
|
|||||||
|
start iw4x.exe -dedicated +set fs_game "mods/bots" +set developer "1" +set developer_script "1" +set scr_game_spectatetype "2" scr_war_scorelimit "0" +set sv_cheats "1" +set logfile "2" +set bots_manage_add "7" +devmap mp_rust
|
Loading…
x
Reference in New Issue
Block a user