diff --git a/README.md b/README.md index 1112c7d..40edf00 100644 --- a/README.md +++ b/README.md @@ -171,5 +171,10 @@ You can find the ModDB release post [here](https://www.moddb.com/mods/bot-warfar - Ability - Salvation +### Waypoint Creators +- FragsAreUs - https://github.com/FragsAreUs +- Aesirix - https://github.com/Aesirix +- EpikIzCool - https://github.com/super23 + Feel free to use code, host on other sites, host on servers, mod it and merge mods with it, just give credit where credit is due! -INeedGames/INeedBot(s) @ ineedbots@outlook.com diff --git a/raw/maps/mp/bots/_bot_internal.gsc b/raw/maps/mp/bots/_bot_internal.gsc index 5de818b..bad1455 100644 --- a/raw/maps/mp/bots/_bot_internal.gsc +++ b/raw/maps/mp/bots/_bot_internal.gsc @@ -885,7 +885,7 @@ stance_loop() if(self.bot.sprintendtime != -1 && time - self.bot.sprintendtime < 2000) return; - if(!isDefined(self.bot.towards_goal) || DistanceSquared(self.origin, self.bot.towards_goal) < level.bots_minSprintDistance || getConeDot(self.bot.towards_goal, self.origin, self GetPlayerAngles()) < 0.75) + if(!isDefined(self.bot.towards_goal) || DistanceSquared(self.origin, physicsTrace(self getEye(), self getEye() + anglesToForward(self getPlayerAngles()) * 1024, false, undefined)) < level.bots_minSprintDistance || getConeDot(self.bot.towards_goal, self.origin, self GetPlayerAngles()) < 0.75) return; self thread sprint(); @@ -1200,13 +1200,13 @@ target_loop() targetAnkleLeft = player getTagOrigin( "j_ankle_le" ); targetAnkleRight = player getTagOrigin( "j_ankle_ri" ); - canTargetPlayer = ((distanceSquared(BulletTrace(myEye, targetHead, false, self)["position"], targetHead) < 0.05 || - distanceSquared(BulletTrace(myEye, targetAnkleLeft, false, self)["position"], targetAnkleLeft) < 0.05 || - distanceSquared(BulletTrace(myEye, targetAnkleRight, false, self)["position"], targetAnkleRight) < 0.05) + canTargetPlayer = ((bulletTracePassed(myEye, targetHead, false, undefined) || + bulletTracePassed(myEye, targetAnkleLeft, false, undefined) || + bulletTracePassed(myEye, targetAnkleRight, false, undefined)) - && (distanceSquared(PhysicsTrace( myEye, targetHead, false, self ), targetHead) < 0.05 || - distanceSquared(PhysicsTrace( myEye, targetAnkleLeft, false, self ), targetAnkleLeft) < 0.05 || - distanceSquared(PhysicsTrace( myEye, targetAnkleRight, false, self ), targetAnkleRight) < 0.05) + && (sightTracePassed(myEye, targetHead, false, undefined) || + sightTracePassed(myEye, targetAnkleLeft, false, undefined) || + sightTracePassed(myEye, targetAnkleRight, false, undefined)) && (ignoreSmoke || SmokeTrace(myEye, player.origin, level.smokeRadius) || diff --git a/raw/maps/mp/bots/_bot_script.gsc b/raw/maps/mp/bots/_bot_script.gsc index aae0f3b..7df55a5 100644 --- a/raw/maps/mp/bots/_bot_script.gsc +++ b/raw/maps/mp/bots/_bot_script.gsc @@ -1539,15 +1539,12 @@ onDeath() { self endon("disconnect"); - self thread onGiveLoadout(); for(;;) { self waittill("death"); self.wantSafeSpawn = true; self ClearScriptGoal(); - - self thread onGiveLoadout(); } } @@ -1557,11 +1554,13 @@ onDeath() onGiveLoadout() { self endon("disconnect"); - self endon("death"); - self waittill("giveLoadout"); + for (;;) + { + self waittill("giveLoadout", team, class, allowCopycat, setPrimarySpawnWeapon); - self botGiveLoadout(self.team, self.class, false, true); + self botGiveLoadout(team, class, allowCopycat, setPrimarySpawnWeapon); + } } /* @@ -1583,9 +1582,6 @@ onSpawned() self.bot_was_follow_script_update = undefined; self.bot_stuck_on_carepackage = undefined; - // prevent bot changing class after spawning - self.hasDoneCombat = true; - if (getDvarInt("bots_play_obj")) self thread bot_dom_cap_think(); } @@ -4420,6 +4416,21 @@ bot_killstreak_think_loop(data) if (self InLastStand() && !self InFinalStand()) return; + + if (isDefined(self.isCarrying) && self.isCarrying) + { + self notify("place_sentry"); + self notify("place_turret"); + self notify("place_ims"); + self notify("place_carryRemoteUAV"); + self notify("place_tank"); + } + + curWeap = self GetCurrentWeapon(); + if (isSubStr(curWeap, "airdrop_")) + self thread BotPressAttack(0.05); + + useableStreaks = []; if (!isDefined(data.doFastContinue)) @@ -4452,7 +4463,6 @@ bot_killstreak_think_loop(data) return; ksWeap = maps\mp\killstreaks\_killstreaks::getKillstreakWeapon( streakName ); - curWeap = self GetCurrentWeapon(); if (curWeap == "none" || !isWeaponPrimary(curWeap)) curWeap = self GetLastWeapon(); diff --git a/raw/maps/mp/bots/_bot_utility.gsc b/raw/maps/mp/bots/_bot_utility.gsc index 005c5fb..1e48f41 100644 --- a/raw/maps/mp/bots/_bot_utility.gsc +++ b/raw/maps/mp/bots/_bot_utility.gsc @@ -922,6 +922,33 @@ load_waypoints() case "mp_seatown": level.waypoints = maps\mp\bots\waypoints\seatown::Seatown(); break; + case "mp_plaza2": + level.waypoints = maps\mp\bots\waypoints\arkaden::Arkaden(); + break; + case "mp_mogadishu": + level.waypoints = maps\mp\bots\waypoints\bakaara::Bakaara(); + break; + case "mp_highrise": + level.waypoints = maps\mp\bots\waypoints\highrise::Highrise(); + break; + case "mp_paris": + level.waypoints = maps\mp\bots\waypoints\resistance::Resistance(); + break; + case "mp_bootleg": + level.waypoints = maps\mp\bots\waypoints\bootleg::Bootleg(); + break; + case "mp_exchange": + level.waypoints = maps\mp\bots\waypoints\downturn::Downturn(); + break; + case "mp_carbon": + level.waypoints = maps\mp\bots\waypoints\carbon::Carbon(); + break; + case "mp_rust": + level.waypoints = maps\mp\bots\waypoints\rust::Rust(); + break; + case "mp_test": + level.waypoints = maps\mp\bots\waypoints\testmap::TestMap(); + break; default: maps\mp\bots\waypoints\_custom_map::main(mapname); break; diff --git a/raw/maps/mp/bots/_wp_editor.gsc b/raw/maps/mp/bots/_wp_editor.gsc index 3b171fe..8ae0b8c 100644 --- a/raw/maps/mp/bots/_wp_editor.gsc +++ b/raw/maps/mp/bots/_wp_editor.gsc @@ -620,6 +620,23 @@ checkForWarnings() if(!isDefined(level.waypoints[i].angles) && (level.waypoints[i].type == "claymore" || level.waypoints[i].type == "tube" || (level.waypoints[i].type == "crouch" && level.waypoints[i].children.size == 1) || level.waypoints[i].type == "climb" || level.waypoints[i].type == "grenade")) self iprintln("WARNING: waypoint "+i+" angles is undefined"); } + + // check reachability, assume bidirectional graph + + wpIdx = randomInt(level.waypointCount); + + for(i = 0; i < level.waypointCount; i++) + { + if (i % 5 == 0) + wait 0.05; + + astar = AStarSearch(level.waypoints[wpIdx].origin, level.waypoints[i].origin, undefined, true); + + if (astar.size <= 0) + self iprintln("WARNING: waypoint "+wpIdx+" has no path to waypoint " + i); + } + + self iprintln("Waypoint warnings check completed."); } UnLinkWaypoint(nwp) diff --git a/raw/maps/mp/bots/waypoints/arkaden.gsc b/raw/maps/mp/bots/waypoints/arkaden.gsc new file mode 100644 index 0000000..8f92bdd --- /dev/null +++ b/raw/maps/mp/bots/waypoints/arkaden.gsc @@ -0,0 +1,1147 @@ +Arkaden() +{ +/* 88:55 */waypoints = []; +/* 88:55 */waypoints[0] = spawnstruct(); +/* 88:55 */waypoints[0].origin = (-593.774, 2026.16, 739.269); +/* 88:55 */waypoints[0].type = "stand"; +/* 88:55 */waypoints[0].children[0] = 1; +/* 88:55 */waypoints[0].children[1] = 132; +/* 88:55 */waypoints[0].children[2] = 135; +/* 88:55 */waypoints[0].children[3] = 136; +/* 88:55 */waypoints[1] = spawnstruct(); +/* 88:55 */waypoints[1].origin = (-543.737, 1770.66, 614.041); +/* 88:55 */waypoints[1].type = "stand"; +/* 88:55 */waypoints[1].children[0] = 0; +/* 88:55 */waypoints[1].children[1] = 2; +/* 88:55 */waypoints[1].children[2] = 6; +/* 88:55 */waypoints[1].children[3] = 29; +/* 88:55 */waypoints[1].children[4] = 128; +/* 88:55 */waypoints[1].children[5] = 133; +/* 88:55 */waypoints[2] = spawnstruct(); +/* 88:55 */waypoints[2].origin = (-404.267, 1070.15, 616.125); +/* 88:55 */waypoints[2].type = "stand"; +/* 88:55 */waypoints[2].children[0] = 3; +/* 88:55 */waypoints[2].children[1] = 1; +/* 88:55 */waypoints[2].children[2] = 4; +/* 88:55 */waypoints[2].children[3] = 5; +/* 88:55 */waypoints[2].children[4] = 27; +/* 88:55 */waypoints[2].children[5] = 123; +/* 88:55 */waypoints[2].children[6] = 146; +/* 88:55 */waypoints[3] = spawnstruct(); +/* 88:55 */waypoints[3].origin = (-1276.86, 1039.32, 796.125); +/* 88:55 */waypoints[3].type = "stand"; +/* 88:55 */waypoints[3].children[0] = 2; +/* 88:55 */waypoints[3].children[1] = 7; +/* 88:55 */waypoints[3].children[2] = 8; +/* 88:55 */waypoints[3].children[3] = 9; +/* 88:55 */waypoints[4] = spawnstruct(); +/* 88:55 */waypoints[4].origin = (-3.64847, 1039.76, 616.125); +/* 88:55 */waypoints[4].type = "stand"; +/* 88:55 */waypoints[4].children[0] = 2; +/* 88:55 */waypoints[4].children[1] = 122; +/* 88:55 */waypoints[4].children[2] = 124; +/* 88:55 */waypoints[4].children[3] = 127; +/* 88:55 */waypoints[4].children[4] = 131; +/* 88:55 */waypoints[4].children[5] = 29; +/* 88:55 */waypoints[5] = spawnstruct(); +/* 88:55 */waypoints[5].origin = (-542.875, 723.125, 618.125); +/* 88:55 */waypoints[5].type = "crouch"; +/* 88:55 */waypoints[5].children[0] = 2; +/* 88:55 */waypoints[5].angles = (0.961304, 46.5473, 0); +/* 88:55 */waypoints[6] = spawnstruct(); +/* 88:55 */waypoints[6].origin = (-1139.75, 1822.84, 608.125); +/* 88:55 */waypoints[6].type = "stand"; +/* 88:55 */waypoints[6].children[0] = 1; +/* 88:55 */waypoints[6].children[1] = 7; +/* 88:55 */waypoints[6].children[2] = 134; +/* 88:55 */waypoints[6].children[3] = 32; +/* 88:55 */waypoints[6].children[4] = 150; +/* 88:55 */waypoints[7] = spawnstruct(); +/* 88:55 */waypoints[7].origin = (-1374.84, 1307.55, 733.707); +/* 88:55 */waypoints[7].type = "stand"; +/* 88:55 */waypoints[7].children[0] = 6; +/* 88:55 */waypoints[7].children[1] = 3; +/* 88:55 */waypoints[7].children[2] = 32; +/* 88:55 */waypoints[7].children[3] = 9; +/* 88:55 */waypoints[7].children[4] = 134; +/* 88:55 */waypoints[7].children[5] = 145; +/* 88:55 */waypoints[8] = spawnstruct(); +/* 88:55 */waypoints[8].origin = (-1247.76, 829.624, 800.125); +/* 88:55 */waypoints[8].type = "stand"; +/* 88:55 */waypoints[8].children[0] = 3; +/* 88:55 */waypoints[8].children[1] = 9; +/* 88:55 */waypoints[8].children[2] = 15; +/* 88:55 */waypoints[8].children[3] = 33; +/* 88:55 */waypoints[8].children[4] = 166; +/* 88:55 */waypoints[9] = spawnstruct(); +/* 88:55 */waypoints[9].origin = (-1383.44, 837.804, 800.125); +/* 88:55 */waypoints[9].type = "stand"; +/* 88:55 */waypoints[9].children[0] = 3; +/* 88:55 */waypoints[9].children[1] = 8; +/* 88:55 */waypoints[9].children[2] = 10; +/* 88:55 */waypoints[9].children[3] = 14; +/* 88:55 */waypoints[9].children[4] = 23; +/* 88:55 */waypoints[9].children[5] = 24; +/* 88:55 */waypoints[9].children[6] = 7; +/* 88:55 */waypoints[9].children[7] = 137; +/* 88:55 */waypoints[10] = spawnstruct(); +/* 88:55 */waypoints[10].origin = (-1513.54, 247.259, 800.125); +/* 88:55 */waypoints[10].type = "stand"; +/* 88:55 */waypoints[10].children[0] = 11; +/* 88:55 */waypoints[10].children[1] = 9; +/* 88:55 */waypoints[10].children[2] = 64; +/* 88:55 */waypoints[10].children[3] = 68; +/* 88:55 */waypoints[10].children[4] = 70; +/* 88:55 */waypoints[10].children[5] = 170; +/* 88:55 */waypoints[11] = spawnstruct(); +/* 88:55 */waypoints[11].origin = (-1516.25, -284.984, 800.125); +/* 88:55 */waypoints[11].type = "stand"; +/* 88:55 */waypoints[11].children[0] = 12; +/* 88:55 */waypoints[11].children[1] = 10; +/* 88:55 */waypoints[11].children[2] = 55; +/* 88:55 */waypoints[11].children[3] = 65; +/* 88:55 */waypoints[11].children[4] = 68; +/* 88:55 */waypoints[11].children[5] = 71; +/* 88:55 */waypoints[11].children[6] = 72; +/* 88:55 */waypoints[12] = spawnstruct(); +/* 88:55 */waypoints[12].origin = (-1504.53, -658.967, 800.125); +/* 88:55 */waypoints[12].type = "stand"; +/* 88:55 */waypoints[12].children[0] = 13; +/* 88:55 */waypoints[12].children[1] = 11; +/* 88:55 */waypoints[12].children[2] = 77; +/* 88:55 */waypoints[12].children[3] = 148; +/* 88:55 */waypoints[12].children[4] = 161; +/* 88:55 */waypoints[13] = spawnstruct(); +/* 88:55 */waypoints[13].origin = (-1503.33, -888.662, 803.125); +/* 88:55 */waypoints[13].type = "stand"; +/* 88:55 */waypoints[13].children[0] = 12; +/* 88:55 */waypoints[13].children[1] = 78; +/* 88:55 */waypoints[13].children[2] = 148; +/* 88:55 */waypoints[14] = spawnstruct(); +/* 88:55 */waypoints[14].origin = (-1095.3, 489.197, 800.125); +/* 88:55 */waypoints[14].type = "stand"; +/* 88:55 */waypoints[14].children[0] = 9; +/* 88:55 */waypoints[14].children[1] = 15; +/* 88:55 */waypoints[14].children[2] = 20; +/* 88:55 */waypoints[14].children[3] = 22; +/* 88:55 */waypoints[15] = spawnstruct(); +/* 88:55 */waypoints[15].origin = (-1242.23, 709.296, 800.125); +/* 88:55 */waypoints[15].type = "stand"; +/* 88:55 */waypoints[15].children[0] = 8; +/* 88:55 */waypoints[15].children[1] = 14; +/* 88:55 */waypoints[15].children[2] = 23; +/* 88:55 */waypoints[15].children[3] = 139; +/* 88:55 */waypoints[15].children[4] = 21; +/* 88:55 */waypoints[15].children[5] = 22; +/* 88:55 */waypoints[15].children[6] = 20; +/* 88:55 */waypoints[16] = spawnstruct(); +/* 88:55 */waypoints[16].origin = (-1116.2, 272.399, 800.125); +/* 88:55 */waypoints[16].type = "stand"; +/* 88:55 */waypoints[16].children[0] = 22; +/* 88:55 */waypoints[16].children[1] = 17; +/* 88:55 */waypoints[16].children[2] = 147; +/* 88:55 */waypoints[17] = spawnstruct(); +/* 88:55 */waypoints[17].origin = (-1116.13, -104.238, 608.125); +/* 88:55 */waypoints[17].type = "stand"; +/* 88:55 */waypoints[17].children[0] = 19; +/* 88:55 */waypoints[17].children[1] = 18; +/* 88:55 */waypoints[17].children[2] = 16; +/* 88:55 */waypoints[17].children[3] = 37; +/* 88:55 */waypoints[17].children[4] = 147; +/* 88:55 */waypoints[18] = spawnstruct(); +/* 88:55 */waypoints[18].origin = (-1225.72, -92.1519, 608.125); +/* 88:55 */waypoints[18].type = "stand"; +/* 88:55 */waypoints[18].children[0] = 17; +/* 88:55 */waypoints[18].children[1] = 21; +/* 88:55 */waypoints[18].children[2] = 38; +/* 88:55 */waypoints[18].children[3] = 62; +/* 88:55 */waypoints[18].children[4] = 60; +/* 88:55 */waypoints[19] = spawnstruct(); +/* 88:55 */waypoints[19].origin = (-1001.85, -117.033, 608.125); +/* 88:55 */waypoints[19].type = "stand"; +/* 88:55 */waypoints[19].children[0] = 20; +/* 88:55 */waypoints[19].children[1] = 17; +/* 88:55 */waypoints[19].children[2] = 37; +/* 88:55 */waypoints[19].children[3] = 34; +/* 88:55 */waypoints[20] = spawnstruct(); +/* 88:55 */waypoints[20].origin = (-993.849, 266.29, 801.125); +/* 88:55 */waypoints[20].type = "stand"; +/* 88:55 */waypoints[20].children[0] = 14; +/* 88:55 */waypoints[20].children[1] = 19; +/* 88:55 */waypoints[20].children[2] = 22; +/* 88:55 */waypoints[20].children[3] = 15; +/* 88:55 */waypoints[21] = spawnstruct(); +/* 88:55 */waypoints[21].origin = (-1233.5, 279.529, 801.125); +/* 88:55 */waypoints[21].type = "stand"; +/* 88:55 */waypoints[21].children[0] = 18; +/* 88:55 */waypoints[21].children[1] = 22; +/* 88:55 */waypoints[21].children[2] = 15; +/* 88:55 */waypoints[22] = spawnstruct(); +/* 88:55 */waypoints[22].origin = (-1123.09, 401.336, 800.125); +/* 88:55 */waypoints[22].type = "stand"; +/* 88:55 */waypoints[22].children[0] = 21; +/* 88:55 */waypoints[22].children[1] = 20; +/* 88:55 */waypoints[22].children[2] = 16; +/* 88:55 */waypoints[22].children[3] = 14; +/* 88:55 */waypoints[22].children[4] = 23; +/* 88:55 */waypoints[22].children[5] = 24; +/* 88:55 */waypoints[22].children[6] = 59; +/* 88:55 */waypoints[22].children[7] = 75; +/* 88:55 */waypoints[22].children[8] = 138; +/* 88:55 */waypoints[22].children[9] = 15; +/* 88:55 */waypoints[23] = spawnstruct(); +/* 88:55 */waypoints[23].origin = (-1376.42, 650.792, 800.125); +/* 88:55 */waypoints[23].type = "stand"; +/* 88:55 */waypoints[23].children[0] = 9; +/* 88:55 */waypoints[23].children[1] = 22; +/* 88:55 */waypoints[23].children[2] = 139; +/* 88:55 */waypoints[23].children[3] = 15; +/* 88:55 */waypoints[23].children[4] = 167; +/* 88:55 */waypoints[24] = spawnstruct(); +/* 88:55 */waypoints[24].origin = (-1355.36, 401.402, 800.125); +/* 88:55 */waypoints[24].type = "stand"; +/* 88:55 */waypoints[24].children[0] = 22; +/* 88:55 */waypoints[24].children[1] = 9; +/* 88:55 */waypoints[24].children[2] = 25; +/* 88:55 */waypoints[25] = spawnstruct(); +/* 88:55 */waypoints[25].origin = (-1511.41, 415.522, 800.125); +/* 88:55 */waypoints[25].type = "stand"; +/* 88:55 */waypoints[25].children[0] = 24; +/* 88:55 */waypoints[25].children[1] = 26; +/* 88:55 */waypoints[25].children[2] = 63; +/* 88:55 */waypoints[26] = spawnstruct(); +/* 88:55 */waypoints[26].origin = (-1696.88, 572.875, 800.125); +/* 88:55 */waypoints[26].type = "crouch"; +/* 88:55 */waypoints[26].children[0] = 25; +/* 88:55 */waypoints[26].angles = (6.3446, -29.0167, 0); +/* 88:55 */waypoints[27] = spawnstruct(); +/* 88:55 */waypoints[27].origin = (-305.125, 723.125, 618.125); +/* 88:55 */waypoints[27].type = "crouch"; +/* 88:55 */waypoints[27].children[0] = 2; +/* 88:55 */waypoints[27].angles = (3.46069, 118.596, 0); +/* 88:55 */waypoints[28] = spawnstruct(); +/* 88:55 */waypoints[28].origin = (-783.883, 1362.15, 616.125); +/* 88:55 */waypoints[28].type = "stand"; +/* 88:55 */waypoints[28].children[0] = 29; +/* 88:55 */waypoints[28].children[1] = 30; +/* 88:55 */waypoints[28].children[2] = 31; +/* 88:55 */waypoints[28].children[3] = 32; +/* 88:55 */waypoints[28].children[4] = 132; +/* 88:55 */waypoints[28].children[5] = 150; +/* 88:55 */waypoints[29] = spawnstruct(); +/* 88:55 */waypoints[29].origin = (-464.177, 1362.75, 616.125); +/* 88:55 */waypoints[29].type = "stand"; +/* 88:55 */waypoints[29].children[0] = 28; +/* 88:55 */waypoints[29].children[1] = 1; +/* 88:55 */waypoints[29].children[2] = 132; +/* 88:55 */waypoints[29].children[3] = 4; +/* 88:55 */waypoints[30] = spawnstruct(); +/* 88:55 */waypoints[30].origin = (-751.125, 1231.12, 616.125); +/* 88:55 */waypoints[30].type = "crouch"; +/* 88:55 */waypoints[30].children[0] = 28; +/* 88:55 */waypoints[30].angles = (1.5863, 122.446, 0); +/* 88:55 */waypoints[31] = spawnstruct(); +/* 88:55 */waypoints[31].origin = (-848.875, 1231.12, 616.125); +/* 88:55 */waypoints[31].type = "crouch"; +/* 88:55 */waypoints[31].children[0] = 28; +/* 88:55 */waypoints[31].angles = (1.00952, 61.9006, 0); +/* 88:55 */waypoints[32] = spawnstruct(); +/* 88:55 */waypoints[32].origin = (-1322.56, 1428.09, 672.061); +/* 88:55 */waypoints[32].type = "stand"; +/* 88:55 */waypoints[32].children[0] = 7; +/* 88:55 */waypoints[32].children[1] = 28; +/* 88:55 */waypoints[32].children[2] = 6; +/* 88:55 */waypoints[32].children[3] = 145; +/* 88:55 */waypoints[32].children[4] = 150; +/* 88:55 */waypoints[33] = spawnstruct(); +/* 88:55 */waypoints[33].origin = (-1095.13, 789.057, 800.125); +/* 88:55 */waypoints[33].type = "crouch"; +/* 88:55 */waypoints[33].children[0] = 8; +/* 88:55 */waypoints[33].angles = (0.432739, 169.929, 0); +/* 88:55 */waypoints[34] = spawnstruct(); +/* 88:55 */waypoints[34].origin = (-822.752, -75.4086, 608.125); +/* 88:55 */waypoints[34].type = "stand"; +/* 88:55 */waypoints[34].children[0] = 19; +/* 88:55 */waypoints[34].children[1] = 35; +/* 88:55 */waypoints[34].children[2] = 40; +/* 88:55 */waypoints[35] = spawnstruct(); +/* 88:55 */waypoints[35].origin = (-340.469, -63.3084, 640.125); +/* 88:55 */waypoints[35].type = "stand"; +/* 88:55 */waypoints[35].children[0] = 34; +/* 88:55 */waypoints[35].children[1] = 36; +/* 88:55 */waypoints[35].children[2] = 40; +/* 88:55 */waypoints[35].children[3] = 41; +/* 88:55 */waypoints[35].children[4] = 113; +/* 88:55 */waypoints[35].children[5] = 149; +/* 88:55 */waypoints[36] = spawnstruct(); +/* 88:55 */waypoints[36].origin = (-341.384, -312.494, 640.125); +/* 88:55 */waypoints[36].type = "stand"; +/* 88:55 */waypoints[36].children[0] = 35; +/* 88:55 */waypoints[36].children[1] = 37; +/* 88:55 */waypoints[36].children[2] = 39; +/* 88:55 */waypoints[36].children[3] = 41; +/* 88:55 */waypoints[36].children[4] = 114; +/* 88:55 */waypoints[37] = spawnstruct(); +/* 88:55 */waypoints[37].origin = (-874.283, -306.441, 608.125); +/* 88:55 */waypoints[37].type = "stand"; +/* 88:55 */waypoints[37].children[0] = 19; +/* 88:55 */waypoints[37].children[1] = 38; +/* 88:55 */waypoints[37].children[2] = 36; +/* 88:55 */waypoints[37].children[3] = 39; +/* 88:55 */waypoints[37].children[4] = 17; +/* 88:55 */waypoints[38] = spawnstruct(); +/* 88:55 */waypoints[38].origin = (-1241.84, -296.665, 608.125); +/* 88:55 */waypoints[38].type = "stand"; +/* 88:55 */waypoints[38].children[0] = 37; +/* 88:55 */waypoints[38].children[1] = 18; +/* 88:55 */waypoints[38].children[2] = 60; +/* 88:55 */waypoints[39] = spawnstruct(); +/* 88:55 */waypoints[39].origin = (-653.157, -309.664, 608.125); +/* 88:55 */waypoints[39].type = "stand"; +/* 88:55 */waypoints[39].children[0] = 40; +/* 88:55 */waypoints[39].children[1] = 37; +/* 88:55 */waypoints[39].children[2] = 36; +/* 88:55 */waypoints[40] = spawnstruct(); +/* 88:55 */waypoints[40].origin = (-677.991, -74.9176, 608.125); +/* 88:55 */waypoints[40].type = "stand"; +/* 88:55 */waypoints[40].children[0] = 34; +/* 88:55 */waypoints[40].children[1] = 39; +/* 88:55 */waypoints[40].children[2] = 35; +/* 88:55 */waypoints[41] = spawnstruct(); +/* 88:55 */waypoints[41].origin = (-313.099, -909.431, 640.125); +/* 88:55 */waypoints[41].type = "stand"; +/* 88:55 */waypoints[41].children[0] = 35; +/* 88:55 */waypoints[41].children[1] = 36; +/* 88:55 */waypoints[41].children[2] = 85; +/* 88:55 */waypoints[41].children[3] = 42; +/* 88:55 */waypoints[41].children[4] = 162; +/* 88:55 */waypoints[41].children[5] = 163; +/* 88:55 */waypoints[42] = spawnstruct(); +/* 88:55 */waypoints[42].origin = (-69.7236, -875.661, 640.125); +/* 88:55 */waypoints[42].type = "stand"; +/* 88:55 */waypoints[42].children[0] = 43; +/* 88:55 */waypoints[42].children[1] = 44; +/* 88:55 */waypoints[42].children[2] = 41; +/* 88:55 */waypoints[42].children[3] = 163; +/* 88:55 */waypoints[43] = spawnstruct(); +/* 88:55 */waypoints[43].origin = (197.379, -925.426, 640.125); +/* 88:55 */waypoints[43].type = "stand"; +/* 88:55 */waypoints[43].children[0] = 44; +/* 88:55 */waypoints[43].children[1] = 42; +/* 88:55 */waypoints[43].children[2] = 46; +/* 88:55 */waypoints[43].children[3] = 152; +/* 88:55 */waypoints[44] = spawnstruct(); +/* 88:55 */waypoints[44].origin = (190.126, -822.195, 640.125); +/* 88:55 */waypoints[44].type = "stand"; +/* 88:55 */waypoints[44].children[0] = 43; +/* 88:55 */waypoints[44].children[1] = 42; +/* 88:55 */waypoints[44].children[2] = 45; +/* 88:55 */waypoints[44].children[3] = 46; +/* 88:55 */waypoints[44].children[4] = 101; +/* 88:55 */waypoints[44].children[5] = 152; +/* 88:55 */waypoints[44].children[6] = 155; +/* 88:55 */waypoints[45] = spawnstruct(); +/* 88:55 */waypoints[45].origin = (309.202, -715.305, 652.552); +/* 88:55 */waypoints[45].type = "stand"; +/* 88:55 */waypoints[45].children[0] = 46; +/* 88:55 */waypoints[45].children[1] = 44; +/* 88:55 */waypoints[45].children[2] = 47; +/* 88:55 */waypoints[45].children[3] = 101; +/* 88:55 */waypoints[45].children[4] = 105; +/* 88:55 */waypoints[45].children[5] = 141; +/* 88:55 */waypoints[46] = spawnstruct(); +/* 88:55 */waypoints[46].origin = (308.478, -1040.89, 640.125); +/* 88:55 */waypoints[46].type = "stand"; +/* 88:55 */waypoints[46].children[0] = 43; +/* 88:55 */waypoints[46].children[1] = 45; +/* 88:55 */waypoints[46].children[2] = 44; +/* 88:55 */waypoints[46].children[3] = 48; +/* 88:55 */waypoints[46].children[4] = 101; +/* 88:55 */waypoints[46].children[5] = 154; +/* 88:55 */waypoints[47] = spawnstruct(); +/* 88:55 */waypoints[47].origin = (-195.54, -711.009, 800.125); +/* 88:55 */waypoints[47].type = "stand"; +/* 88:55 */waypoints[47].children[0] = 48; +/* 88:55 */waypoints[47].children[1] = 45; +/* 88:55 */waypoints[47].children[2] = 49; +/* 88:55 */waypoints[47].children[3] = 50; +/* 88:55 */waypoints[47].children[4] = 51; +/* 88:55 */waypoints[48] = spawnstruct(); +/* 88:55 */waypoints[48].origin = (-189.787, -1039.83, 800.125); +/* 88:55 */waypoints[48].type = "stand"; +/* 88:55 */waypoints[48].children[0] = 46; +/* 88:55 */waypoints[48].children[1] = 47; +/* 88:55 */waypoints[49] = spawnstruct(); +/* 88:55 */waypoints[49].origin = (-328.875, -747.136, 800.125); +/* 88:55 */waypoints[49].type = "crouch"; +/* 88:55 */waypoints[49].children[0] = 47; +/* 88:55 */waypoints[49].angles = (7.73316, -24.0893, 0); +/* 88:55 */waypoints[50] = spawnstruct(); +/* 88:55 */waypoints[50].origin = (-55.125, -527.125, 800.125); +/* 88:55 */waypoints[50].type = "crouch"; +/* 88:55 */waypoints[50].children[0] = 47; +/* 88:55 */waypoints[50].angles = (5.23376, -136.331, 0); +/* 88:55 */waypoints[51] = spawnstruct(); +/* 88:55 */waypoints[51].origin = (-312.472, -389.142, 800.125); +/* 88:55 */waypoints[51].type = "stand"; +/* 88:55 */waypoints[51].children[0] = 47; +/* 88:55 */waypoints[51].children[1] = 52; +/* 88:55 */waypoints[51].children[2] = 54; +/* 88:55 */waypoints[51].children[3] = 55; +/* 88:55 */waypoints[51].children[4] = 72; +/* 88:55 */waypoints[51].children[5] = 144; +/* 88:55 */waypoints[51].children[6] = 158; +/* 88:55 */waypoints[52] = spawnstruct(); +/* 88:55 */waypoints[52].origin = (-252.607, 1.59709, 800.125); +/* 88:55 */waypoints[52].type = "stand"; +/* 88:55 */waypoints[52].children[0] = 51; +/* 88:55 */waypoints[52].children[1] = 56; +/* 88:55 */waypoints[52].children[2] = 53; +/* 88:55 */waypoints[52].children[3] = 144; +/* 88:55 */waypoints[53] = spawnstruct(); +/* 88:55 */waypoints[53].origin = (-470.415, 35.8304, 800.125); +/* 88:55 */waypoints[53].type = "stand"; +/* 88:55 */waypoints[53].children[0] = 54; +/* 88:55 */waypoints[53].children[1] = 56; +/* 88:55 */waypoints[53].children[2] = 74; +/* 88:55 */waypoints[53].children[3] = 55; +/* 88:55 */waypoints[53].children[4] = 52; +/* 88:55 */waypoints[54] = spawnstruct(); +/* 88:55 */waypoints[54].origin = (-403.579, -370.487, 800.125); +/* 88:55 */waypoints[54].type = "stand"; +/* 88:55 */waypoints[54].children[0] = 53; +/* 88:55 */waypoints[54].children[1] = 51; +/* 88:55 */waypoints[55] = spawnstruct(); +/* 88:55 */waypoints[55].origin = (-549.613, -270.368, 800.125); +/* 88:55 */waypoints[55].type = "stand"; +/* 88:55 */waypoints[55].children[0] = 11; +/* 88:55 */waypoints[55].children[1] = 51; +/* 88:55 */waypoints[55].children[2] = 71; +/* 88:55 */waypoints[55].children[3] = 53; +/* 88:55 */waypoints[56] = spawnstruct(); +/* 88:55 */waypoints[56].origin = (-250.489, 350.486, 801.125); +/* 88:55 */waypoints[56].type = "stand"; +/* 88:55 */waypoints[56].children[0] = 52; +/* 88:55 */waypoints[56].children[1] = 57; +/* 88:55 */waypoints[56].children[2] = 58; +/* 88:55 */waypoints[56].children[3] = 53; +/* 88:55 */waypoints[56].children[4] = 76; +/* 88:55 */waypoints[57] = spawnstruct(); +/* 88:55 */waypoints[57].origin = (-203.125, 526.875, 801.125); +/* 88:55 */waypoints[57].type = "crouch"; +/* 88:55 */waypoints[57].children[0] = 56; +/* 88:55 */waypoints[57].angles = (3.50891, -134.59, 0); +/* 88:55 */waypoints[58] = spawnstruct(); +/* 88:55 */waypoints[58].origin = (-433.939, 432.456, 801.125); +/* 88:55 */waypoints[58].type = "stand"; +/* 88:55 */waypoints[58].children[0] = 56; +/* 88:55 */waypoints[58].children[1] = 59; +/* 88:55 */waypoints[58].children[2] = 76; +/* 88:55 */waypoints[59] = spawnstruct(); +/* 88:55 */waypoints[59].origin = (-666.935, 447.552, 800.125); +/* 88:55 */waypoints[59].type = "stand"; +/* 88:55 */waypoints[59].children[0] = 22; +/* 88:55 */waypoints[59].children[1] = 58; +/* 88:55 */waypoints[59].children[2] = 75; +/* 88:55 */waypoints[59].children[3] = 138; +/* 88:55 */waypoints[60] = spawnstruct(); +/* 88:55 */waypoints[60].origin = (-1373.17, -326.1, 608.125); +/* 88:55 */waypoints[60].type = "stand"; +/* 88:55 */waypoints[60].children[0] = 61; +/* 88:55 */waypoints[60].children[1] = 38; +/* 88:55 */waypoints[60].children[2] = 18; +/* 88:55 */waypoints[61] = spawnstruct(); +/* 88:55 */waypoints[61].origin = (-1543.15, -344.109, 608.125); +/* 88:55 */waypoints[61].type = "stand"; +/* 88:55 */waypoints[61].children[0] = 60; +/* 88:55 */waypoints[61].children[1] = 62; +/* 88:55 */waypoints[62] = spawnstruct(); +/* 88:55 */waypoints[62].origin = (-1500.26, 91.3402, 608.125); +/* 88:55 */waypoints[62].type = "stand"; +/* 88:55 */waypoints[62].children[0] = 18; +/* 88:55 */waypoints[62].children[1] = 61; +/* 88:55 */waypoints[63] = spawnstruct(); +/* 88:55 */waypoints[63].origin = (-1709, 403.009, 800.125); +/* 88:55 */waypoints[63].type = "stand"; +/* 88:55 */waypoints[63].children[0] = 64; +/* 88:55 */waypoints[63].children[1] = 25; +/* 88:55 */waypoints[64] = spawnstruct(); +/* 88:55 */waypoints[64].origin = (-1708.96, 190.037, 800.125); +/* 88:55 */waypoints[64].type = "stand"; +/* 88:55 */waypoints[64].children[0] = 65; +/* 88:55 */waypoints[64].children[1] = 63; +/* 88:55 */waypoints[64].children[2] = 10; +/* 88:55 */waypoints[64].children[3] = 69; +/* 88:55 */waypoints[65] = spawnstruct(); +/* 88:55 */waypoints[65].origin = (-1708.82, -239.704, 800.125); +/* 88:55 */waypoints[65].type = "stand"; +/* 88:55 */waypoints[65].children[0] = 11; +/* 88:55 */waypoints[65].children[1] = 64; +/* 88:55 */waypoints[66] = spawnstruct(); +/* 88:55 */waypoints[66].origin = (-1595.8, 27.0772, 800.125); +/* 88:55 */waypoints[66].type = "stand"; +/* 88:55 */waypoints[66].children[0] = 69; +/* 88:55 */waypoints[66].children[1] = 68; +/* 88:55 */waypoints[67] = spawnstruct(); +/* 88:55 */waypoints[67].origin = (-1598.92, -93.2606, 800.125); +/* 88:55 */waypoints[67].type = "stand"; +/* 88:55 */waypoints[67].children[0] = 68; +/* 88:55 */waypoints[67].children[1] = 69; +/* 88:55 */waypoints[68] = spawnstruct(); +/* 88:55 */waypoints[68].origin = (-1514.6, -87.3098, 800.125); +/* 88:55 */waypoints[68].type = "stand"; +/* 88:55 */waypoints[68].children[0] = 10; +/* 88:55 */waypoints[68].children[1] = 11; +/* 88:55 */waypoints[68].children[2] = 67; +/* 88:55 */waypoints[68].children[3] = 66; +/* 88:55 */waypoints[69] = spawnstruct(); +/* 88:55 */waypoints[69].origin = (-1702.27, -31.4775, 800.125); +/* 88:55 */waypoints[69].type = "stand"; +/* 88:55 */waypoints[69].children[0] = 67; +/* 88:55 */waypoints[69].children[1] = 64; +/* 88:55 */waypoints[69].children[2] = 66; +/* 88:55 */waypoints[70] = spawnstruct(); +/* 88:55 */waypoints[70].origin = (-1443.36, 39.6564, 800.125); +/* 88:55 */waypoints[70].type = "stand"; +/* 88:55 */waypoints[70].children[0] = 10; +/* 88:55 */waypoints[70].children[1] = 71; +/* 88:55 */waypoints[71] = spawnstruct(); +/* 88:55 */waypoints[71].origin = (-1442.81, -205.756, 800.125); +/* 88:55 */waypoints[71].type = "stand"; +/* 88:55 */waypoints[71].children[0] = 70; +/* 88:55 */waypoints[71].children[1] = 11; +/* 88:55 */waypoints[71].children[2] = 55; +/* 88:55 */waypoints[71].children[3] = 143; +/* 88:55 */waypoints[72] = spawnstruct(); +/* 88:55 */waypoints[72].origin = (-740.837, -211.883, 800.125); +/* 88:55 */waypoints[72].type = "stand"; +/* 88:55 */waypoints[72].children[0] = 51; +/* 88:55 */waypoints[72].children[1] = 73; +/* 88:55 */waypoints[72].children[2] = 74; +/* 88:55 */waypoints[72].children[3] = 11; +/* 88:55 */waypoints[72].children[4] = 142; +/* 88:55 */waypoints[73] = spawnstruct(); +/* 88:55 */waypoints[73].origin = (-814.099, 91.343, 800.125); +/* 88:55 */waypoints[73].type = "stand"; +/* 88:55 */waypoints[73].children[0] = 72; +/* 88:55 */waypoints[73].children[1] = 74; +/* 88:55 */waypoints[73].children[2] = 138; +/* 88:55 */waypoints[73].children[3] = 140; +/* 88:55 */waypoints[74] = spawnstruct(); +/* 88:55 */waypoints[74].origin = (-661.135, 108.178, 800.125); +/* 88:55 */waypoints[74].type = "stand"; +/* 88:55 */waypoints[74].children[0] = 72; +/* 88:55 */waypoints[74].children[1] = 73; +/* 88:55 */waypoints[74].children[2] = 53; +/* 88:55 */waypoints[74].children[3] = 75; +/* 88:55 */waypoints[74].children[4] = 76; +/* 88:55 */waypoints[75] = spawnstruct(); +/* 88:55 */waypoints[75].origin = (-669.557, 311.087, 800.125); +/* 88:55 */waypoints[75].type = "stand"; +/* 88:55 */waypoints[75].children[0] = 74; +/* 88:55 */waypoints[75].children[1] = 59; +/* 88:55 */waypoints[75].children[2] = 22; +/* 88:55 */waypoints[75].children[3] = 138; +/* 88:55 */waypoints[75].children[4] = 159; +/* 88:55 */waypoints[76] = spawnstruct(); +/* 88:55 */waypoints[76].origin = (-516.742, 275.49, 801.125); +/* 88:55 */waypoints[76].type = "stand"; +/* 88:55 */waypoints[76].children[0] = 56; +/* 88:55 */waypoints[76].children[1] = 74; +/* 88:55 */waypoints[76].children[2] = 58; +/* 88:55 */waypoints[77] = spawnstruct(); +/* 88:55 */waypoints[77].origin = (-1138.43, -637.739, 801.125); +/* 88:55 */waypoints[77].type = "stand"; +/* 88:55 */waypoints[77].children[0] = 12; +/* 88:55 */waypoints[77].children[1] = 78; +/* 88:55 */waypoints[77].children[2] = 80; +/* 88:55 */waypoints[77].children[3] = 81; +/* 88:55 */waypoints[77].children[4] = 148; +/* 88:55 */waypoints[77].children[5] = 161; +/* 88:55 */waypoints[78] = spawnstruct(); +/* 88:55 */waypoints[78].origin = (-1106.12, -890.476, 800.125); +/* 88:55 */waypoints[78].type = "stand"; +/* 88:55 */waypoints[78].children[0] = 77; +/* 88:55 */waypoints[78].children[1] = 13; +/* 88:55 */waypoints[78].children[2] = 79; +/* 88:55 */waypoints[78].children[3] = 80; +/* 88:55 */waypoints[79] = spawnstruct(); +/* 88:55 */waypoints[79].origin = (-1113.79, -1164.13, 800.125); +/* 88:55 */waypoints[79].type = "stand"; +/* 88:55 */waypoints[79].children[0] = 78; +/* 88:55 */waypoints[79].children[1] = 82; +/* 88:55 */waypoints[80] = spawnstruct(); +/* 88:55 */waypoints[80].origin = (-1008.65, -888.307, 800.125); +/* 88:55 */waypoints[80].type = "stand"; +/* 88:55 */waypoints[80].children[0] = 78; +/* 88:55 */waypoints[80].children[1] = 77; +/* 88:55 */waypoints[80].children[2] = 81; +/* 88:55 */waypoints[80].children[3] = 82; +/* 88:55 */waypoints[81] = spawnstruct(); +/* 88:55 */waypoints[81].origin = (-921.787, -612.76, 800.125); +/* 88:55 */waypoints[81].type = "stand"; +/* 88:55 */waypoints[81].children[0] = 77; +/* 88:55 */waypoints[81].children[1] = 80; +/* 88:55 */waypoints[82] = spawnstruct(); +/* 88:55 */waypoints[82].origin = (-1002.35, -1145.73, 800.125); +/* 88:55 */waypoints[82].type = "stand"; +/* 88:55 */waypoints[82].children[0] = 79; +/* 88:55 */waypoints[82].children[1] = 80; +/* 88:55 */waypoints[82].children[2] = 83; +/* 88:55 */waypoints[83] = spawnstruct(); +/* 88:55 */waypoints[83].origin = (-931.194, -1591.39, 704.125); +/* 88:55 */waypoints[83].type = "stand"; +/* 88:55 */waypoints[83].children[0] = 82; +/* 88:55 */waypoints[83].children[1] = 84; +/* 88:55 */waypoints[83].children[2] = 151; +/* 88:55 */waypoints[84] = spawnstruct(); +/* 88:55 */waypoints[84].origin = (-576.05, -1578.72, 608.125); +/* 88:55 */waypoints[84].type = "stand"; +/* 88:55 */waypoints[84].children[0] = 83; +/* 88:55 */waypoints[84].children[1] = 85; +/* 88:55 */waypoints[84].children[2] = 86; +/* 88:55 */waypoints[85] = spawnstruct(); +/* 88:55 */waypoints[85].origin = (-250.584, -1221.56, 608.125); +/* 88:55 */waypoints[85].type = "stand"; +/* 88:55 */waypoints[85].children[0] = 41; +/* 88:55 */waypoints[85].children[1] = 84; +/* 88:55 */waypoints[85].children[2] = 86; +/* 88:55 */waypoints[85].children[3] = 88; +/* 88:55 */waypoints[85].children[4] = 160; +/* 88:55 */waypoints[86] = spawnstruct(); +/* 88:55 */waypoints[86].origin = (40.4851, -1752.13, 608.125); +/* 88:55 */waypoints[86].type = "stand"; +/* 88:55 */waypoints[86].children[0] = 84; +/* 88:55 */waypoints[86].children[1] = 85; +/* 88:55 */waypoints[86].children[2] = 87; +/* 88:55 */waypoints[86].children[3] = 88; +/* 88:55 */waypoints[86].children[4] = 94; +/* 88:55 */waypoints[87] = spawnstruct(); +/* 88:55 */waypoints[87].origin = (134.59, -1523.81, 609.432); +/* 88:55 */waypoints[87].type = "stand"; +/* 88:55 */waypoints[87].children[0] = 86; +/* 88:55 */waypoints[87].children[1] = 88; +/* 88:55 */waypoints[87].children[2] = 89; +/* 88:55 */waypoints[88] = spawnstruct(); +/* 88:55 */waypoints[88].origin = (-136.385, -1433.55, 608.125); +/* 88:55 */waypoints[88].type = "stand"; +/* 88:55 */waypoints[88].children[0] = 86; +/* 88:55 */waypoints[88].children[1] = 85; +/* 88:55 */waypoints[88].children[2] = 87; +/* 88:55 */waypoints[88].children[3] = 160; +/* 88:55 */waypoints[89] = spawnstruct(); +/* 88:55 */waypoints[89].origin = (596.195, -1536.91, 640.125); +/* 88:55 */waypoints[89].type = "stand"; +/* 88:55 */waypoints[89].children[0] = 87; +/* 88:55 */waypoints[89].children[1] = 90; +/* 88:55 */waypoints[89].children[2] = 93; +/* 88:55 */waypoints[89].children[3] = 95; +/* 88:55 */waypoints[90] = spawnstruct(); +/* 88:55 */waypoints[90].origin = (509.255, -1708.15, 640.125); +/* 88:55 */waypoints[90].type = "stand"; +/* 88:55 */waypoints[90].children[0] = 89; +/* 88:55 */waypoints[90].children[1] = 91; +/* 88:55 */waypoints[90].children[2] = 92; +/* 88:55 */waypoints[91] = spawnstruct(); +/* 88:55 */waypoints[91].origin = (957.539, -1722.48, 608.125); +/* 88:55 */waypoints[91].type = "stand"; +/* 88:55 */waypoints[91].children[0] = 90; +/* 88:55 */waypoints[91].children[1] = 93; +/* 88:55 */waypoints[91].children[2] = 92; +/* 88:55 */waypoints[92] = spawnstruct(); +/* 88:55 */waypoints[92].origin = (822.46, -1873.94, 608.125); +/* 88:55 */waypoints[92].type = "stand"; +/* 88:55 */waypoints[92].children[0] = 91; +/* 88:55 */waypoints[92].children[1] = 90; +/* 88:55 */waypoints[92].children[2] = 94; +/* 88:55 */waypoints[93] = spawnstruct(); +/* 88:55 */waypoints[93].origin = (936.801, -1530.84, 640.125); +/* 88:55 */waypoints[93].type = "stand"; +/* 88:55 */waypoints[93].children[0] = 91; +/* 88:55 */waypoints[93].children[1] = 89; +/* 88:55 */waypoints[93].children[2] = 95; +/* 88:55 */waypoints[93].children[3] = 115; +/* 88:55 */waypoints[94] = spawnstruct(); +/* 88:55 */waypoints[94].origin = (48.2861, -1905.28, 608.125); +/* 88:55 */waypoints[94].type = "stand"; +/* 88:55 */waypoints[94].children[0] = 86; +/* 88:55 */waypoints[94].children[1] = 92; +/* 88:55 */waypoints[95] = spawnstruct(); +/* 88:55 */waypoints[95].origin = (762.847, -1435.74, 640.125); +/* 88:55 */waypoints[95].type = "stand"; +/* 88:55 */waypoints[95].children[0] = 93; +/* 88:55 */waypoints[95].children[1] = 89; +/* 88:55 */waypoints[95].children[2] = 97; +/* 88:55 */waypoints[95].children[3] = 96; +/* 88:55 */waypoints[96] = spawnstruct(); +/* 88:55 */waypoints[96].origin = (669.092, -1105.88, 640.125); +/* 88:55 */waypoints[96].type = "stand"; +/* 88:55 */waypoints[96].children[0] = 95; +/* 88:55 */waypoints[96].children[1] = 98; +/* 88:55 */waypoints[96].children[2] = 154; +/* 88:55 */waypoints[96].children[3] = 153; +/* 88:55 */waypoints[97] = spawnstruct(); +/* 88:55 */waypoints[97].origin = (899.029, -1180.57, 640.125); +/* 88:55 */waypoints[97].type = "stand"; +/* 88:55 */waypoints[97].children[0] = 95; +/* 88:55 */waypoints[97].children[1] = 98; +/* 88:55 */waypoints[97].children[2] = 99; +/* 88:55 */waypoints[98] = spawnstruct(); +/* 88:55 */waypoints[98].origin = (688.085, -889.282, 640.125); +/* 88:55 */waypoints[98].type = "stand"; +/* 88:55 */waypoints[98].children[0] = 97; +/* 88:55 */waypoints[98].children[1] = 96; +/* 88:55 */waypoints[98].children[2] = 101; +/* 88:55 */waypoints[98].children[3] = 152; +/* 88:55 */waypoints[98].children[4] = 153; +/* 88:55 */waypoints[98].children[5] = 154; +/* 88:55 */waypoints[99] = spawnstruct(); +/* 88:55 */waypoints[99].origin = (1071.62, -1189.68, 640.125); +/* 88:55 */waypoints[99].type = "stand"; +/* 88:55 */waypoints[99].children[0] = 97; +/* 88:55 */waypoints[99].children[1] = 100; +/* 88:55 */waypoints[100] = spawnstruct(); +/* 88:55 */waypoints[100].origin = (1046.39, -706.534, 648.125); +/* 88:55 */waypoints[100].type = "stand"; +/* 88:55 */waypoints[100].children[0] = 101; +/* 88:55 */waypoints[100].children[1] = 99; +/* 88:55 */waypoints[100].children[2] = 103; +/* 88:55 */waypoints[100].children[3] = 102; +/* 88:55 */waypoints[101] = spawnstruct(); +/* 88:55 */waypoints[101].origin = (684.029, -708.968, 640.125); +/* 88:55 */waypoints[101].type = "stand"; +/* 88:55 */waypoints[101].children[0] = 98; +/* 88:55 */waypoints[101].children[1] = 100; +/* 88:55 */waypoints[101].children[2] = 45; +/* 88:55 */waypoints[101].children[3] = 46; +/* 88:55 */waypoints[101].children[4] = 44; +/* 88:55 */waypoints[102] = spawnstruct(); +/* 88:55 */waypoints[102].origin = (1098.92, -301.726, 648.125); +/* 88:55 */waypoints[102].type = "stand"; +/* 88:55 */waypoints[102].children[0] = 103; +/* 88:55 */waypoints[102].children[1] = 100; +/* 88:55 */waypoints[102].children[2] = 104; +/* 88:55 */waypoints[103] = spawnstruct(); +/* 88:55 */waypoints[103].origin = (823.419, -278.101, 648.125); +/* 88:55 */waypoints[103].type = "stand"; +/* 88:55 */waypoints[103].children[0] = 100; +/* 88:55 */waypoints[103].children[1] = 102; +/* 88:55 */waypoints[103].children[2] = 104; +/* 88:55 */waypoints[103].children[3] = 106; +/* 88:55 */waypoints[103].children[4] = 105; +/* 88:55 */waypoints[104] = spawnstruct(); +/* 88:55 */waypoints[104].origin = (891.125, -127.125, 648.125); +/* 88:55 */waypoints[104].type = "crouch"; +/* 88:55 */waypoints[104].children[0] = 102; +/* 88:55 */waypoints[104].children[1] = 103; +/* 88:55 */waypoints[105] = spawnstruct(); +/* 88:55 */waypoints[105].origin = (386.547, -240.699, 648.119); +/* 88:55 */waypoints[105].type = "stand"; +/* 88:55 */waypoints[105].children[0] = 45; +/* 88:55 */waypoints[105].children[1] = 106; +/* 88:55 */waypoints[105].children[2] = 111; +/* 88:55 */waypoints[105].children[3] = 113; +/* 88:55 */waypoints[105].children[4] = 114; +/* 88:55 */waypoints[105].children[5] = 103; +/* 88:55 */waypoints[106] = spawnstruct(); +/* 88:55 */waypoints[106].origin = (669.297, -160.359, 650.125); +/* 88:55 */waypoints[106].type = "stand"; +/* 88:55 */waypoints[106].children[0] = 105; +/* 88:55 */waypoints[106].children[1] = 103; +/* 88:55 */waypoints[106].children[2] = 108; +/* 88:55 */waypoints[106].children[3] = 156; +/* 88:55 */waypoints[107] = spawnstruct(); +/* 88:55 */waypoints[107].origin = (862.875, 59.125, 648.125); +/* 88:55 */waypoints[107].type = "crouch"; +/* 88:55 */waypoints[107].children[0] = 108; +/* 88:55 */waypoints[107].angles = (5.0415, 144.364, 0); +/* 88:55 */waypoints[108] = spawnstruct(); +/* 88:55 */waypoints[108].origin = (660.847, 102.178, 650.125); +/* 88:55 */waypoints[108].type = "stand"; +/* 88:55 */waypoints[108].children[0] = 106; +/* 88:55 */waypoints[108].children[1] = 107; +/* 88:55 */waypoints[108].children[2] = 109; +/* 88:55 */waypoints[108].children[3] = 110; +/* 88:55 */waypoints[108].children[4] = 164; +/* 88:55 */waypoints[109] = spawnstruct(); +/* 88:55 */waypoints[109].origin = (862.875, 206.875, 648.125); +/* 88:55 */waypoints[109].type = "crouch"; +/* 88:55 */waypoints[109].children[0] = 108; +/* 88:55 */waypoints[109].angles = (3.31116, -145.071, 0); +/* 88:55 */waypoints[110] = spawnstruct(); +/* 88:55 */waypoints[110].origin = (655.273, 281.764, 650.125); +/* 88:55 */waypoints[110].type = "stand"; +/* 88:55 */waypoints[110].children[0] = 108; +/* 88:55 */waypoints[110].children[1] = 111; +/* 88:55 */waypoints[110].children[2] = 112; +/* 88:55 */waypoints[110].children[3] = 126; +/* 88:55 */waypoints[111] = spawnstruct(); +/* 88:55 */waypoints[111].origin = (458.392, 255.566, 648.125); +/* 88:55 */waypoints[111].type = "stand"; +/* 88:55 */waypoints[111].children[0] = 110; +/* 88:55 */waypoints[111].children[1] = 105; +/* 88:55 */waypoints[111].children[2] = 112; +/* 88:55 */waypoints[111].children[3] = 117; +/* 88:55 */waypoints[111].children[4] = 118; +/* 88:55 */waypoints[111].children[5] = 157; +/* 88:55 */waypoints[112] = spawnstruct(); +/* 88:55 */waypoints[112].origin = (115.043, 259.999, 648.125); +/* 88:55 */waypoints[112].type = "stand"; +/* 88:55 */waypoints[112].children[0] = 110; +/* 88:55 */waypoints[112].children[1] = 111; +/* 88:55 */waypoints[112].children[2] = 113; +/* 88:55 */waypoints[112].children[3] = 116; +/* 88:55 */waypoints[112].children[4] = 118; +/* 88:55 */waypoints[113] = spawnstruct(); +/* 88:55 */waypoints[113].origin = (54.2686, -132.083, 648.125); +/* 88:55 */waypoints[113].type = "stand"; +/* 88:55 */waypoints[113].children[0] = 35; +/* 88:55 */waypoints[113].children[1] = 105; +/* 88:55 */waypoints[113].children[2] = 112; +/* 88:55 */waypoints[113].children[3] = 149; +/* 88:55 */waypoints[114] = spawnstruct(); +/* 88:55 */waypoints[114].origin = (14.3567, -390.371, 650.125); +/* 88:55 */waypoints[114].type = "stand"; +/* 88:55 */waypoints[114].children[0] = 36; +/* 88:55 */waypoints[114].children[1] = 105; +/* 88:55 */waypoints[115] = spawnstruct(); +/* 88:55 */waypoints[115].origin = (1118.88, -1467.12, 640.026); +/* 88:55 */waypoints[115].type = "crouch"; +/* 88:55 */waypoints[115].children[0] = 93; +/* 88:55 */waypoints[115].angles = (9.65578, -153.102, 0); +/* 88:55 */waypoints[116] = spawnstruct(); +/* 88:55 */waypoints[116].origin = (115.332, 558.6, 648.125); +/* 88:55 */waypoints[116].type = "stand"; +/* 88:55 */waypoints[116].children[0] = 117; +/* 88:55 */waypoints[116].children[1] = 112; +/* 88:55 */waypoints[116].children[2] = 121; +/* 88:55 */waypoints[117] = spawnstruct(); +/* 88:55 */waypoints[117].origin = (378.081, 509.675, 648.125); +/* 88:55 */waypoints[117].type = "stand"; +/* 88:55 */waypoints[117].children[0] = 111; +/* 88:55 */waypoints[117].children[1] = 116; +/* 88:55 */waypoints[117].children[2] = 119; +/* 88:55 */waypoints[118] = spawnstruct(); +/* 88:55 */waypoints[118].origin = (260.049, 260.862, 648.125); +/* 88:55 */waypoints[118].type = "stand"; +/* 88:55 */waypoints[118].children[0] = 111; +/* 88:55 */waypoints[118].children[1] = 112; +/* 88:55 */waypoints[118].children[2] = 119; +/* 88:55 */waypoints[118].children[3] = 120; +/* 88:55 */waypoints[119] = spawnstruct(); +/* 88:55 */waypoints[119].origin = (374.73, 365.119, 648.125); +/* 88:55 */waypoints[119].type = "stand"; +/* 88:55 */waypoints[119].children[0] = 118; +/* 88:55 */waypoints[119].children[1] = 117; +/* 88:55 */waypoints[120] = spawnstruct(); +/* 88:55 */waypoints[120].origin = (119.018, 385.83, 648.125); +/* 88:55 */waypoints[120].type = "stand"; +/* 88:55 */waypoints[120].children[0] = 118; +/* 88:55 */waypoints[121] = spawnstruct(); +/* 88:55 */waypoints[121].origin = (-107.427, 627.682, 648.125); +/* 88:55 */waypoints[121].type = "stand"; +/* 88:55 */waypoints[121].children[0] = 116; +/* 88:55 */waypoints[121].children[1] = 122; +/* 88:55 */waypoints[122] = spawnstruct(); +/* 88:55 */waypoints[122].origin = (-86.012, 863.519, 616.125); +/* 88:55 */waypoints[122].type = "stand"; +/* 88:55 */waypoints[122].children[0] = 4; +/* 88:55 */waypoints[122].children[1] = 121; +/* 88:55 */waypoints[122].children[2] = 123; +/* 88:55 */waypoints[122].children[3] = 165; +/* 88:55 */waypoints[123] = spawnstruct(); +/* 88:55 */waypoints[123].origin = (-298.735, 810.369, 616.024); +/* 88:55 */waypoints[123].type = "stand"; +/* 88:55 */waypoints[123].children[0] = 122; +/* 88:55 */waypoints[123].children[1] = 2; +/* 88:55 */waypoints[124] = spawnstruct(); +/* 88:55 */waypoints[124].origin = (387.546, 910.494, 648.093); +/* 88:55 */waypoints[124].type = "stand"; +/* 88:55 */waypoints[124].children[0] = 4; +/* 88:55 */waypoints[124].children[1] = 125; +/* 88:55 */waypoints[124].children[2] = 126; +/* 88:55 */waypoints[124].children[3] = 172; +/* 88:55 */waypoints[125] = spawnstruct(); +/* 88:55 */waypoints[125].origin = (690.501, 1261.43, 648.101); +/* 88:55 */waypoints[125].type = "stand"; +/* 88:55 */waypoints[125].children[0] = 124; +/* 88:55 */waypoints[125].children[1] = 127; +/* 88:55 */waypoints[126] = spawnstruct(); +/* 88:55 */waypoints[126].origin = (679.042, 615.646, 648.101); +/* 88:55 */waypoints[126].type = "stand"; +/* 88:55 */waypoints[126].children[0] = 124; +/* 88:55 */waypoints[126].children[1] = 110; +/* 88:55 */waypoints[127] = spawnstruct(); +/* 88:55 */waypoints[127].origin = (329.386, 1304.31, 616.125); +/* 88:55 */waypoints[127].type = "stand"; +/* 88:55 */waypoints[127].children[0] = 4; +/* 88:55 */waypoints[127].children[1] = 128; +/* 88:55 */waypoints[127].children[2] = 130; +/* 88:55 */waypoints[127].children[3] = 125; +/* 88:55 */waypoints[127].children[4] = 131; +/* 88:55 */waypoints[128] = spawnstruct(); +/* 88:55 */waypoints[128].origin = (312.063, 1889.36, 608.125); +/* 88:55 */waypoints[128].type = "stand"; +/* 88:55 */waypoints[128].children[0] = 127; +/* 88:55 */waypoints[128].children[1] = 129; +/* 88:55 */waypoints[128].children[2] = 1; +/* 88:55 */waypoints[128].children[3] = 133; +/* 88:55 */waypoints[129] = spawnstruct(); +/* 88:55 */waypoints[129].origin = (295.324, 2095.21, 636.125); +/* 88:55 */waypoints[129].type = "stand"; +/* 88:55 */waypoints[129].children[0] = 128; +/* 88:55 */waypoints[129].children[1] = 136; +/* 88:55 */waypoints[130] = spawnstruct(); +/* 88:55 */waypoints[130].origin = (-44.9867, 1593.1, 608.125); +/* 88:55 */waypoints[130].type = "stand"; +/* 88:55 */waypoints[130].children[0] = 127; +/* 88:55 */waypoints[130].children[1] = 131; +/* 88:55 */waypoints[130].children[2] = 132; +/* 88:55 */waypoints[130].children[3] = 133; +/* 88:55 */waypoints[131] = spawnstruct(); +/* 88:55 */waypoints[131].origin = (-26.7949, 1223.27, 616.125); +/* 88:55 */waypoints[131].type = "stand"; +/* 88:55 */waypoints[131].children[0] = 127; +/* 88:55 */waypoints[131].children[1] = 130; +/* 88:55 */waypoints[131].children[2] = 4; +/* 88:55 */waypoints[132] = spawnstruct(); +/* 88:55 */waypoints[132].origin = (-510.469, 1587.39, 608.125); +/* 88:55 */waypoints[132].type = "stand"; +/* 88:55 */waypoints[132].children[0] = 130; +/* 88:55 */waypoints[132].children[1] = 0; +/* 88:55 */waypoints[132].children[2] = 29; +/* 88:55 */waypoints[132].children[3] = 28; +/* 88:55 */waypoints[133] = spawnstruct(); +/* 88:55 */waypoints[133].origin = (-49.2739, 1846.5, 608.125); +/* 88:55 */waypoints[133].type = "stand"; +/* 88:55 */waypoints[133].children[0] = 130; +/* 88:55 */waypoints[133].children[1] = 128; +/* 88:55 */waypoints[133].children[2] = 1; +/* 88:55 */waypoints[134] = spawnstruct(); +/* 88:55 */waypoints[134].origin = (-1554.05, 1900.56, 632.125); +/* 88:55 */waypoints[134].type = "stand"; +/* 88:55 */waypoints[134].children[0] = 6; +/* 88:55 */waypoints[134].children[1] = 7; +/* 88:55 */waypoints[134].children[2] = 145; +/* 88:55 */waypoints[135] = spawnstruct(); +/* 88:55 */waypoints[135].origin = (-720.875, 2162.88, 780.125); +/* 88:55 */waypoints[135].type = "crouch"; +/* 88:55 */waypoints[135].children[0] = 0; +/* 88:55 */waypoints[135].angles = (6.57959, -63.8653, 0); +/* 88:55 */waypoints[136] = spawnstruct(); +/* 88:55 */waypoints[136].origin = (19.5388, 2090.46, 780.125); +/* 88:55 */waypoints[136].type = "stand"; +/* 88:55 */waypoints[136].children[0] = 129; +/* 88:55 */waypoints[136].children[1] = 0; +/* 88:55 */waypoints[137] = spawnstruct(); +/* 88:55 */waypoints[137].origin = (-1528.87, 924.875, 800.125); +/* 88:55 */waypoints[137].type = "crouch"; +/* 88:55 */waypoints[137].children[0] = 9; +/* 88:55 */waypoints[137].angles = (6.0083, -36.5259, 0); +/* 88:55 */waypoints[138] = spawnstruct(); +/* 88:55 */waypoints[138].origin = (-896.931, 394.97, 800.125); +/* 88:55 */waypoints[138].type = "stand"; +/* 88:55 */waypoints[138].children[0] = 73; +/* 88:55 */waypoints[138].children[1] = 59; +/* 88:55 */waypoints[138].children[2] = 75; +/* 88:55 */waypoints[138].children[3] = 22; +/* 88:55 */waypoints[139] = spawnstruct(); +/* 88:55 */waypoints[139].origin = (-1403.29, 547.519, 800.125); +/* 88:55 */waypoints[139].type = "grenade"; +/* 88:55 */waypoints[139].children[0] = 23; +/* 88:55 */waypoints[139].children[1] = 15; +/* 88:55 */waypoints[139].angles = (-10.1416, -94.9237, 0); +/* 88:55 */waypoints[140] = spawnstruct(); +/* 88:55 */waypoints[140].origin = (-816.987, 95.6389, 800.125); +/* 88:55 */waypoints[140].type = "grenade"; +/* 88:55 */waypoints[140].children[0] = 73; +/* 88:55 */waypoints[140].angles = (-7.45544, -48.4021, 0); +/* 88:55 */waypoints[141] = spawnstruct(); +/* 88:55 */waypoints[141].origin = (-111.625, -683.937, 800.125); +/* 88:55 */waypoints[141].type = "grenade"; +/* 88:55 */waypoints[141].children[0] = 45; +/* 88:55 */waypoints[141].angles = (-9.81201, 127.928, 0); +/* 88:55 */waypoints[142] = spawnstruct(); +/* 88:55 */waypoints[142].origin = (-1136.88, -432.875, 800.125); +/* 88:55 */waypoints[142].type = "crouch"; +/* 88:55 */waypoints[142].children[0] = 72; +/* 88:55 */waypoints[142].angles = (1.57532, 39.8401, 0); +/* 88:55 */waypoints[143] = spawnstruct(); +/* 88:55 */waypoints[143].origin = (-975.125, -436.875, 812.125); +/* 88:55 */waypoints[143].type = "crouch"; +/* 88:55 */waypoints[143].children[0] = 71; +/* 88:55 */waypoints[143].angles = (2.35537, 144.194, 0); +/* 88:55 */waypoints[144] = spawnstruct(); +/* 88:55 */waypoints[144].origin = (-233.496, -148.584, 800.125); +/* 88:55 */waypoints[144].type = "grenade"; +/* 88:55 */waypoints[144].children[0] = 51; +/* 88:55 */waypoints[144].children[1] = 52; +/* 88:55 */waypoints[144].angles = (-1.6876, 13.5224, 0); +/* 88:55 */waypoints[145] = spawnstruct(); +/* 88:55 */waypoints[145].origin = (-1488.59, 1661.35, 608.125); +/* 88:55 */waypoints[145].type = "grenade"; +/* 88:55 */waypoints[145].children[0] = 134; +/* 88:55 */waypoints[145].children[1] = 32; +/* 88:55 */waypoints[145].children[2] = 7; +/* 88:55 */waypoints[145].angles = (-21.2872, -82.8717, 0); +/* 88:55 */waypoints[146] = spawnstruct(); +/* 88:55 */waypoints[146].origin = (-406.101, 1061.87, 616.125); +/* 88:55 */waypoints[146].type = "grenade"; +/* 88:55 */waypoints[146].children[0] = 2; +/* 88:55 */waypoints[146].angles = (-22.2376, 179.575, 0); +/* 88:55 */waypoints[147] = spawnstruct(); +/* 88:55 */waypoints[147].origin = (-1054.36, -110.87, 608.125); +/* 88:55 */waypoints[147].type = "grenade"; +/* 88:55 */waypoints[147].children[0] = 17; +/* 88:55 */waypoints[147].children[1] = 16; +/* 88:55 */waypoints[147].angles = (-25.9979, 100.034, 0); +/* 88:55 */waypoints[148] = spawnstruct(); +/* 88:55 */waypoints[148].origin = (-1482.46, -592.184, 800.125); +/* 88:55 */waypoints[148].type = "grenade"; +/* 88:55 */waypoints[148].children[0] = 12; +/* 88:55 */waypoints[148].children[1] = 13; +/* 88:55 */waypoints[148].children[2] = 77; +/* 88:55 */waypoints[148].angles = (-10.6226, 85.4498, 0); +/* 88:55 */waypoints[149] = spawnstruct(); +/* 88:55 */waypoints[149].origin = (54.2051, -169.298, 648.125); +/* 88:55 */waypoints[149].type = "grenade"; +/* 88:55 */waypoints[149].children[0] = 113; +/* 88:55 */waypoints[149].children[1] = 35; +/* 88:55 */waypoints[149].angles = (-24.4543, 159.047, 0); +/* 88:55 */waypoints[150] = spawnstruct(); +/* 88:55 */waypoints[150].origin = (-1090.79, 1453.28, 612.755); +/* 88:55 */waypoints[150].type = "stand"; +/* 88:55 */waypoints[150].children[0] = 6; +/* 88:55 */waypoints[150].children[1] = 32; +/* 88:55 */waypoints[150].children[2] = 28; +/* 88:55 */waypoints[151] = spawnstruct(); +/* 88:55 */waypoints[151].origin = (-717.887, -1627.95, 639.103); +/* 88:55 */waypoints[151].type = "grenade"; +/* 88:55 */waypoints[151].children[0] = 83; +/* 88:55 */waypoints[151].angles = (17.6428, 29.3427, 0.137329); +/* 88:55 */waypoints[152] = spawnstruct(); +/* 88:55 */waypoints[152].origin = (552.875, -965.746, 640.125); +/* 88:55 */waypoints[152].type = "climb"; +/* 88:55 */waypoints[152].children[0] = 43; +/* 88:55 */waypoints[152].children[1] = 98; +/* 88:55 */waypoints[152].children[2] = 153; +/* 88:55 */waypoints[152].children[3] = 44; +/* 88:55 */waypoints[152].angles = (9.11196, -1.61681, 0); +/* 88:55 */waypoints[153] = spawnstruct(); +/* 88:55 */waypoints[153].origin = (591.125, -971.301, 640.125); +/* 88:55 */waypoints[153].type = "climb"; +/* 88:55 */waypoints[153].children[0] = 98; +/* 88:55 */waypoints[153].children[1] = 152; +/* 88:55 */waypoints[153].children[2] = 96; +/* 88:55 */waypoints[153].angles = (-4.82969, 157.18, 0); +/* 88:55 */waypoints[154] = spawnstruct(); +/* 88:55 */waypoints[154].origin = (591.131, -1034.62, 640.125); +/* 88:55 */waypoints[154].type = "climb"; +/* 88:55 */waypoints[154].children[0] = 46; +/* 88:55 */waypoints[154].children[1] = 155; +/* 88:55 */waypoints[154].children[2] = 96; +/* 88:55 */waypoints[154].children[3] = 98; +/* 88:55 */waypoints[154].angles = (1.32265, -178.645, 0); +/* 88:55 */waypoints[155] = spawnstruct(); +/* 88:55 */waypoints[155].origin = (552.829, -1025.22, 640.125); +/* 88:55 */waypoints[155].type = "climb"; +/* 88:55 */waypoints[155].children[0] = 154; +/* 88:55 */waypoints[155].children[1] = 44; +/* 88:55 */waypoints[155].angles = (1.25124, -3.90197, 0); +/* 88:55 */waypoints[156] = spawnstruct(); +/* 88:55 */waypoints[156].origin = (601.273, -74.1007, 650.125); +/* 88:55 */waypoints[156].type = "grenade"; +/* 88:55 */waypoints[156].children[0] = 106; +/* 88:55 */waypoints[156].angles = (-11.2897, 130.648, 0); +/* 88:55 */waypoints[157] = spawnstruct(); +/* 88:55 */waypoints[157].origin = (444.007, 252.095, 648.125); +/* 88:55 */waypoints[157].type = "grenade"; +/* 88:55 */waypoints[157].children[0] = 111; +/* 88:55 */waypoints[157].angles = (-14.1846, 148.522, 0); +/* 88:55 */waypoints[158] = spawnstruct(); +/* 88:55 */waypoints[158].origin = (-546.869, -55.725, 816.125); +/* 88:55 */waypoints[158].type = "climb"; +/* 88:55 */waypoints[158].children[0] = 51; +/* 88:55 */waypoints[158].children[1] = 159; +/* 88:55 */waypoints[158].angles = (53.2629, 107.78, 0); +/* 88:55 */waypoints[159] = spawnstruct(); +/* 88:55 */waypoints[159].origin = (-548.069, -32.9201, 845.125); +/* 88:55 */waypoints[159].type = "grenade"; +/* 88:55 */waypoints[159].children[0] = 158; +/* 88:55 */waypoints[159].children[1] = 75; +/* 88:55 */waypoints[159].angles = (-6.27989, -161.105, 0); +/* 88:55 */waypoints[160] = spawnstruct(); +/* 88:55 */waypoints[160].origin = (-548.875, -1474.18, 608.125); +/* 88:55 */waypoints[160].type = "claymore"; +/* 88:55 */waypoints[160].children[0] = 85; +/* 88:55 */waypoints[160].children[1] = 88; +/* 88:55 */waypoints[160].angles = (48.3905, -74.4507, 0); +/* 88:55 */waypoints[161] = spawnstruct(); +/* 88:55 */waypoints[161].origin = (-1431.8, -561.321, 800.125); +/* 88:55 */waypoints[161].type = "claymore"; +/* 88:55 */waypoints[161].children[0] = 12; +/* 88:55 */waypoints[161].children[1] = 77; +/* 88:55 */waypoints[161].angles = (64.3646, -174.174, 0); +/* 88:55 */waypoints[162] = spawnstruct(); +/* 88:55 */waypoints[162].origin = (-279.808, -496.19, 640.125); +/* 88:55 */waypoints[162].type = "claymore"; +/* 88:55 */waypoints[162].children[0] = 41; +/* 88:55 */waypoints[162].angles = (71.4838, -149.762, 0); +/* 88:55 */waypoints[163] = spawnstruct(); +/* 88:55 */waypoints[163].origin = (-89.7259, -805.463, 656.125); +/* 88:55 */waypoints[163].type = "claymore"; +/* 88:55 */waypoints[163].children[0] = 42; +/* 88:55 */waypoints[163].children[1] = 41; +/* 88:55 */waypoints[163].angles = (71.297, -128.234, 0); +/* 88:55 */waypoints[164] = spawnstruct(); +/* 88:55 */waypoints[164].origin = (798.875, -13.0926, 650.125); +/* 88:55 */waypoints[164].type = "claymore"; +/* 88:55 */waypoints[164].children[0] = 108; +/* 88:55 */waypoints[164].angles = (63.0353, 142.573, 0); +/* 88:55 */waypoints[165] = spawnstruct(); +/* 88:55 */waypoints[165].origin = (7.25715, 783.125, 616.035); +/* 88:55 */waypoints[165].type = "claymore"; +/* 88:55 */waypoints[165].children[0] = 122; +/* 88:55 */waypoints[165].angles = (61.3104, 156.048, 0); +/* 88:55 */waypoints[166] = spawnstruct(); +/* 88:55 */waypoints[166].origin = (-1159.21, 774.917, 800.125); +/* 88:55 */waypoints[166].type = "claymore"; +/* 88:55 */waypoints[166].children[0] = 8; +/* 88:55 */waypoints[166].angles = (64.7821, 165.881, 0); +/* 88:55 */waypoints[167] = spawnstruct(); +/* 88:55 */waypoints[167].origin = (-1371.79, 359.137, 800.125); +/* 88:55 */waypoints[167].type = "climb"; +/* 88:55 */waypoints[167].children[0] = 23; +/* 88:55 */waypoints[167].children[1] = 168; +/* 88:55 */waypoints[167].angles = (1.85791, -93.8745, 0); +/* 88:55 */waypoints[168] = spawnstruct(); +/* 88:55 */waypoints[168].origin = (-1374.41, 308.423, 801.125); +/* 88:55 */waypoints[168].type = "climb"; +/* 88:55 */waypoints[168].children[0] = 167; +/* 88:55 */waypoints[168].children[1] = 169; +/* 88:55 */waypoints[168].children[2] = 171; +/* 88:55 */waypoints[168].angles = (59.4373, 88.0628, 0); +/* 88:55 */waypoints[169] = spawnstruct(); +/* 88:55 */waypoints[169].origin = (-1382.3, 183.565, 801.125); +/* 88:55 */waypoints[169].type = "crouch"; +/* 88:55 */waypoints[169].children[0] = 168; +/* 88:55 */waypoints[169].angles = (0.619526, -99.5398, 0); +/* 88:55 */waypoints[170] = spawnstruct(); +/* 88:55 */waypoints[170].origin = (-1451.12, 240.214, 800.125); +/* 88:55 */waypoints[170].type = "climb"; +/* 88:55 */waypoints[170].children[0] = 10; +/* 88:55 */waypoints[170].children[1] = 171; +/* 88:55 */waypoints[170].angles = (17.6538, 1.10597, 0); +/* 88:55 */waypoints[171] = spawnstruct(); +/* 88:55 */waypoints[171].origin = (-1377.4, 239.7, 801.125); +/* 88:55 */waypoints[171].type = "climb"; +/* 88:55 */waypoints[171].children[0] = 170; +/* 88:55 */waypoints[171].children[1] = 168; +/* 88:55 */waypoints[171].angles = (38.0444, 179.952, 0); +/* 88:55 */waypoints[172] = spawnstruct(); +/* 88:55 */waypoints[172].origin = (530.948, 699.621, 648.125); +/* 88:55 */waypoints[172].type = "claymore"; +/* 88:55 */waypoints[172].children[0] = 124; +/* 88:55 */waypoints[172].angles = (54.6393, 22.9743, 0); +/* 88:55 */return waypoints; +} \ No newline at end of file diff --git a/raw/maps/mp/bots/waypoints/bakaara.gsc b/raw/maps/mp/bots/waypoints/bakaara.gsc new file mode 100644 index 0000000..3131fb0 --- /dev/null +++ b/raw/maps/mp/bots/waypoints/bakaara.gsc @@ -0,0 +1,1485 @@ +Bakaara() +{ +/* 8:16 */waypoints = []; +/* 8:16 */waypoints[0] = spawnstruct(); +/* 8:16 */waypoints[0].origin = (1076.72, -907.125, -28.7888); +/* 8:16 */waypoints[0].type = "crouch"; +/* 8:16 */waypoints[0].children[0] = 1; +/* 8:16 */waypoints[0].angles = (2.88391, -50.9381, 0); +/* 8:16 */waypoints[1] = spawnstruct(); +/* 8:16 */waypoints[1].origin = (1186.88, -927.843, -38.8749); +/* 8:16 */waypoints[1].type = "crouch"; +/* 8:16 */waypoints[1].children[0] = 0; +/* 8:16 */waypoints[1].children[1] = 227; +/* 8:16 */waypoints[2] = spawnstruct(); +/* 8:16 */waypoints[2].origin = (620.125, -907.125, -36.875); +/* 8:16 */waypoints[2].type = "crouch"; +/* 8:16 */waypoints[2].children[0] = 61; +/* 8:16 */waypoints[2].angles = (4.61426, -35.9473, 0); +/* 8:16 */waypoints[3] = spawnstruct(); +/* 8:16 */waypoints[3].origin = (1572.36, -1088.18, -44.2639); +/* 8:16 */waypoints[3].type = "stand"; +/* 8:16 */waypoints[3].children[0] = 8; +/* 8:16 */waypoints[3].children[1] = 9; +/* 8:16 */waypoints[3].children[2] = 4; +/* 8:16 */waypoints[3].children[3] = 11; +/* 8:16 */waypoints[3].children[4] = 10; +/* 8:16 */waypoints[4] = spawnstruct(); +/* 8:16 */waypoints[4].origin = (1790.29, -1037.98, -45.7197); +/* 8:16 */waypoints[4].type = "stand"; +/* 8:16 */waypoints[4].children[0] = 9; +/* 8:16 */waypoints[4].children[1] = 3; +/* 8:16 */waypoints[4].children[2] = 5; +/* 8:16 */waypoints[5] = spawnstruct(); +/* 8:16 */waypoints[5].origin = (1780.45, -733.975, -49.0534); +/* 8:16 */waypoints[5].type = "stand"; +/* 8:16 */waypoints[5].children[0] = 4; +/* 8:16 */waypoints[5].children[1] = 12; +/* 8:16 */waypoints[6] = spawnstruct(); +/* 8:16 */waypoints[6].origin = (1659.5, -276.592, -51.9723); +/* 8:16 */waypoints[6].type = "stand"; +/* 8:16 */waypoints[6].children[0] = 7; +/* 8:16 */waypoints[6].children[1] = 12; +/* 8:16 */waypoints[6].children[2] = 14; +/* 8:16 */waypoints[6].children[3] = 13; +/* 8:16 */waypoints[6].children[4] = 15; +/* 8:16 */waypoints[6].children[5] = 18; +/* 8:16 */waypoints[6].children[6] = 102; +/* 8:16 */waypoints[6].children[7] = 60; +/* 8:16 */waypoints[7] = spawnstruct(); +/* 8:16 */waypoints[7].origin = (1538.21, -557.153, -47.5113); +/* 8:16 */waypoints[7].type = "stand"; +/* 8:16 */waypoints[7].children[0] = 8; +/* 8:16 */waypoints[7].children[1] = 6; +/* 8:16 */waypoints[8] = spawnstruct(); +/* 8:16 */waypoints[8].origin = (1612.19, -871.084, -56.8113); +/* 8:16 */waypoints[8].type = "stand"; +/* 8:16 */waypoints[8].children[0] = 9; +/* 8:16 */waypoints[8].children[1] = 3; +/* 8:16 */waypoints[8].children[2] = 12; +/* 8:16 */waypoints[8].children[3] = 7; +/* 8:16 */waypoints[9] = spawnstruct(); +/* 8:16 */waypoints[9].origin = (1615.47, -1351.36, -45.2042); +/* 8:16 */waypoints[9].type = "stand"; +/* 8:16 */waypoints[9].children[0] = 10; +/* 8:16 */waypoints[9].children[1] = 4; +/* 8:16 */waypoints[9].children[2] = 8; +/* 8:16 */waypoints[9].children[3] = 3; +/* 8:16 */waypoints[9].children[4] = 11; +/* 8:16 */waypoints[10] = spawnstruct(); +/* 8:16 */waypoints[10].origin = (1324.16, -1361.86, -45.237); +/* 8:16 */waypoints[10].type = "stand"; +/* 8:16 */waypoints[10].children[0] = 11; +/* 8:16 */waypoints[10].children[1] = 9; +/* 8:16 */waypoints[10].children[2] = 3; +/* 8:16 */waypoints[11] = spawnstruct(); +/* 8:16 */waypoints[11].origin = (1307.64, -1074.85, -44.015); +/* 8:16 */waypoints[11].type = "stand"; +/* 8:16 */waypoints[11].children[0] = 10; +/* 8:16 */waypoints[11].children[1] = 9; +/* 8:16 */waypoints[11].children[2] = 3; +/* 8:16 */waypoints[11].children[3] = 227; +/* 8:16 */waypoints[12] = spawnstruct(); +/* 8:16 */waypoints[12].origin = (1706.21, -531.704, -52.4596); +/* 8:16 */waypoints[12].type = "stand"; +/* 8:16 */waypoints[12].children[0] = 5; +/* 8:16 */waypoints[12].children[1] = 8; +/* 8:16 */waypoints[12].children[2] = 6; +/* 8:16 */waypoints[13] = spawnstruct(); +/* 8:16 */waypoints[13].origin = (1628.11, 96.1371, -59.4992); +/* 8:16 */waypoints[13].type = "grenade"; +/* 8:16 */waypoints[13].children[0] = 6; +/* 8:16 */waypoints[13].angles = (-27.2955, 89.3628, 0); +/* 8:16 */waypoints[14] = spawnstruct(); +/* 8:16 */waypoints[14].origin = (1708.43, 261.918, -53.6539); +/* 8:16 */waypoints[14].type = "claymore"; +/* 8:16 */waypoints[14].children[0] = 6; +/* 8:16 */waypoints[14].angles = (37.2876, 35.9253, 0); +/* 8:16 */waypoints[15] = spawnstruct(); +/* 8:16 */waypoints[15].origin = (1439.58, 228.725, -50.7053); +/* 8:16 */waypoints[15].type = "stand"; +/* 8:16 */waypoints[15].children[0] = 6; +/* 8:16 */waypoints[15].children[1] = 17; +/* 8:16 */waypoints[15].children[2] = 112; +/* 8:16 */waypoints[16] = spawnstruct(); +/* 8:16 */waypoints[16].origin = (1442.12, -396.875, -46.5546); +/* 8:16 */waypoints[16].type = "crouch"; +/* 8:16 */waypoints[16].children[0] = 60; +/* 8:16 */waypoints[16].angles = (0.817261, 51.3116, 0); +/* 8:16 */waypoints[17] = spawnstruct(); +/* 8:16 */waypoints[17].origin = (1544.49, 469.64, -73.3089); +/* 8:16 */waypoints[17].type = "stand"; +/* 8:16 */waypoints[17].children[0] = 15; +/* 8:16 */waypoints[17].children[1] = 19; +/* 8:16 */waypoints[17].children[2] = 20; +/* 8:16 */waypoints[17].children[3] = 112; +/* 8:16 */waypoints[18] = spawnstruct(); +/* 8:16 */waypoints[18].origin = (1817.01, 183.47, -90.2437); +/* 8:16 */waypoints[18].type = "stand"; +/* 8:16 */waypoints[18].children[0] = 19; +/* 8:16 */waypoints[18].children[1] = 6; +/* 8:16 */waypoints[19] = spawnstruct(); +/* 8:16 */waypoints[19].origin = (1804.15, 477.971, -59.1894); +/* 8:16 */waypoints[19].type = "stand"; +/* 8:16 */waypoints[19].children[0] = 17; +/* 8:16 */waypoints[19].children[1] = 18; +/* 8:16 */waypoints[19].children[2] = 23; +/* 8:16 */waypoints[19].children[3] = 33; +/* 8:16 */waypoints[20] = spawnstruct(); +/* 8:16 */waypoints[20].origin = (1539.61, 829.029, -70.3819); +/* 8:16 */waypoints[20].type = "stand"; +/* 8:16 */waypoints[20].children[0] = 17; +/* 8:16 */waypoints[20].children[1] = 35; +/* 8:16 */waypoints[20].children[2] = 113; +/* 8:16 */waypoints[20].children[3] = 114; +/* 8:16 */waypoints[21] = spawnstruct(); +/* 8:16 */waypoints[21].origin = (1996.88, 852.875, -39.875); +/* 8:16 */waypoints[21].type = "crouch"; +/* 8:16 */waypoints[21].children[0] = 22; +/* 8:16 */waypoints[21].angles = (2.35535, -156.418, 0); +/* 8:16 */waypoints[22] = spawnstruct(); +/* 8:16 */waypoints[22].origin = (1996.88, 735.125, -43.1832); +/* 8:16 */waypoints[22].type = "crouch"; +/* 8:16 */waypoints[22].children[0] = 21; +/* 8:16 */waypoints[22].children[1] = 228; +/* 8:16 */waypoints[23] = spawnstruct(); +/* 8:16 */waypoints[23].origin = (1792.26, 1229.28, -38.6797); +/* 8:16 */waypoints[23].type = "stand"; +/* 8:16 */waypoints[23].children[0] = 19; +/* 8:16 */waypoints[23].children[1] = 25; +/* 8:16 */waypoints[23].children[2] = 26; +/* 8:16 */waypoints[23].children[3] = 34; +/* 8:16 */waypoints[24] = spawnstruct(); +/* 8:16 */waypoints[24].origin = (1654.6, 1734.3, -0.887774); +/* 8:16 */waypoints[24].type = "stand"; +/* 8:16 */waypoints[24].children[0] = 25; +/* 8:16 */waypoints[24].children[1] = 26; +/* 8:16 */waypoints[24].children[2] = 35; +/* 8:16 */waypoints[24].children[3] = 53; +/* 8:16 */waypoints[24].children[4] = 51; +/* 8:16 */waypoints[25] = spawnstruct(); +/* 8:16 */waypoints[25].origin = (1680.57, 1405.83, -25.876); +/* 8:16 */waypoints[25].type = "stand"; +/* 8:16 */waypoints[25].children[0] = 23; +/* 8:16 */waypoints[25].children[1] = 24; +/* 8:16 */waypoints[26] = spawnstruct(); +/* 8:16 */waypoints[26].origin = (2009.58, 1578.05, -4.99077); +/* 8:16 */waypoints[26].type = "stand"; +/* 8:16 */waypoints[26].children[0] = 24; +/* 8:16 */waypoints[26].children[1] = 23; +/* 8:16 */waypoints[26].children[2] = 27; +/* 8:16 */waypoints[27] = spawnstruct(); +/* 8:16 */waypoints[27].origin = (2219.95, 1542.59, -13.8132); +/* 8:16 */waypoints[27].type = "stand"; +/* 8:16 */waypoints[27].children[0] = 26; +/* 8:16 */waypoints[27].children[1] = 28; +/* 8:16 */waypoints[27].children[2] = 30; +/* 8:16 */waypoints[27].children[3] = 32; +/* 8:16 */waypoints[28] = spawnstruct(); +/* 8:16 */waypoints[28].origin = (2467.47, 1565.8, -18.7702); +/* 8:16 */waypoints[28].type = "stand"; +/* 8:16 */waypoints[28].children[0] = 27; +/* 8:16 */waypoints[28].children[1] = 29; +/* 8:16 */waypoints[28].children[2] = 36; +/* 8:16 */waypoints[28].children[3] = 38; +/* 8:16 */waypoints[29] = spawnstruct(); +/* 8:16 */waypoints[29].origin = (2341.22, 2128.4, 22.8602); +/* 8:16 */waypoints[29].type = "stand"; +/* 8:16 */waypoints[29].children[0] = 28; +/* 8:16 */waypoints[29].children[1] = 30; +/* 8:16 */waypoints[29].children[2] = 38; +/* 8:16 */waypoints[30] = spawnstruct(); +/* 8:16 */waypoints[30].origin = (2028.29, 2076.81, 22.595); +/* 8:16 */waypoints[30].type = "stand"; +/* 8:16 */waypoints[30].children[0] = 29; +/* 8:16 */waypoints[30].children[1] = 31; +/* 8:16 */waypoints[30].children[2] = 27; +/* 8:16 */waypoints[30].children[3] = 53; +/* 8:16 */waypoints[31] = spawnstruct(); +/* 8:16 */waypoints[31].origin = (1887.76, 2335.56, 48.125); +/* 8:16 */waypoints[31].type = "stand"; +/* 8:16 */waypoints[31].children[0] = 30; +/* 8:16 */waypoints[31].children[1] = 32; +/* 8:16 */waypoints[31].children[2] = 40; +/* 8:16 */waypoints[31].children[3] = 41; +/* 8:16 */waypoints[32] = spawnstruct(); +/* 8:16 */waypoints[32].origin = (2041.88, 1915.41, 14.625); +/* 8:16 */waypoints[32].type = "claymore"; +/* 8:16 */waypoints[32].children[0] = 27; +/* 8:16 */waypoints[32].children[1] = 31; +/* 8:16 */waypoints[32].angles = (54.2493, 57.7002, 0); +/* 8:16 */waypoints[33] = spawnstruct(); +/* 8:16 */waypoints[33].origin = (1687.26, 958.148, -50.7048); +/* 8:16 */waypoints[33].type = "climb"; +/* 8:16 */waypoints[33].children[0] = 34; +/* 8:16 */waypoints[33].children[1] = 19; +/* 8:16 */waypoints[33].children[2] = 228; +/* 8:16 */waypoints[33].angles = (-1.48987, 89.4232, 0); +/* 8:16 */waypoints[34] = spawnstruct(); +/* 8:16 */waypoints[34].origin = (1669.99, 1140.4, -45.7578); +/* 8:16 */waypoints[34].type = "climb"; +/* 8:16 */waypoints[34].children[0] = 23; +/* 8:16 */waypoints[34].children[1] = 33; +/* 8:16 */waypoints[34].angles = (6.57959, -90.0934, 0); +/* 8:16 */waypoints[35] = spawnstruct(); +/* 8:16 */waypoints[35].origin = (1528.9, 1684.66, -29.002); +/* 8:16 */waypoints[35].type = "stand"; +/* 8:16 */waypoints[35].children[0] = 24; +/* 8:16 */waypoints[35].children[1] = 20; +/* 8:16 */waypoints[35].children[2] = 217; +/* 8:16 */waypoints[35].children[3] = 218; +/* 8:16 */waypoints[36] = spawnstruct(); +/* 8:16 */waypoints[36].origin = (2637.86, 1558.57, -16.875); +/* 8:16 */waypoints[36].type = "stand"; +/* 8:16 */waypoints[36].children[0] = 37; +/* 8:16 */waypoints[36].children[1] = 28; +/* 8:16 */waypoints[37] = spawnstruct(); +/* 8:16 */waypoints[37].origin = (2628.18, 1981.63, -16.9353); +/* 8:16 */waypoints[37].type = "stand"; +/* 8:16 */waypoints[37].children[0] = 36; +/* 8:16 */waypoints[37].children[1] = 38; +/* 8:16 */waypoints[38] = spawnstruct(); +/* 8:16 */waypoints[38].origin = (2413, 1942.11, 5.16108); +/* 8:16 */waypoints[38].type = "stand"; +/* 8:16 */waypoints[38].children[0] = 29; +/* 8:16 */waypoints[38].children[1] = 28; +/* 8:16 */waypoints[38].children[2] = 37; +/* 8:16 */waypoints[39] = spawnstruct(); +/* 8:16 */waypoints[39].origin = (1629.32, 2281.32, 48.125); +/* 8:16 */waypoints[39].type = "crouch"; +/* 8:16 */waypoints[39].children[0] = 59; +/* 8:16 */waypoints[39].angles = (4.85474, -23.5547, 0); +/* 8:16 */waypoints[40] = spawnstruct(); +/* 8:16 */waypoints[40].origin = (1887.24, 2239.91, 48.125); +/* 8:16 */waypoints[40].type = "claymore"; +/* 8:16 */waypoints[40].children[0] = 31; +/* 8:16 */waypoints[40].children[1] = 59; +/* 8:16 */waypoints[40].angles = (54.4415, 15.6555, 0); +/* 8:16 */waypoints[41] = spawnstruct(); +/* 8:16 */waypoints[41].origin = (1735.69, 2408.72, 48.125); +/* 8:16 */waypoints[41].type = "stand"; +/* 8:16 */waypoints[41].children[0] = 31; +/* 8:16 */waypoints[41].children[1] = 42; +/* 8:16 */waypoints[42] = spawnstruct(); +/* 8:16 */waypoints[42].origin = (1617.09, 2528.48, 48.125); +/* 8:16 */waypoints[42].type = "stand"; +/* 8:16 */waypoints[42].children[0] = 41; +/* 8:16 */waypoints[42].children[1] = 43; +/* 8:16 */waypoints[43] = spawnstruct(); +/* 8:16 */waypoints[43].origin = (1213.59, 3215.49, 79.125); +/* 8:16 */waypoints[43].type = "stand"; +/* 8:16 */waypoints[43].children[0] = 42; +/* 8:16 */waypoints[43].children[1] = 44; +/* 8:16 */waypoints[43].children[2] = 62; +/* 8:16 */waypoints[44] = spawnstruct(); +/* 8:16 */waypoints[44].origin = (1020.85, 3170.55, 88.125); +/* 8:16 */waypoints[44].type = "stand"; +/* 8:16 */waypoints[44].children[0] = 43; +/* 8:16 */waypoints[44].children[1] = 45; +/* 8:16 */waypoints[44].children[2] = 50; +/* 8:16 */waypoints[44].children[3] = 52; +/* 8:16 */waypoints[44].children[4] = 54; +/* 8:16 */waypoints[44].children[5] = 58; +/* 8:16 */waypoints[44].children[6] = 62; +/* 8:16 */waypoints[45] = spawnstruct(); +/* 8:16 */waypoints[45].origin = (1116.34, 2958.77, 70.8617); +/* 8:16 */waypoints[45].type = "stand"; +/* 8:16 */waypoints[45].children[0] = 46; +/* 8:16 */waypoints[45].children[1] = 47; +/* 8:16 */waypoints[45].children[2] = 44; +/* 8:16 */waypoints[45].children[3] = 50; +/* 8:16 */waypoints[45].children[4] = 52; +/* 8:16 */waypoints[46] = spawnstruct(); +/* 8:16 */waypoints[46].origin = (1319.39, 2731.07, 62.1552); +/* 8:16 */waypoints[46].type = "stand"; +/* 8:16 */waypoints[46].children[0] = 45; +/* 8:16 */waypoints[46].children[1] = 49; +/* 8:16 */waypoints[46].children[2] = 47; +/* 8:16 */waypoints[46].children[3] = 48; +/* 8:16 */waypoints[46].children[4] = 52; +/* 8:16 */waypoints[47] = spawnstruct(); +/* 8:16 */waypoints[47].origin = (1319.99, 2731.04, 62.2088); +/* 8:16 */waypoints[47].type = "climb"; +/* 8:16 */waypoints[47].children[0] = 45; +/* 8:16 */waypoints[47].children[1] = 49; +/* 8:16 */waypoints[47].children[2] = 46; +/* 8:16 */waypoints[47].children[3] = 48; +/* 8:16 */waypoints[47].children[4] = 52; +/* 8:16 */waypoints[47].angles = (4.0802, -87.1875, 0); +/* 8:16 */waypoints[48] = spawnstruct(); +/* 8:16 */waypoints[48].origin = (1318.37, 2579.68, 128.893); +/* 8:16 */waypoints[48].type = "climb"; +/* 8:16 */waypoints[48].children[0] = 47; +/* 8:16 */waypoints[48].children[1] = 46; +/* 8:16 */waypoints[48].angles = (21.2927, -77.3811, 0); +/* 8:16 */waypoints[49] = spawnstruct(); +/* 8:16 */waypoints[49].origin = (1320.72, 2644.73, 92.8221); +/* 8:16 */waypoints[49].type = "grenade"; +/* 8:16 */waypoints[49].children[0] = 46; +/* 8:16 */waypoints[49].children[1] = 47; +/* 8:16 */waypoints[49].angles = (-25.9925, -77.1723, 0); +/* 8:16 */waypoints[50] = spawnstruct(); +/* 8:16 */waypoints[50].origin = (1301, 2428.78, 47.9248); +/* 8:16 */waypoints[50].type = "stand"; +/* 8:16 */waypoints[50].children[0] = 44; +/* 8:16 */waypoints[50].children[1] = 45; +/* 8:16 */waypoints[50].children[2] = 51; +/* 8:16 */waypoints[51] = spawnstruct(); +/* 8:16 */waypoints[51].origin = (1514.98, 2195.19, 30.3116); +/* 8:16 */waypoints[51].type = "stand"; +/* 8:16 */waypoints[51].children[0] = 50; +/* 8:16 */waypoints[51].children[1] = 52; +/* 8:16 */waypoints[51].children[2] = 53; +/* 8:16 */waypoints[51].children[3] = 218; +/* 8:16 */waypoints[51].children[4] = 219; +/* 8:16 */waypoints[51].children[5] = 217; +/* 8:16 */waypoints[51].children[6] = 24; +/* 8:16 */waypoints[52] = spawnstruct(); +/* 8:16 */waypoints[52].origin = (1378.37, 2722.63, 69.524); +/* 8:16 */waypoints[52].type = "stand"; +/* 8:16 */waypoints[52].children[0] = 51; +/* 8:16 */waypoints[52].children[1] = 47; +/* 8:16 */waypoints[52].children[2] = 46; +/* 8:16 */waypoints[52].children[3] = 45; +/* 8:16 */waypoints[52].children[4] = 44; +/* 8:16 */waypoints[53] = spawnstruct(); +/* 8:16 */waypoints[53].origin = (1629.7, 1961.88, 14.1306); +/* 8:16 */waypoints[53].type = "stand"; +/* 8:16 */waypoints[53].children[0] = 24; +/* 8:16 */waypoints[53].children[1] = 30; +/* 8:16 */waypoints[53].children[2] = 51; +/* 8:16 */waypoints[54] = spawnstruct(); +/* 8:16 */waypoints[54].origin = (1004.69, 3702.19, 227.125); +/* 8:16 */waypoints[54].type = "stand"; +/* 8:16 */waypoints[54].children[0] = 55; +/* 8:16 */waypoints[54].children[1] = 44; +/* 8:16 */waypoints[54].children[2] = 57; +/* 8:16 */waypoints[55] = spawnstruct(); +/* 8:16 */waypoints[55].origin = (788.49, 3602, 227.125); +/* 8:16 */waypoints[55].type = "stand"; +/* 8:16 */waypoints[55].children[0] = 56; +/* 8:16 */waypoints[55].children[1] = 54; +/* 8:16 */waypoints[55].children[2] = 57; +/* 8:16 */waypoints[56] = spawnstruct(); +/* 8:16 */waypoints[56].origin = (595.604, 3699.63, 227.125); +/* 8:16 */waypoints[56].type = "stand"; +/* 8:16 */waypoints[56].children[0] = 55; +/* 8:16 */waypoints[56].children[1] = 57; +/* 8:16 */waypoints[56].children[2] = 58; +/* 8:16 */waypoints[57] = spawnstruct(); +/* 8:16 */waypoints[57].origin = (796.995, 3689.21, 227.125); +/* 8:16 */waypoints[57].type = "stand"; +/* 8:16 */waypoints[57].children[0] = 56; +/* 8:16 */waypoints[57].children[1] = 55; +/* 8:16 */waypoints[57].children[2] = 54; +/* 8:16 */waypoints[58] = spawnstruct(); +/* 8:16 */waypoints[58].origin = (570.222, 3333.23, 88.125); +/* 8:16 */waypoints[58].type = "stand"; +/* 8:16 */waypoints[58].children[0] = 56; +/* 8:16 */waypoints[58].children[1] = 44; +/* 8:16 */waypoints[58].children[2] = 62; +/* 8:16 */waypoints[58].children[3] = 63; +/* 8:16 */waypoints[59] = spawnstruct(); +/* 8:16 */waypoints[59].origin = (1788.26, 2276.9, 48.125); +/* 8:16 */waypoints[59].type = "stand"; +/* 8:16 */waypoints[59].children[0] = 39; +/* 8:16 */waypoints[59].children[1] = 40; +/* 8:16 */waypoints[60] = spawnstruct(); +/* 8:16 */waypoints[60].origin = (1524.79, -292.251, -52.0338); +/* 8:16 */waypoints[60].type = "stand"; +/* 8:16 */waypoints[60].children[0] = 16; +/* 8:16 */waypoints[60].children[1] = 6; +/* 8:16 */waypoints[61] = spawnstruct(); +/* 8:16 */waypoints[61].origin = (755.301, -907.125, -45.2758); +/* 8:16 */waypoints[61].type = "claymore"; +/* 8:16 */waypoints[61].children[0] = 2; +/* 8:16 */waypoints[61].children[1] = 93; +/* 8:16 */waypoints[61].angles = (58.2813, -19.1646, 0); +/* 8:16 */waypoints[62] = spawnstruct(); +/* 8:16 */waypoints[62].origin = (564.23, 2975.45, 88.0086); +/* 8:16 */waypoints[62].type = "stand"; +/* 8:16 */waypoints[62].children[0] = 58; +/* 8:16 */waypoints[62].children[1] = 44; +/* 8:16 */waypoints[62].children[2] = 43; +/* 8:16 */waypoints[62].children[3] = 64; +/* 8:16 */waypoints[62].children[4] = 146; +/* 8:16 */waypoints[62].children[5] = 147; +/* 8:16 */waypoints[62].children[6] = 150; +/* 8:16 */waypoints[63] = spawnstruct(); +/* 8:16 */waypoints[63].origin = (237.75, 3269.67, 89.2896); +/* 8:16 */waypoints[63].type = "stand"; +/* 8:16 */waypoints[63].children[0] = 58; +/* 8:16 */waypoints[63].children[1] = 64; +/* 8:16 */waypoints[63].children[2] = 65; +/* 8:16 */waypoints[63].children[3] = 66; +/* 8:16 */waypoints[64] = spawnstruct(); +/* 8:16 */waypoints[64].origin = (465.305, 3184.05, 90.4484); +/* 8:16 */waypoints[64].type = "stand"; +/* 8:16 */waypoints[64].children[0] = 63; +/* 8:16 */waypoints[64].children[1] = 62; +/* 8:16 */waypoints[65] = spawnstruct(); +/* 8:16 */waypoints[65].origin = (12.1739, 3012.94, 84.5655); +/* 8:16 */waypoints[65].type = "stand"; +/* 8:16 */waypoints[65].children[0] = 63; +/* 8:16 */waypoints[65].children[1] = 66; +/* 8:16 */waypoints[65].children[2] = 67; +/* 8:16 */waypoints[65].children[3] = 70; +/* 8:16 */waypoints[65].children[4] = 144; +/* 8:16 */waypoints[65].children[5] = 149; +/* 8:16 */waypoints[65].children[6] = 153; +/* 8:16 */waypoints[66] = spawnstruct(); +/* 8:16 */waypoints[66].origin = (-406.307, 3299.58, 97.8552); +/* 8:16 */waypoints[66].type = "stand"; +/* 8:16 */waypoints[66].children[0] = 65; +/* 8:16 */waypoints[66].children[1] = 63; +/* 8:16 */waypoints[67] = spawnstruct(); +/* 8:16 */waypoints[67].origin = (-620.461, 2812.14, 153.131); +/* 8:16 */waypoints[67].type = "stand"; +/* 8:16 */waypoints[67].children[0] = 65; +/* 8:16 */waypoints[67].children[1] = 69; +/* 8:16 */waypoints[67].children[2] = 68; +/* 8:16 */waypoints[68] = spawnstruct(); +/* 8:16 */waypoints[68].origin = (-929.804, 2511.54, 70.925); +/* 8:16 */waypoints[68].type = "stand"; +/* 8:16 */waypoints[68].children[0] = 69; +/* 8:16 */waypoints[68].children[1] = 67; +/* 8:16 */waypoints[68].children[2] = 71; +/* 8:16 */waypoints[68].children[3] = 72; +/* 8:16 */waypoints[68].children[4] = 226; +/* 8:16 */waypoints[69] = spawnstruct(); +/* 8:16 */waypoints[69].origin = (-491.211, 2520.74, 84.4072); +/* 8:16 */waypoints[69].type = "stand"; +/* 8:16 */waypoints[69].children[0] = 67; +/* 8:16 */waypoints[69].children[1] = 70; +/* 8:16 */waypoints[69].children[2] = 68; +/* 8:16 */waypoints[70] = spawnstruct(); +/* 8:16 */waypoints[70].origin = (-103.115, 2440.32, 87.8611); +/* 8:16 */waypoints[70].type = "stand"; +/* 8:16 */waypoints[70].children[0] = 65; +/* 8:16 */waypoints[70].children[1] = 69; +/* 8:16 */waypoints[70].children[2] = 145; +/* 8:16 */waypoints[71] = spawnstruct(); +/* 8:16 */waypoints[71].origin = (-970.227, 2825.46, 72.125); +/* 8:16 */waypoints[71].type = "stand"; +/* 8:16 */waypoints[71].children[0] = 68; +/* 8:16 */waypoints[71].children[1] = 164; +/* 8:16 */waypoints[72] = spawnstruct(); +/* 8:16 */waypoints[72].origin = (-882.026, 1450.13, 96.125); +/* 8:16 */waypoints[72].type = "stand"; +/* 8:16 */waypoints[72].children[0] = 68; +/* 8:16 */waypoints[72].children[1] = 73; +/* 8:16 */waypoints[73] = spawnstruct(); +/* 8:16 */waypoints[73].origin = (-1102.67, 1450.41, 96.125); +/* 8:16 */waypoints[73].type = "stand"; +/* 8:16 */waypoints[73].children[0] = 72; +/* 8:16 */waypoints[73].children[1] = 74; +/* 8:16 */waypoints[73].children[2] = 75; +/* 8:16 */waypoints[74] = spawnstruct(); +/* 8:16 */waypoints[74].origin = (-979.279, 1395.24, 96.125); +/* 8:16 */waypoints[74].type = "claymore"; +/* 8:16 */waypoints[74].children[0] = 73; +/* 8:16 */waypoints[74].angles = (60.2039, 106.338, 0); +/* 8:16 */waypoints[75] = spawnstruct(); +/* 8:16 */waypoints[75].origin = (-1070.72, 1064.57, 96.125); +/* 8:16 */waypoints[75].type = "stand"; +/* 8:16 */waypoints[75].children[0] = 76; +/* 8:16 */waypoints[75].children[1] = 73; +/* 8:16 */waypoints[75].children[2] = 78; +/* 8:16 */waypoints[76] = spawnstruct(); +/* 8:16 */waypoints[76].origin = (-880.876, 1060.39, 96.125); +/* 8:16 */waypoints[76].type = "stand"; +/* 8:16 */waypoints[76].children[0] = 77; +/* 8:16 */waypoints[76].children[1] = 75; +/* 8:16 */waypoints[76].children[2] = 79; +/* 8:16 */waypoints[77] = spawnstruct(); +/* 8:16 */waypoints[77].origin = (-880.888, 1296.98, 96.125); +/* 8:16 */waypoints[77].type = "stand"; +/* 8:16 */waypoints[77].children[0] = 76; +/* 8:16 */waypoints[78] = spawnstruct(); +/* 8:16 */waypoints[78].origin = (-980.206, 1120.99, 96.125); +/* 8:16 */waypoints[78].type = "claymore"; +/* 8:16 */waypoints[78].children[0] = 75; +/* 8:16 */waypoints[78].angles = (60.7806, -108.006, 0); +/* 8:16 */waypoints[79] = spawnstruct(); +/* 8:16 */waypoints[79].origin = (-883.539, 918.873, 96.125); +/* 8:16 */waypoints[79].type = "stand"; +/* 8:16 */waypoints[79].children[0] = 76; +/* 8:16 */waypoints[79].children[1] = 81; +/* 8:16 */waypoints[79].children[2] = 80; +/* 8:16 */waypoints[80] = spawnstruct(); +/* 8:16 */waypoints[80].origin = (-888.02, 774.846, 96.125); +/* 8:16 */waypoints[80].type = "stand"; +/* 8:16 */waypoints[80].children[0] = 82; +/* 8:16 */waypoints[80].children[1] = 79; +/* 8:16 */waypoints[80].children[2] = 83; +/* 8:16 */waypoints[80].children[3] = 216; +/* 8:16 */waypoints[81] = spawnstruct(); +/* 8:16 */waypoints[81].origin = (-999.787, 775.743, 96.125); +/* 8:16 */waypoints[81].type = "stand"; +/* 8:16 */waypoints[81].children[0] = 79; +/* 8:16 */waypoints[81].children[1] = 82; +/* 8:16 */waypoints[81].children[2] = 83; +/* 8:16 */waypoints[82] = spawnstruct(); +/* 8:16 */waypoints[82].origin = (-945.83, 684.852, 96.125); +/* 8:16 */waypoints[82].type = "stand"; +/* 8:16 */waypoints[82].children[0] = 81; +/* 8:16 */waypoints[82].children[1] = 80; +/* 8:16 */waypoints[82].children[2] = 83; +/* 8:16 */waypoints[82].children[3] = 216; +/* 8:16 */waypoints[83] = spawnstruct(); +/* 8:16 */waypoints[83].origin = (-1004.93, 583.839, 96.125); +/* 8:16 */waypoints[83].type = "stand"; +/* 8:16 */waypoints[83].children[0] = 82; +/* 8:16 */waypoints[83].children[1] = 80; +/* 8:16 */waypoints[83].children[2] = 81; +/* 8:16 */waypoints[83].children[3] = 84; +/* 8:16 */waypoints[84] = spawnstruct(); +/* 8:16 */waypoints[84].origin = (-1006.92, 340.86, -32.4468); +/* 8:16 */waypoints[84].type = "stand"; +/* 8:16 */waypoints[84].children[0] = 83; +/* 8:16 */waypoints[84].children[1] = 85; +/* 8:16 */waypoints[84].children[2] = 194; +/* 8:16 */waypoints[84].children[3] = 207; +/* 8:16 */waypoints[85] = spawnstruct(); +/* 8:16 */waypoints[85].origin = (-984.292, -268.903, -39.875); +/* 8:16 */waypoints[85].type = "stand"; +/* 8:16 */waypoints[85].children[0] = 86; +/* 8:16 */waypoints[85].children[1] = 84; +/* 8:16 */waypoints[85].children[2] = 90; +/* 8:16 */waypoints[85].children[3] = 194; +/* 8:16 */waypoints[86] = spawnstruct(); +/* 8:16 */waypoints[86].origin = (-979.452, -430.207, -31.675); +/* 8:16 */waypoints[86].type = "stand"; +/* 8:16 */waypoints[86].children[0] = 87; +/* 8:16 */waypoints[86].children[1] = 85; +/* 8:16 */waypoints[86].children[2] = 194; +/* 8:16 */waypoints[87] = spawnstruct(); +/* 8:16 */waypoints[87].origin = (-293.208, -454.917, -43.875); +/* 8:16 */waypoints[87].type = "stand"; +/* 8:16 */waypoints[87].children[0] = 88; +/* 8:16 */waypoints[87].children[1] = 86; +/* 8:16 */waypoints[87].children[2] = 90; +/* 8:16 */waypoints[88] = spawnstruct(); +/* 8:16 */waypoints[88].origin = (-293.629, -786.26, -43.875); +/* 8:16 */waypoints[88].type = "stand"; +/* 8:16 */waypoints[88].children[0] = 89; +/* 8:16 */waypoints[88].children[1] = 87; +/* 8:16 */waypoints[88].children[2] = 92; +/* 8:16 */waypoints[89] = spawnstruct(); +/* 8:16 */waypoints[89].origin = (-119.157, -1043.91, -43.875); +/* 8:16 */waypoints[89].type = "stand"; +/* 8:16 */waypoints[89].children[0] = 88; +/* 8:16 */waypoints[89].children[1] = 93; +/* 8:16 */waypoints[89].children[2] = 94; +/* 8:16 */waypoints[90] = spawnstruct(); +/* 8:16 */waypoints[90].origin = (-302.988, -253.787, -44.3762); +/* 8:16 */waypoints[90].type = "stand"; +/* 8:16 */waypoints[90].children[0] = 85; +/* 8:16 */waypoints[90].children[1] = 87; +/* 8:16 */waypoints[90].children[2] = 91; +/* 8:16 */waypoints[90].children[3] = 106; +/* 8:16 */waypoints[91] = spawnstruct(); +/* 8:16 */waypoints[91].origin = (199.072, -257.018, -49.1757); +/* 8:16 */waypoints[91].type = "stand"; +/* 8:16 */waypoints[91].children[0] = 90; +/* 8:16 */waypoints[91].children[1] = 92; +/* 8:16 */waypoints[91].children[2] = 101; +/* 8:16 */waypoints[91].children[3] = 105; +/* 8:16 */waypoints[91].children[4] = 180; +/* 8:16 */waypoints[92] = spawnstruct(); +/* 8:16 */waypoints[92].origin = (195.529, -793.035, -44.3745); +/* 8:16 */waypoints[92].type = "stand"; +/* 8:16 */waypoints[92].children[0] = 91; +/* 8:16 */waypoints[92].children[1] = 88; +/* 8:16 */waypoints[92].children[2] = 100; +/* 8:16 */waypoints[93] = spawnstruct(); +/* 8:16 */waypoints[93].origin = (889.855, -1062.11, -43.8785); +/* 8:16 */waypoints[93].type = "stand"; +/* 8:16 */waypoints[93].children[0] = 89; +/* 8:16 */waypoints[93].children[1] = 95; +/* 8:16 */waypoints[93].children[2] = 61; +/* 8:16 */waypoints[93].children[3] = 227; +/* 8:16 */waypoints[94] = spawnstruct(); +/* 8:16 */waypoints[94].origin = (327.056, -964.561, -45.7378); +/* 8:16 */waypoints[94].type = "claymore"; +/* 8:16 */waypoints[94].children[0] = 89; +/* 8:16 */waypoints[94].angles = (47.3224, -143.085, 0); +/* 8:16 */waypoints[95] = spawnstruct(); +/* 8:16 */waypoints[95].origin = (840.145, -798.51, -45.5784); +/* 8:16 */waypoints[95].type = "stand"; +/* 8:16 */waypoints[95].children[0] = 93; +/* 8:16 */waypoints[95].children[1] = 96; +/* 8:16 */waypoints[95].children[2] = 98; +/* 8:16 */waypoints[95].children[3] = 100; +/* 8:16 */waypoints[96] = spawnstruct(); +/* 8:16 */waypoints[96].origin = (1024.61, -807.461, -47.878); +/* 8:16 */waypoints[96].type = "stand"; +/* 8:16 */waypoints[96].children[0] = 97; +/* 8:16 */waypoints[96].children[1] = 95; +/* 8:16 */waypoints[97] = spawnstruct(); +/* 8:16 */waypoints[97].origin = (1024.41, -549.378, -47.8793); +/* 8:16 */waypoints[97].type = "stand"; +/* 8:16 */waypoints[97].children[0] = 98; +/* 8:16 */waypoints[97].children[1] = 96; +/* 8:16 */waypoints[98] = spawnstruct(); +/* 8:16 */waypoints[98].origin = (840.887, -572.989, -47.878); +/* 8:16 */waypoints[98].type = "stand"; +/* 8:16 */waypoints[98].children[0] = 99; +/* 8:16 */waypoints[98].children[1] = 97; +/* 8:16 */waypoints[98].children[2] = 95; +/* 8:16 */waypoints[98].children[3] = 102; +/* 8:16 */waypoints[99] = spawnstruct(); +/* 8:16 */waypoints[99].origin = (683.481, -578.899, -44.9421); +/* 8:16 */waypoints[99].type = "stand"; +/* 8:16 */waypoints[99].children[0] = 100; +/* 8:16 */waypoints[99].children[1] = 98; +/* 8:16 */waypoints[99].children[2] = 101; +/* 8:16 */waypoints[100] = spawnstruct(); +/* 8:16 */waypoints[100].origin = (683.905, -814.098, -44.8444); +/* 8:16 */waypoints[100].type = "stand"; +/* 8:16 */waypoints[100].children[0] = 99; +/* 8:16 */waypoints[100].children[1] = 95; +/* 8:16 */waypoints[100].children[2] = 92; +/* 8:16 */waypoints[101] = spawnstruct(); +/* 8:16 */waypoints[101].origin = (687.358, -251.507, -45.219); +/* 8:16 */waypoints[101].type = "stand"; +/* 8:16 */waypoints[101].children[0] = 99; +/* 8:16 */waypoints[101].children[1] = 91; +/* 8:16 */waypoints[102] = spawnstruct(); +/* 8:16 */waypoints[102].origin = (865.168, -256.684, -44.5731); +/* 8:16 */waypoints[102].type = "stand"; +/* 8:16 */waypoints[102].children[0] = 6; +/* 8:16 */waypoints[102].children[1] = 103; +/* 8:16 */waypoints[102].children[2] = 98; +/* 8:16 */waypoints[102].children[3] = 104; +/* 8:16 */waypoints[103] = spawnstruct(); +/* 8:16 */waypoints[103].origin = (1075.3, -117.125, -47.875); +/* 8:16 */waypoints[103].type = "climb"; +/* 8:16 */waypoints[103].children[0] = 102; +/* 8:16 */waypoints[103].children[1] = 110; +/* 8:16 */waypoints[103].angles = (8.49672, 90.5449, 0); +/* 8:16 */waypoints[104] = spawnstruct(); +/* 8:16 */waypoints[104].origin = (530.606, 78.3445, -51.0061); +/* 8:16 */waypoints[104].type = "stand"; +/* 8:16 */waypoints[104].children[0] = 102; +/* 8:16 */waypoints[104].children[1] = 105; +/* 8:16 */waypoints[104].children[2] = 107; +/* 8:16 */waypoints[104].children[3] = 128; +/* 8:16 */waypoints[104].children[4] = 182; +/* 8:16 */waypoints[105] = spawnstruct(); +/* 8:16 */waypoints[105].origin = (217.477, -21.1215, -62.1545); +/* 8:16 */waypoints[105].type = "stand"; +/* 8:16 */waypoints[105].children[0] = 106; +/* 8:16 */waypoints[105].children[1] = 91; +/* 8:16 */waypoints[105].children[2] = 104; +/* 8:16 */waypoints[105].children[3] = 180; +/* 8:16 */waypoints[106] = spawnstruct(); +/* 8:16 */waypoints[106].origin = (-309.1, 46.7847, -48.3338); +/* 8:16 */waypoints[106].type = "stand"; +/* 8:16 */waypoints[106].children[0] = 90; +/* 8:16 */waypoints[106].children[1] = 105; +/* 8:16 */waypoints[106].children[2] = 229; +/* 8:16 */waypoints[107] = spawnstruct(); +/* 8:16 */waypoints[107].origin = (831.298, 73.8825, -47.875); +/* 8:16 */waypoints[107].type = "stand"; +/* 8:16 */waypoints[107].children[0] = 108; +/* 8:16 */waypoints[107].children[1] = 104; +/* 8:16 */waypoints[107].children[2] = 126; +/* 8:16 */waypoints[107].children[3] = 128; +/* 8:16 */waypoints[108] = spawnstruct(); +/* 8:16 */waypoints[108].origin = (1005.42, 0.992099, -47.875); +/* 8:16 */waypoints[108].type = "stand"; +/* 8:16 */waypoints[108].children[0] = 107; +/* 8:16 */waypoints[108].children[1] = 109; +/* 8:16 */waypoints[108].children[2] = 110; +/* 8:16 */waypoints[108].children[3] = 126; +/* 8:16 */waypoints[109] = spawnstruct(); +/* 8:16 */waypoints[109].origin = (1189.12, 239.621, -47.875); +/* 8:16 */waypoints[109].type = "stand"; +/* 8:16 */waypoints[109].children[0] = 108; +/* 8:16 */waypoints[109].children[1] = 110; +/* 8:16 */waypoints[109].children[2] = 111; +/* 8:16 */waypoints[110] = spawnstruct(); +/* 8:16 */waypoints[110].origin = (1071.96, -65.2558, -47.875); +/* 8:16 */waypoints[110].type = "climb"; +/* 8:16 */waypoints[110].children[0] = 108; +/* 8:16 */waypoints[110].children[1] = 103; +/* 8:16 */waypoints[110].children[2] = 109; +/* 8:16 */waypoints[110].angles = (56.5839, -91.5809, 0); +/* 8:16 */waypoints[111] = spawnstruct(); +/* 8:16 */waypoints[111].origin = (1333.12, 265.832, -47.875); +/* 8:16 */waypoints[111].type = "stand"; +/* 8:16 */waypoints[111].children[0] = 109; +/* 8:16 */waypoints[111].children[1] = 112; +/* 8:16 */waypoints[112] = spawnstruct(); +/* 8:16 */waypoints[112].origin = (1386.05, 439.882, -59.253); +/* 8:16 */waypoints[112].type = "stand"; +/* 8:16 */waypoints[112].children[0] = 111; +/* 8:16 */waypoints[112].children[1] = 17; +/* 8:16 */waypoints[112].children[2] = 15; +/* 8:16 */waypoints[112].children[3] = 113; +/* 8:16 */waypoints[113] = spawnstruct(); +/* 8:16 */waypoints[113].origin = (1368.86, 778.125, -62.875); +/* 8:16 */waypoints[113].type = "stand"; +/* 8:16 */waypoints[113].children[0] = 20; +/* 8:16 */waypoints[113].children[1] = 112; +/* 8:16 */waypoints[113].children[2] = 114; +/* 8:16 */waypoints[113].children[3] = 124; +/* 8:16 */waypoints[113].children[4] = 125; +/* 8:16 */waypoints[113].children[5] = 174; +/* 8:16 */waypoints[114] = spawnstruct(); +/* 8:16 */waypoints[114].origin = (1413.6, 1056.55, -51.0258); +/* 8:16 */waypoints[114].type = "stand"; +/* 8:16 */waypoints[114].children[0] = 113; +/* 8:16 */waypoints[114].children[1] = 20; +/* 8:16 */waypoints[114].children[2] = 115; +/* 8:16 */waypoints[115] = spawnstruct(); +/* 8:16 */waypoints[115].origin = (1165.41, 1067.02, 44.125); +/* 8:16 */waypoints[115].type = "stand"; +/* 8:16 */waypoints[115].children[0] = 114; +/* 8:16 */waypoints[115].children[1] = 116; +/* 8:16 */waypoints[115].children[2] = 129; +/* 8:16 */waypoints[115].children[3] = 131; +/* 8:16 */waypoints[116] = spawnstruct(); +/* 8:16 */waypoints[116].origin = (1163.88, 820.52, 93.125); +/* 8:16 */waypoints[116].type = "stand"; +/* 8:16 */waypoints[116].children[0] = 115; +/* 8:16 */waypoints[116].children[1] = 117; +/* 8:16 */waypoints[116].children[2] = 172; +/* 8:16 */waypoints[116].children[3] = 195; +/* 8:16 */waypoints[116].children[4] = 196; +/* 8:16 */waypoints[117] = spawnstruct(); +/* 8:16 */waypoints[117].origin = (1242.07, 787.048, 93.125); +/* 8:16 */waypoints[117].type = "stand"; +/* 8:16 */waypoints[117].children[0] = 116; +/* 8:16 */waypoints[117].children[1] = 118; +/* 8:16 */waypoints[117].children[2] = 120; +/* 8:16 */waypoints[117].children[3] = 196; +/* 8:16 */waypoints[117].children[4] = 195; +/* 8:16 */waypoints[118] = spawnstruct(); +/* 8:16 */waypoints[118].origin = (1384.12, 790.4, 93.125); +/* 8:16 */waypoints[118].type = "stand"; +/* 8:16 */waypoints[118].children[0] = 119; +/* 8:16 */waypoints[118].children[1] = 117; +/* 8:16 */waypoints[118].children[2] = 173; +/* 8:16 */waypoints[119] = spawnstruct(); +/* 8:16 */waypoints[119].origin = (1433.25, 881.875, 93.125); +/* 8:16 */waypoints[119].type = "grenade"; +/* 8:16 */waypoints[119].children[0] = 118; +/* 8:16 */waypoints[119].angles = (-19.1724, 49.9695, 0); +/* 8:16 */waypoints[120] = spawnstruct(); +/* 8:16 */waypoints[120].origin = (1387.45, 534.274, 93.125); +/* 8:16 */waypoints[120].type = "stand"; +/* 8:16 */waypoints[120].children[0] = 117; +/* 8:16 */waypoints[120].children[1] = 121; +/* 8:16 */waypoints[121] = spawnstruct(); +/* 8:16 */waypoints[121].origin = (1056.83, 536.425, -62.875); +/* 8:16 */waypoints[121].type = "stand"; +/* 8:16 */waypoints[121].children[0] = 120; +/* 8:16 */waypoints[121].children[1] = 123; +/* 8:16 */waypoints[121].children[2] = 122; +/* 8:16 */waypoints[122] = spawnstruct(); +/* 8:16 */waypoints[122].origin = (1088.73, 704.4, -62.875); +/* 8:16 */waypoints[122].type = "stand"; +/* 8:16 */waypoints[122].children[0] = 121; +/* 8:16 */waypoints[122].children[1] = 123; +/* 8:16 */waypoints[122].children[2] = 124; +/* 8:16 */waypoints[122].children[3] = 125; +/* 8:16 */waypoints[122].children[4] = 174; +/* 8:16 */waypoints[123] = spawnstruct(); +/* 8:16 */waypoints[123].origin = (1042.14, 654.153, -62.875); +/* 8:16 */waypoints[123].type = "claymore"; +/* 8:16 */waypoints[123].children[0] = 121; +/* 8:16 */waypoints[123].children[1] = 122; +/* 8:16 */waypoints[123].angles = (68.8501, 80.6214, 0); +/* 8:16 */waypoints[124] = spawnstruct(); +/* 8:16 */waypoints[124].origin = (1184.62, 775.902, -62.875); +/* 8:16 */waypoints[124].type = "stand"; +/* 8:16 */waypoints[124].children[0] = 113; +/* 8:16 */waypoints[124].children[1] = 122; +/* 8:16 */waypoints[125] = spawnstruct(); +/* 8:16 */waypoints[125].origin = (942.051, 709.104, -59.3189); +/* 8:16 */waypoints[125].type = "stand"; +/* 8:16 */waypoints[125].children[0] = 122; +/* 8:16 */waypoints[125].children[1] = 113; +/* 8:16 */waypoints[125].children[2] = 126; +/* 8:16 */waypoints[125].children[3] = 127; +/* 8:16 */waypoints[126] = spawnstruct(); +/* 8:16 */waypoints[126].origin = (942.511, 154.359, -47.7491); +/* 8:16 */waypoints[126].type = "stand"; +/* 8:16 */waypoints[126].children[0] = 107; +/* 8:16 */waypoints[126].children[1] = 108; +/* 8:16 */waypoints[126].children[2] = 125; +/* 8:16 */waypoints[127] = spawnstruct(); +/* 8:16 */waypoints[127].origin = (674.893, 708.974, -44.0163); +/* 8:16 */waypoints[127].type = "stand"; +/* 8:16 */waypoints[127].children[0] = 128; +/* 8:16 */waypoints[127].children[1] = 125; +/* 8:16 */waypoints[127].children[2] = 130; +/* 8:16 */waypoints[127].children[3] = 134; +/* 8:16 */waypoints[128] = spawnstruct(); +/* 8:16 */waypoints[128].origin = (653.868, 170.705, -46.4655); +/* 8:16 */waypoints[128].type = "stand"; +/* 8:16 */waypoints[128].children[0] = 104; +/* 8:16 */waypoints[128].children[1] = 107; +/* 8:16 */waypoints[128].children[2] = 127; +/* 8:16 */waypoints[128].children[3] = 182; +/* 8:16 */waypoints[129] = spawnstruct(); +/* 8:16 */waypoints[129].origin = (684.483, 1059.44, -44.6783); +/* 8:16 */waypoints[129].type = "stand"; +/* 8:16 */waypoints[129].children[0] = 130; +/* 8:16 */waypoints[129].children[1] = 115; +/* 8:16 */waypoints[129].children[2] = 131; +/* 8:16 */waypoints[129].children[3] = 133; +/* 8:16 */waypoints[130] = spawnstruct(); +/* 8:16 */waypoints[130].origin = (678.537, 904.338, -43.8244); +/* 8:16 */waypoints[130].type = "stand"; +/* 8:16 */waypoints[130].children[0] = 127; +/* 8:16 */waypoints[130].children[1] = 129; +/* 8:16 */waypoints[130].children[2] = 134; +/* 8:16 */waypoints[131] = spawnstruct(); +/* 8:16 */waypoints[131].origin = (905.83, 1058.22, -40.24); +/* 8:16 */waypoints[131].type = "stand"; +/* 8:16 */waypoints[131].children[0] = 115; +/* 8:16 */waypoints[131].children[1] = 129; +/* 8:16 */waypoints[131].children[2] = 132; +/* 8:16 */waypoints[131].children[3] = 219; +/* 8:16 */waypoints[132] = spawnstruct(); +/* 8:16 */waypoints[132].origin = (878.72, 1429.92, -35.875); +/* 8:16 */waypoints[132].type = "stand"; +/* 8:16 */waypoints[132].children[0] = 131; +/* 8:16 */waypoints[132].children[1] = 135; +/* 8:16 */waypoints[132].children[2] = 136; +/* 8:16 */waypoints[132].children[3] = 139; +/* 8:16 */waypoints[132].children[4] = 138; +/* 8:16 */waypoints[132].children[5] = 143; +/* 8:16 */waypoints[132].children[6] = 219; +/* 8:16 */waypoints[133] = spawnstruct(); +/* 8:16 */waypoints[133].origin = (422.844, 1051.46, -55.0199); +/* 8:16 */waypoints[133].type = "stand"; +/* 8:16 */waypoints[133].children[0] = 134; +/* 8:16 */waypoints[133].children[1] = 129; +/* 8:16 */waypoints[133].children[2] = 135; +/* 8:16 */waypoints[133].children[3] = 175; +/* 8:16 */waypoints[134] = spawnstruct(); +/* 8:16 */waypoints[134].origin = (388.031, 870.158, -42.5841); +/* 8:16 */waypoints[134].type = "stand"; +/* 8:16 */waypoints[134].children[0] = 127; +/* 8:16 */waypoints[134].children[1] = 133; +/* 8:16 */waypoints[134].children[2] = 130; +/* 8:16 */waypoints[134].children[3] = 176; +/* 8:16 */waypoints[135] = spawnstruct(); +/* 8:16 */waypoints[135].origin = (438.293, 1151.92, -41.8002); +/* 8:16 */waypoints[135].type = "stand"; +/* 8:16 */waypoints[135].children[0] = 132; +/* 8:16 */waypoints[135].children[1] = 133; +/* 8:16 */waypoints[135].children[2] = 138; +/* 8:16 */waypoints[135].children[3] = 137; +/* 8:16 */waypoints[135].children[4] = 171; +/* 8:16 */waypoints[136] = spawnstruct(); +/* 8:16 */waypoints[136].origin = (746.714, 1199.89, -47.6712); +/* 8:16 */waypoints[136].type = "stand"; +/* 8:16 */waypoints[136].children[0] = 137; +/* 8:16 */waypoints[136].children[1] = 132; +/* 8:16 */waypoints[137] = spawnstruct(); +/* 8:16 */waypoints[137].origin = (271.454, 1210.1, -50.4037); +/* 8:16 */waypoints[137].type = "stand"; +/* 8:16 */waypoints[137].children[0] = 136; +/* 8:16 */waypoints[137].children[1] = 139; +/* 8:16 */waypoints[137].children[2] = 135; +/* 8:16 */waypoints[137].children[3] = 142; +/* 8:16 */waypoints[137].children[4] = 224; +/* 8:16 */waypoints[138] = spawnstruct(); +/* 8:16 */waypoints[138].origin = (488.008, 1393.85, -52.4807); +/* 8:16 */waypoints[138].type = "stand"; +/* 8:16 */waypoints[138].children[0] = 132; +/* 8:16 */waypoints[138].children[1] = 135; +/* 8:16 */waypoints[138].children[2] = 166; +/* 8:16 */waypoints[139] = spawnstruct(); +/* 8:16 */waypoints[139].origin = (265.738, 1413.57, -53.0188); +/* 8:16 */waypoints[139].type = "stand"; +/* 8:16 */waypoints[139].children[0] = 132; +/* 8:16 */waypoints[139].children[1] = 137; +/* 8:16 */waypoints[139].children[2] = 140; +/* 8:16 */waypoints[139].children[3] = 142; +/* 8:16 */waypoints[139].children[4] = 168; +/* 8:16 */waypoints[140] = spawnstruct(); +/* 8:16 */waypoints[140].origin = (308.18, 2009.54, 37.5852); +/* 8:16 */waypoints[140].type = "grenade"; +/* 8:16 */waypoints[140].children[0] = 141; +/* 8:16 */waypoints[140].children[1] = 139; +/* 8:16 */waypoints[140].angles = (-22.8363, 138.585, 0); +/* 8:16 */waypoints[141] = spawnstruct(); +/* 8:16 */waypoints[141].origin = (304.345, 2228.65, 68.312); +/* 8:16 */waypoints[141].type = "stand"; +/* 8:16 */waypoints[141].children[0] = 140; +/* 8:16 */waypoints[141].children[1] = 143; +/* 8:16 */waypoints[141].children[2] = 144; +/* 8:16 */waypoints[141].children[3] = 168; +/* 8:16 */waypoints[141].children[4] = 224; +/* 8:16 */waypoints[142] = spawnstruct(); +/* 8:16 */waypoints[142].origin = (350.162, 1285.37, -50.2771); +/* 8:16 */waypoints[142].type = "grenade"; +/* 8:16 */waypoints[142].children[0] = 137; +/* 8:16 */waypoints[142].children[1] = 139; +/* 8:16 */waypoints[142].angles = (-32.0593, -114.573, 0); +/* 8:16 */waypoints[143] = spawnstruct(); +/* 8:16 */waypoints[143].origin = (953.873, 2203.78, 32.0932); +/* 8:16 */waypoints[143].type = "stand"; +/* 8:16 */waypoints[143].children[0] = 132; +/* 8:16 */waypoints[143].children[1] = 141; +/* 8:16 */waypoints[143].children[2] = 146; +/* 8:16 */waypoints[143].children[3] = 218; +/* 8:16 */waypoints[143].children[4] = 219; +/* 8:16 */waypoints[143].children[5] = 150; +/* 8:16 */waypoints[143].children[6] = 162; +/* 8:16 */waypoints[144] = spawnstruct(); +/* 8:16 */waypoints[144].origin = (89.9964, 2220.65, 63.3616); +/* 8:16 */waypoints[144].type = "stand"; +/* 8:16 */waypoints[144].children[0] = 145; +/* 8:16 */waypoints[144].children[1] = 141; +/* 8:16 */waypoints[144].children[2] = 65; +/* 8:16 */waypoints[144].children[3] = 153; +/* 8:16 */waypoints[144].children[4] = 165; +/* 8:16 */waypoints[144].children[5] = 169; +/* 8:16 */waypoints[144].children[6] = 183; +/* 8:16 */waypoints[145] = spawnstruct(); +/* 8:16 */waypoints[145].origin = (-154.355, 2223.97, 66.7682); +/* 8:16 */waypoints[145].type = "stand"; +/* 8:16 */waypoints[145].children[0] = 70; +/* 8:16 */waypoints[145].children[1] = 144; +/* 8:16 */waypoints[145].children[2] = 162; +/* 8:16 */waypoints[145].children[3] = 169; +/* 8:16 */waypoints[145].children[4] = 183; +/* 8:16 */waypoints[146] = spawnstruct(); +/* 8:16 */waypoints[146].origin = (619.187, 2416.33, 46.6178); +/* 8:16 */waypoints[146].type = "stand"; +/* 8:16 */waypoints[146].children[0] = 143; +/* 8:16 */waypoints[146].children[1] = 62; +/* 8:16 */waypoints[146].children[2] = 150; +/* 8:16 */waypoints[146].children[3] = 162; +/* 8:16 */waypoints[147] = spawnstruct(); +/* 8:16 */waypoints[147].origin = (442.494, 2766.86, 84.9768); +/* 8:16 */waypoints[147].type = "stand"; +/* 8:16 */waypoints[147].children[0] = 148; +/* 8:16 */waypoints[147].children[1] = 62; +/* 8:16 */waypoints[147].children[2] = 150; +/* 8:16 */waypoints[147].children[3] = 151; +/* 8:16 */waypoints[148] = spawnstruct(); +/* 8:16 */waypoints[148].origin = (266.568, 2818.29, 88.125); +/* 8:16 */waypoints[148].type = "stand"; +/* 8:16 */waypoints[148].children[0] = 149; +/* 8:16 */waypoints[148].children[1] = 147; +/* 8:16 */waypoints[148].children[2] = 151; +/* 8:16 */waypoints[149] = spawnstruct(); +/* 8:16 */waypoints[149].origin = (229.067, 3016.83, 88.125); +/* 8:16 */waypoints[149].type = "stand"; +/* 8:16 */waypoints[149].children[0] = 65; +/* 8:16 */waypoints[149].children[1] = 148; +/* 8:16 */waypoints[149].children[2] = 151; +/* 8:16 */waypoints[150] = spawnstruct(); +/* 8:16 */waypoints[150].origin = (554.239, 2770.81, 75.8756); +/* 8:16 */waypoints[150].type = "stand"; +/* 8:16 */waypoints[150].children[0] = 147; +/* 8:16 */waypoints[150].children[1] = 146; +/* 8:16 */waypoints[150].children[2] = 62; +/* 8:16 */waypoints[150].children[3] = 143; +/* 8:16 */waypoints[151] = spawnstruct(); +/* 8:16 */waypoints[151].origin = (340.686, 2694.65, 88.125); +/* 8:16 */waypoints[151].type = "stand"; +/* 8:16 */waypoints[151].children[0] = 148; +/* 8:16 */waypoints[151].children[1] = 149; +/* 8:16 */waypoints[151].children[2] = 147; +/* 8:16 */waypoints[151].children[3] = 152; +/* 8:16 */waypoints[152] = spawnstruct(); +/* 8:16 */waypoints[152].origin = (326.877, 2391.25, 88.125); +/* 8:16 */waypoints[152].type = "stand"; +/* 8:16 */waypoints[152].children[0] = 153; +/* 8:16 */waypoints[152].children[1] = 151; +/* 8:16 */waypoints[152].children[2] = 154; +/* 8:16 */waypoints[153] = spawnstruct(); +/* 8:16 */waypoints[153].origin = (87.3649, 2389.64, 70.7783); +/* 8:16 */waypoints[153].type = "stand"; +/* 8:16 */waypoints[153].children[0] = 144; +/* 8:16 */waypoints[153].children[1] = 65; +/* 8:16 */waypoints[153].children[2] = 152; +/* 8:16 */waypoints[154] = spawnstruct(); +/* 8:16 */waypoints[154].origin = (467.078, 2355.09, 88.125); +/* 8:16 */waypoints[154].type = "stand"; +/* 8:16 */waypoints[154].children[0] = 155; +/* 8:16 */waypoints[154].children[1] = 152; +/* 8:16 */waypoints[155] = spawnstruct(); +/* 8:16 */waypoints[155].origin = (467.016, 2558.85, 224.125); +/* 8:16 */waypoints[155].type = "stand"; +/* 8:16 */waypoints[155].children[0] = 154; +/* 8:16 */waypoints[155].children[1] = 156; +/* 8:16 */waypoints[156] = spawnstruct(); +/* 8:16 */waypoints[156].origin = (314.572, 2620.66, 224.125); +/* 8:16 */waypoints[156].type = "stand"; +/* 8:16 */waypoints[156].children[0] = 155; +/* 8:16 */waypoints[156].children[1] = 157; +/* 8:16 */waypoints[156].children[2] = 160; +/* 8:16 */waypoints[156].children[3] = 161; +/* 8:16 */waypoints[157] = spawnstruct(); +/* 8:16 */waypoints[157].origin = (319.156, 2349.8, 224.125); +/* 8:16 */waypoints[157].type = "stand"; +/* 8:16 */waypoints[157].children[0] = 156; +/* 8:16 */waypoints[157].children[1] = 158; +/* 8:16 */waypoints[158] = spawnstruct(); +/* 8:16 */waypoints[158].origin = (239.403, 2336.69, 224.125); +/* 8:16 */waypoints[158].type = "stand"; +/* 8:16 */waypoints[158].children[0] = 157; +/* 8:16 */waypoints[158].children[1] = 159; +/* 8:16 */waypoints[159] = spawnstruct(); +/* 8:16 */waypoints[159].origin = (217.343, 2447.23, 224.125); +/* 8:16 */waypoints[159].type = "stand"; +/* 8:16 */waypoints[159].children[0] = 158; +/* 8:16 */waypoints[159].children[1] = 160; +/* 8:16 */waypoints[160] = spawnstruct(); +/* 8:16 */waypoints[160].origin = (312.251, 2459.9, 224.125); +/* 8:16 */waypoints[160].type = "stand"; +/* 8:16 */waypoints[160].children[0] = 159; +/* 8:16 */waypoints[160].children[1] = 156; +/* 8:16 */waypoints[161] = spawnstruct(); +/* 8:16 */waypoints[161].origin = (205.632, 2637.17, 224.125); +/* 8:16 */waypoints[161].type = "grenade"; +/* 8:16 */waypoints[161].children[0] = 156; +/* 8:16 */waypoints[161].angles = (-14.7503, 168.638, 0); +/* 8:16 */waypoints[162] = spawnstruct(); +/* 8:16 */waypoints[162].origin = (585.457, 2225.22, 36.0338); +/* 8:16 */waypoints[162].type = "stand"; +/* 8:16 */waypoints[162].children[0] = 146; +/* 8:16 */waypoints[162].children[1] = 145; +/* 8:16 */waypoints[162].children[2] = 225; +/* 8:16 */waypoints[162].children[3] = 143; +/* 8:16 */waypoints[163] = spawnstruct(); +/* 8:16 */waypoints[163].origin = (-1031.88, 3072.88, 125.103); +/* 8:16 */waypoints[163].type = "crouch"; +/* 8:16 */waypoints[163].children[0] = 164; +/* 8:16 */waypoints[163].angles = (4.08571, -81.0919, 0); +/* 8:16 */waypoints[164] = spawnstruct(); +/* 8:16 */waypoints[164].origin = (-1015.17, 2869.81, 83.6581); +/* 8:16 */waypoints[164].type = "stand"; +/* 8:16 */waypoints[164].children[0] = 163; +/* 8:16 */waypoints[164].children[1] = 71; +/* 8:16 */waypoints[165] = spawnstruct(); +/* 8:16 */waypoints[165].origin = (166.095, 2015.78, 56.6904); +/* 8:16 */waypoints[165].type = "stand"; +/* 8:16 */waypoints[165].children[0] = 166; +/* 8:16 */waypoints[165].children[1] = 144; +/* 8:16 */waypoints[165].children[2] = 169; +/* 8:16 */waypoints[165].children[3] = 170; +/* 8:16 */waypoints[166] = spawnstruct(); +/* 8:16 */waypoints[166].origin = (151.404, 1547.24, -40.9496); +/* 8:16 */waypoints[166].type = "stand"; +/* 8:16 */waypoints[166].children[0] = 138; +/* 8:16 */waypoints[166].children[1] = 168; +/* 8:16 */waypoints[166].children[2] = 167; +/* 8:16 */waypoints[166].children[3] = 165; +/* 8:16 */waypoints[166].children[4] = 170; +/* 8:16 */waypoints[166].children[5] = 175; +/* 8:16 */waypoints[167] = spawnstruct(); +/* 8:16 */waypoints[167].origin = (-53.5579, 1571.05, -43.8256); +/* 8:16 */waypoints[167].type = "stand"; +/* 8:16 */waypoints[167].children[0] = 166; +/* 8:16 */waypoints[167].children[1] = 169; +/* 8:16 */waypoints[167].children[2] = 170; +/* 8:16 */waypoints[167].children[3] = 177; +/* 8:16 */waypoints[168] = spawnstruct(); +/* 8:16 */waypoints[168].origin = (269.329, 1549.06, -42.9149); +/* 8:16 */waypoints[168].type = "stand"; +/* 8:16 */waypoints[168].children[0] = 139; +/* 8:16 */waypoints[168].children[1] = 166; +/* 8:16 */waypoints[168].children[2] = 177; +/* 8:16 */waypoints[168].children[3] = 141; +/* 8:16 */waypoints[169] = spawnstruct(); +/* 8:16 */waypoints[169].origin = (-142.724, 1992.47, 48.7753); +/* 8:16 */waypoints[169].type = "stand"; +/* 8:16 */waypoints[169].children[0] = 145; +/* 8:16 */waypoints[169].children[1] = 165; +/* 8:16 */waypoints[169].children[2] = 144; +/* 8:16 */waypoints[169].children[3] = 167; +/* 8:16 */waypoints[169].children[4] = 177; +/* 8:16 */waypoints[170] = spawnstruct(); +/* 8:16 */waypoints[170].origin = (154.799, 1740.14, 10.9734); +/* 8:16 */waypoints[170].type = "stand"; +/* 8:16 */waypoints[170].children[0] = 167; +/* 8:16 */waypoints[170].children[1] = 165; +/* 8:16 */waypoints[170].children[2] = 166; +/* 8:16 */waypoints[170].children[3] = 177; +/* 8:16 */waypoints[171] = spawnstruct(); +/* 8:16 */waypoints[171].origin = (356.158, 1151.13, -47.7446); +/* 8:16 */waypoints[171].type = "claymore"; +/* 8:16 */waypoints[171].children[0] = 135; +/* 8:16 */waypoints[171].angles = (54.8425, -20.4364, 0); +/* 8:16 */waypoints[172] = spawnstruct(); +/* 8:16 */waypoints[172].origin = (1100.7, 870.616, 93.125); +/* 8:16 */waypoints[172].type = "claymore"; +/* 8:16 */waypoints[172].children[0] = 116; +/* 8:16 */waypoints[172].angles = (46.2018, -32.1423, 0); +/* 8:16 */waypoints[173] = spawnstruct(); +/* 8:16 */waypoints[173].origin = (1429.82, 718.62, 93.125); +/* 8:16 */waypoints[173].type = "stand"; +/* 8:16 */waypoints[173].children[0] = 118; +/* 8:16 */waypoints[174] = spawnstruct(); +/* 8:16 */waypoints[174].origin = (1229.68, 671.289, -62.875); +/* 8:16 */waypoints[174].type = "stand"; +/* 8:16 */waypoints[174].children[0] = 113; +/* 8:16 */waypoints[174].children[1] = 122; +/* 8:16 */waypoints[175] = spawnstruct(); +/* 8:16 */waypoints[175].origin = (107.705, 1060.07, -52.4566); +/* 8:16 */waypoints[175].type = "stand"; +/* 8:16 */waypoints[175].children[0] = 176; +/* 8:16 */waypoints[175].children[1] = 133; +/* 8:16 */waypoints[175].children[2] = 166; +/* 8:16 */waypoints[175].children[3] = 178; +/* 8:16 */waypoints[176] = spawnstruct(); +/* 8:16 */waypoints[176].origin = (123.548, 781.168, -65.6038); +/* 8:16 */waypoints[176].type = "stand"; +/* 8:16 */waypoints[176].children[0] = 134; +/* 8:16 */waypoints[176].children[1] = 175; +/* 8:16 */waypoints[176].children[2] = 179; +/* 8:16 */waypoints[176].children[3] = 180; +/* 8:16 */waypoints[176].children[4] = 181; +/* 8:16 */waypoints[176].children[5] = 183; +/* 8:16 */waypoints[177] = spawnstruct(); +/* 8:16 */waypoints[177].origin = (-163.6, 1718.79, -7.8094); +/* 8:16 */waypoints[177].type = "stand"; +/* 8:16 */waypoints[177].children[0] = 167; +/* 8:16 */waypoints[177].children[1] = 169; +/* 8:16 */waypoints[177].children[2] = 170; +/* 8:16 */waypoints[177].children[3] = 168; +/* 8:16 */waypoints[177].children[4] = 178; +/* 8:16 */waypoints[177].children[5] = 183; +/* 8:16 */waypoints[177].children[6] = 213; +/* 8:16 */waypoints[178] = spawnstruct(); +/* 8:16 */waypoints[178].origin = (-124.795, 1017.75, -60.9058); +/* 8:16 */waypoints[178].type = "stand"; +/* 8:16 */waypoints[178].children[0] = 177; +/* 8:16 */waypoints[178].children[1] = 175; +/* 8:16 */waypoints[178].children[2] = 179; +/* 8:16 */waypoints[179] = spawnstruct(); +/* 8:16 */waypoints[179].origin = (-209.561, 801.027, -73.9227); +/* 8:16 */waypoints[179].type = "stand"; +/* 8:16 */waypoints[179].children[0] = 176; +/* 8:16 */waypoints[179].children[1] = 178; +/* 8:16 */waypoints[179].children[2] = 184; +/* 8:16 */waypoints[179].children[3] = 186; +/* 8:16 */waypoints[179].children[4] = 214; +/* 8:16 */waypoints[180] = spawnstruct(); +/* 8:16 */waypoints[180].origin = (-203.335, 357.852, -55.275); +/* 8:16 */waypoints[180].type = "stand"; +/* 8:16 */waypoints[180].children[0] = 91; +/* 8:16 */waypoints[180].children[1] = 105; +/* 8:16 */waypoints[180].children[2] = 176; +/* 8:16 */waypoints[180].children[3] = 186; +/* 8:16 */waypoints[180].children[4] = 181; +/* 8:16 */waypoints[180].children[5] = 229; +/* 8:16 */waypoints[181] = spawnstruct(); +/* 8:16 */waypoints[181].origin = (307.955, 586.435, -40.732); +/* 8:16 */waypoints[181].type = "stand"; +/* 8:16 */waypoints[181].children[0] = 182; +/* 8:16 */waypoints[181].children[1] = 176; +/* 8:16 */waypoints[181].children[2] = 180; +/* 8:16 */waypoints[182] = spawnstruct(); +/* 8:16 */waypoints[182].origin = (541.437, 164.549, -44.5402); +/* 8:16 */waypoints[182].type = "stand"; +/* 8:16 */waypoints[182].children[0] = 128; +/* 8:16 */waypoints[182].children[1] = 104; +/* 8:16 */waypoints[182].children[2] = 181; +/* 8:16 */waypoints[183] = spawnstruct(); +/* 8:16 */waypoints[183].origin = (-33.9968, 2225.42, 66.0158); +/* 8:16 */waypoints[183].type = "stand"; +/* 8:16 */waypoints[183].children[0] = 144; +/* 8:16 */waypoints[183].children[1] = 145; +/* 8:16 */waypoints[183].children[2] = 177; +/* 8:16 */waypoints[183].children[3] = 176; +/* 8:16 */waypoints[184] = spawnstruct(); +/* 8:16 */waypoints[184].origin = (-641.237, 818.032, -39.7681); +/* 8:16 */waypoints[184].type = "stand"; +/* 8:16 */waypoints[184].children[0] = 179; +/* 8:16 */waypoints[184].children[1] = 185; +/* 8:16 */waypoints[184].children[2] = 188; +/* 8:16 */waypoints[184].children[3] = 209; +/* 8:16 */waypoints[184].children[4] = 211; +/* 8:16 */waypoints[185] = spawnstruct(); +/* 8:16 */waypoints[185].origin = (-611.246, 737.136, -39.8149); +/* 8:16 */waypoints[185].type = "grenade"; +/* 8:16 */waypoints[185].children[0] = 184; +/* 8:16 */waypoints[185].children[1] = 188; +/* 8:16 */waypoints[185].children[2] = 206; +/* 8:16 */waypoints[185].children[3] = 209; +/* 8:16 */waypoints[185].angles = (-27.8131, -46.6058, 0); +/* 8:16 */waypoints[186] = spawnstruct(); +/* 8:16 */waypoints[186].origin = (-216.77, 559.779, -42.2847); +/* 8:16 */waypoints[186].type = "stand"; +/* 8:16 */waypoints[186].children[0] = 179; +/* 8:16 */waypoints[186].children[1] = 180; +/* 8:16 */waypoints[186].children[2] = 188; +/* 8:16 */waypoints[187] = spawnstruct(); +/* 8:16 */waypoints[187].origin = (-365.542, 564.766, -39.875); +/* 8:16 */waypoints[187].type = "stand"; +/* 8:16 */waypoints[187].children[0] = 189; +/* 8:16 */waypoints[188] = spawnstruct(); +/* 8:16 */waypoints[188].origin = (-603.463, 579.998, -37.1172); +/* 8:16 */waypoints[188].type = "stand"; +/* 8:16 */waypoints[188].children[0] = 185; +/* 8:16 */waypoints[188].children[1] = 184; +/* 8:16 */waypoints[188].children[2] = 186; +/* 8:16 */waypoints[188].children[3] = 206; +/* 8:16 */waypoints[189] = spawnstruct(); +/* 8:16 */waypoints[189].origin = (-338.245, 412.813, -39.875); +/* 8:16 */waypoints[189].type = "stand"; +/* 8:16 */waypoints[189].children[0] = 187; +/* 8:16 */waypoints[189].children[1] = 190; +/* 8:16 */waypoints[190] = spawnstruct(); +/* 8:16 */waypoints[190].origin = (-456.201, 411.905, -39.875); +/* 8:16 */waypoints[190].type = "stand"; +/* 8:16 */waypoints[190].children[0] = 189; +/* 8:16 */waypoints[190].children[1] = 191; +/* 8:16 */waypoints[190].children[2] = 192; +/* 8:16 */waypoints[190].children[3] = 197; +/* 8:16 */waypoints[191] = spawnstruct(); +/* 8:16 */waypoints[191].origin = (-410.56, 153.545, -39.8756); +/* 8:16 */waypoints[191].type = "stand"; +/* 8:16 */waypoints[191].children[0] = 190; +/* 8:16 */waypoints[191].children[1] = 192; +/* 8:16 */waypoints[191].children[2] = 193; +/* 8:16 */waypoints[191].children[3] = 223; +/* 8:16 */waypoints[191].children[4] = 229; +/* 8:16 */waypoints[192] = spawnstruct(); +/* 8:16 */waypoints[192].origin = (-463.263, 64.3822, -39.875); +/* 8:16 */waypoints[192].type = "stand"; +/* 8:16 */waypoints[192].children[0] = 190; +/* 8:16 */waypoints[192].children[1] = 191; +/* 8:16 */waypoints[192].children[2] = 193; +/* 8:16 */waypoints[192].children[3] = 222; +/* 8:16 */waypoints[193] = spawnstruct(); +/* 8:16 */waypoints[193].origin = (-684.303, 84.9163, -51.2196); +/* 8:16 */waypoints[193].type = "stand"; +/* 8:16 */waypoints[193].children[0] = 192; +/* 8:16 */waypoints[193].children[1] = 191; +/* 8:16 */waypoints[193].children[2] = 194; +/* 8:16 */waypoints[193].children[3] = 207; +/* 8:16 */waypoints[193].children[4] = 208; +/* 8:16 */waypoints[193].children[5] = 220; +/* 8:16 */waypoints[194] = spawnstruct(); +/* 8:16 */waypoints[194].origin = (-1001.18, 115.247, -17.2669); +/* 8:16 */waypoints[194].type = "stand"; +/* 8:16 */waypoints[194].children[0] = 84; +/* 8:16 */waypoints[194].children[1] = 193; +/* 8:16 */waypoints[194].children[2] = 85; +/* 8:16 */waypoints[194].children[3] = 86; +/* 8:16 */waypoints[194].children[4] = 208; +/* 8:16 */waypoints[195] = spawnstruct(); +/* 8:16 */waypoints[195].origin = (1062.94, 694.604, 93.125); +/* 8:16 */waypoints[195].type = "stand"; +/* 8:16 */waypoints[195].children[0] = 196; +/* 8:16 */waypoints[195].children[1] = 117; +/* 8:16 */waypoints[195].children[2] = 116; +/* 8:16 */waypoints[196] = spawnstruct(); +/* 8:16 */waypoints[196].origin = (1059.3, 606.906, 93.125); +/* 8:16 */waypoints[196].type = "stand"; +/* 8:16 */waypoints[196].children[0] = 195; +/* 8:16 */waypoints[196].children[1] = 117; +/* 8:16 */waypoints[196].children[2] = 116; +/* 8:16 */waypoints[197] = spawnstruct(); +/* 8:16 */waypoints[197].origin = (-551.951, 447.14, -39.875); +/* 8:16 */waypoints[197].type = "stand"; +/* 8:16 */waypoints[197].children[0] = 190; +/* 8:16 */waypoints[197].children[1] = 198; +/* 8:16 */waypoints[198] = spawnstruct(); +/* 8:16 */waypoints[198].origin = (-553.324, 202.134, 96.125); +/* 8:16 */waypoints[198].type = "stand"; +/* 8:16 */waypoints[198].children[0] = 197; +/* 8:16 */waypoints[198].children[1] = 199; +/* 8:16 */waypoints[198].children[2] = 200; +/* 8:16 */waypoints[199] = spawnstruct(); +/* 8:16 */waypoints[199].origin = (-496.538, 219.59, 96.125); +/* 8:16 */waypoints[199].type = "claymore"; +/* 8:16 */waypoints[199].children[0] = 198; +/* 8:16 */waypoints[199].children[1] = 205; +/* 8:16 */waypoints[199].angles = (63.4778, -151.899, 0); +/* 8:16 */waypoints[200] = spawnstruct(); +/* 8:16 */waypoints[200].origin = (-449.963, -40.1001, 96.125); +/* 8:16 */waypoints[200].type = "stand"; +/* 8:16 */waypoints[200].children[0] = 198; +/* 8:16 */waypoints[200].children[1] = 201; +/* 8:16 */waypoints[201] = spawnstruct(); +/* 8:16 */waypoints[201].origin = (-431.857, 406.718, 96.125); +/* 8:16 */waypoints[201].type = "stand"; +/* 8:16 */waypoints[201].children[0] = 200; +/* 8:16 */waypoints[201].children[1] = 202; +/* 8:16 */waypoints[202] = spawnstruct(); +/* 8:16 */waypoints[202].origin = (-355.195, 421.175, 96.125); +/* 8:16 */waypoints[202].type = "stand"; +/* 8:16 */waypoints[202].children[0] = 201; +/* 8:16 */waypoints[202].children[1] = 203; +/* 8:16 */waypoints[202].children[2] = 205; +/* 8:16 */waypoints[203] = spawnstruct(); +/* 8:16 */waypoints[203].origin = (-304.083, 600.039, 96.125); +/* 8:16 */waypoints[203].type = "climb"; +/* 8:16 */waypoints[203].children[0] = 202; +/* 8:16 */waypoints[203].children[1] = 205; +/* 8:16 */waypoints[203].angles = (24.9872, 15.9503, 0); +/* 8:16 */waypoints[204] = spawnstruct(); +/* 8:16 */waypoints[204].origin = (-432.875, 538.037, 96.125); +/* 8:16 */waypoints[204].type = "climb"; +/* 8:16 */waypoints[204].children[0] = 205; +/* 8:16 */waypoints[204].angles = (18.1152, 152.692, 0); +/* 8:16 */waypoints[205] = spawnstruct(); +/* 8:16 */waypoints[205].origin = (-351.277, 486.523, 96.125); +/* 8:16 */waypoints[205].type = "stand"; +/* 8:16 */waypoints[205].children[0] = 202; +/* 8:16 */waypoints[205].children[1] = 204; +/* 8:16 */waypoints[205].children[2] = 199; +/* 8:16 */waypoints[205].children[3] = 203; +/* 8:16 */waypoints[206] = spawnstruct(); +/* 8:16 */waypoints[206].origin = (-890.588, 465.779, -21.8771); +/* 8:16 */waypoints[206].type = "stand"; +/* 8:16 */waypoints[206].children[0] = 188; +/* 8:16 */waypoints[206].children[1] = 185; +/* 8:16 */waypoints[206].children[2] = 207; +/* 8:16 */waypoints[206].children[3] = 209; +/* 8:16 */waypoints[206].children[4] = 220; +/* 8:16 */waypoints[207] = spawnstruct(); +/* 8:16 */waypoints[207].origin = (-864.159, 300.625, -39.875); +/* 8:16 */waypoints[207].type = "stand"; +/* 8:16 */waypoints[207].children[0] = 84; +/* 8:16 */waypoints[207].children[1] = 193; +/* 8:16 */waypoints[207].children[2] = 206; +/* 8:16 */waypoints[207].children[3] = 208; +/* 8:16 */waypoints[208] = spawnstruct(); +/* 8:16 */waypoints[208].origin = (-868.375, 133.484, -38.8872); +/* 8:16 */waypoints[208].type = "stand"; +/* 8:16 */waypoints[208].children[0] = 207; +/* 8:16 */waypoints[208].children[1] = 194; +/* 8:16 */waypoints[208].children[2] = 193; +/* 8:16 */waypoints[209] = spawnstruct(); +/* 8:16 */waypoints[209].origin = (-887.026, 888.151, -31.875); +/* 8:16 */waypoints[209].type = "stand"; +/* 8:16 */waypoints[209].children[0] = 206; +/* 8:16 */waypoints[209].children[1] = 184; +/* 8:16 */waypoints[209].children[2] = 185; +/* 8:16 */waypoints[209].children[3] = 210; +/* 8:16 */waypoints[210] = spawnstruct(); +/* 8:16 */waypoints[210].origin = (-884.477, 1268.02, -31.875); +/* 8:16 */waypoints[210].type = "stand"; +/* 8:16 */waypoints[210].children[0] = 211; +/* 8:16 */waypoints[210].children[1] = 212; +/* 8:16 */waypoints[210].children[2] = 209; +/* 8:16 */waypoints[210].children[3] = 215; +/* 8:16 */waypoints[211] = spawnstruct(); +/* 8:16 */waypoints[211].origin = (-692.927, 1418.15, -44.2043); +/* 8:16 */waypoints[211].type = "stand"; +/* 8:16 */waypoints[211].children[0] = 210; +/* 8:16 */waypoints[211].children[1] = 184; +/* 8:16 */waypoints[211].children[2] = 213; +/* 8:16 */waypoints[211].children[3] = 221; +/* 8:16 */waypoints[212] = spawnstruct(); +/* 8:16 */waypoints[212].origin = (-624.833, 1254.26, -50.4405); +/* 8:16 */waypoints[212].type = "stand"; +/* 8:16 */waypoints[212].children[0] = 210; +/* 8:16 */waypoints[212].children[1] = 215; +/* 8:16 */waypoints[213] = spawnstruct(); +/* 8:16 */waypoints[213].origin = (-578.681, 1710.69, -5.77777); +/* 8:16 */waypoints[213].type = "stand"; +/* 8:16 */waypoints[213].children[0] = 177; +/* 8:16 */waypoints[213].children[1] = 211; +/* 8:16 */waypoints[213].children[2] = 214; +/* 8:16 */waypoints[213].children[3] = 221; +/* 8:16 */waypoints[214] = spawnstruct(); +/* 8:16 */waypoints[214].origin = (-539.28, 880.354, -59.586); +/* 8:16 */waypoints[214].type = "stand"; +/* 8:16 */waypoints[214].children[0] = 179; +/* 8:16 */waypoints[214].children[1] = 213; +/* 8:16 */waypoints[215] = spawnstruct(); +/* 8:16 */waypoints[215].origin = (-494.775, 1324.51, -37.4293); +/* 8:16 */waypoints[215].type = "claymore"; +/* 8:16 */waypoints[215].children[0] = 210; +/* 8:16 */waypoints[215].children[1] = 212; +/* 8:16 */waypoints[215].angles = (53.2025, 149.033, 0); +/* 8:16 */waypoints[216] = spawnstruct(); +/* 8:16 */waypoints[216].origin = (-822.46, 693.992, 96.125); +/* 8:16 */waypoints[216].type = "stand"; +/* 8:16 */waypoints[216].children[0] = 82; +/* 8:16 */waypoints[216].children[1] = 80; +/* 8:16 */waypoints[217] = spawnstruct(); +/* 8:16 */waypoints[217].origin = (1172.37, 1641.69, -36.9459); +/* 8:16 */waypoints[217].type = "stand"; +/* 8:16 */waypoints[217].children[0] = 35; +/* 8:16 */waypoints[217].children[1] = 218; +/* 8:16 */waypoints[217].children[2] = 219; +/* 8:16 */waypoints[217].children[3] = 51; +/* 8:16 */waypoints[218] = spawnstruct(); +/* 8:16 */waypoints[218].origin = (1148.79, 1996.05, 28.4539); +/* 8:16 */waypoints[218].type = "stand"; +/* 8:16 */waypoints[218].children[0] = 217; +/* 8:16 */waypoints[218].children[1] = 143; +/* 8:16 */waypoints[218].children[2] = 51; +/* 8:16 */waypoints[218].children[3] = 35; +/* 8:16 */waypoints[219] = spawnstruct(); +/* 8:16 */waypoints[219].origin = (932.19, 1658.21, -39.9402); +/* 8:16 */waypoints[219].type = "stand"; +/* 8:16 */waypoints[219].children[0] = 131; +/* 8:16 */waypoints[219].children[1] = 132; +/* 8:16 */waypoints[219].children[2] = 217; +/* 8:16 */waypoints[219].children[3] = 143; +/* 8:16 */waypoints[219].children[4] = 51; +/* 8:16 */waypoints[220] = spawnstruct(); +/* 8:16 */waypoints[220].origin = (-692.598, 375.191, -37.1139); +/* 8:16 */waypoints[220].type = "grenade"; +/* 8:16 */waypoints[220].children[0] = 193; +/* 8:16 */waypoints[220].children[1] = 206; +/* 8:16 */waypoints[220].angles = (-20.3095, 84.1425, 0); +/* 8:16 */waypoints[221] = spawnstruct(); +/* 8:16 */waypoints[221].origin = (-784.811, 1741.46, 1.46377); +/* 8:16 */waypoints[221].type = "grenade"; +/* 8:16 */waypoints[221].children[0] = 211; +/* 8:16 */waypoints[221].children[1] = 213; +/* 8:16 */waypoints[221].angles = (-52.049, 81.8134, 0); +/* 8:16 */waypoints[222] = spawnstruct(); +/* 8:16 */waypoints[222].origin = (-563.827, -28.0893, -39.082); +/* 8:16 */waypoints[222].type = "claymore"; +/* 8:16 */waypoints[222].children[0] = 192; +/* 8:16 */waypoints[222].angles = (54.8315, 76.3257, 0); +/* 8:16 */waypoints[223] = spawnstruct(); +/* 8:16 */waypoints[223].origin = (-408.711, 101.12, -39.875); +/* 8:16 */waypoints[223].type = "claymore"; +/* 8:16 */waypoints[223].children[0] = 191; +/* 8:16 */waypoints[223].angles = (61.1762, 83.9447, 0); +/* 8:16 */waypoints[224] = spawnstruct(); +/* 8:16 */waypoints[224].origin = (310.969, 1751.66, 4.35644); +/* 8:16 */waypoints[224].type = "grenade"; +/* 8:16 */waypoints[224].children[0] = 137; +/* 8:16 */waypoints[224].children[1] = 141; +/* 8:16 */waypoints[224].angles = (-24.0118, 88.7897, 0.0769043); +/* 8:16 */waypoints[225] = spawnstruct(); +/* 8:16 */waypoints[225].origin = (604.96, 2151.04, 31.9431); +/* 8:16 */waypoints[225].type = "claymore"; +/* 8:16 */waypoints[225].children[0] = 162; +/* 8:16 */waypoints[225].angles = (59.2535, 113.086, 0); +/* 8:16 */waypoints[226] = spawnstruct(); +/* 8:16 */waypoints[226].origin = (-793.087, 1959.99, 92.977); +/* 8:16 */waypoints[226].type = "claymore"; +/* 8:16 */waypoints[226].children[0] = 68; +/* 8:16 */waypoints[226].angles = (49.635, 150.604, 0); +/* 8:16 */waypoints[227] = spawnstruct(); +/* 8:16 */waypoints[227].origin = (1137.64, -1058.95, -44.2483); +/* 8:16 */waypoints[227].type = "stand"; +/* 8:16 */waypoints[227].children[0] = 1; +/* 8:16 */waypoints[227].children[1] = 11; +/* 8:16 */waypoints[227].children[2] = 93; +/* 8:16 */waypoints[228] = spawnstruct(); +/* 8:16 */waypoints[228].origin = (1732.11, 821.857, -51.7855); +/* 8:16 */waypoints[228].type = "stand"; +/* 8:16 */waypoints[228].children[0] = 22; +/* 8:16 */waypoints[228].children[1] = 33; +/* 8:16 */waypoints[229] = spawnstruct(); +/* 8:16 */waypoints[229].origin = (-276.362, 153.928, -50.3889); +/* 8:16 */waypoints[229].type = "stand"; +/* 8:16 */waypoints[229].children[0] = 180; +/* 8:16 */waypoints[229].children[1] = 191; +/* 8:16 */waypoints[229].children[2] = 106; +/* 8:16 */return waypoints; +} \ No newline at end of file diff --git a/raw/maps/mp/bots/waypoints/bootleg.gsc b/raw/maps/mp/bots/waypoints/bootleg.gsc new file mode 100644 index 0000000..aec437f --- /dev/null +++ b/raw/maps/mp/bots/waypoints/bootleg.gsc @@ -0,0 +1,950 @@ +bootleg() +{ +/* 1:57 */waypoints = []; +/* 1:57 */waypoints[0] = spawnstruct(); +/* 1:57 */waypoints[0].origin = (-1713.67, -1428.59, 2.52601); +/* 1:57 */waypoints[0].type = "stand"; +/* 1:57 */waypoints[0].children[0] = 1; +/* 1:57 */waypoints[0].children[1] = 2; +/* 1:57 */waypoints[0].children[2] = 126; +/* 1:57 */waypoints[1] = spawnstruct(); +/* 1:57 */waypoints[1].origin = (-1825.26, -886.131, 46.4531); +/* 1:57 */waypoints[1].type = "stand"; +/* 1:57 */waypoints[1].children[0] = 0; +/* 1:57 */waypoints[1].children[1] = 46; +/* 1:57 */waypoints[1].children[2] = 124; +/* 1:57 */waypoints[1].children[3] = 127; +/* 1:57 */waypoints[1].children[4] = 131; +/* 1:57 */waypoints[2] = spawnstruct(); +/* 1:57 */waypoints[2].origin = (-1303.12, -1450.94, 2.125); +/* 1:57 */waypoints[2].type = "stand"; +/* 1:57 */waypoints[2].children[0] = 0; +/* 1:57 */waypoints[2].children[1] = 8; +/* 1:57 */waypoints[2].children[2] = 126; +/* 1:57 */waypoints[2].children[3] = 149; +/* 1:57 */waypoints[3] = spawnstruct(); +/* 1:57 */waypoints[3].origin = (-831.183, -1432.64, -1.15982); +/* 1:57 */waypoints[3].type = "stand"; +/* 1:57 */waypoints[3].children[0] = 8; +/* 1:57 */waypoints[3].children[1] = 15; +/* 1:57 */waypoints[3].children[2] = 27; +/* 1:57 */waypoints[4] = spawnstruct(); +/* 1:57 */waypoints[4].origin = (-836.145, -1826.33, 0.125); +/* 1:57 */waypoints[4].type = "stand"; +/* 1:57 */waypoints[4].children[0] = 5; +/* 1:57 */waypoints[4].children[1] = 12; +/* 1:57 */waypoints[4].children[2] = 15; +/* 1:57 */waypoints[4].children[3] = 9; +/* 1:57 */waypoints[5] = spawnstruct(); +/* 1:57 */waypoints[5].origin = (-1290.74, -1809.46, 4.125); +/* 1:57 */waypoints[5].type = "stand"; +/* 1:57 */waypoints[5].children[0] = 4; +/* 1:57 */waypoints[5].children[1] = 6; +/* 1:57 */waypoints[5].children[2] = 132; +/* 1:57 */waypoints[6] = spawnstruct(); +/* 1:57 */waypoints[6].origin = (-1048.81, -1543.13, 4.125); +/* 1:57 */waypoints[6].type = "climb"; +/* 1:57 */waypoints[6].children[0] = 7; +/* 1:57 */waypoints[6].children[1] = 5; +/* 1:57 */waypoints[6].angles = (54.2438, 95.1801, 0); +/* 1:57 */waypoints[7] = spawnstruct(); +/* 1:57 */waypoints[7].origin = (-1057.91, -1504.88, 5.24468); +/* 1:57 */waypoints[7].type = "climb"; +/* 1:57 */waypoints[7].children[0] = 8; +/* 1:57 */waypoints[7].children[1] = 6; +/* 1:57 */waypoints[7].angles = (49.4428, -86.4514, 0); +/* 1:57 */waypoints[8] = spawnstruct(); +/* 1:57 */waypoints[8].origin = (-1045.68, -1419.97, 2.125); +/* 1:57 */waypoints[8].type = "stand"; +/* 1:57 */waypoints[8].children[0] = 2; +/* 1:57 */waypoints[8].children[1] = 7; +/* 1:57 */waypoints[8].children[2] = 3; +/* 1:57 */waypoints[8].children[3] = 122; +/* 1:57 */waypoints[9] = spawnstruct(); +/* 1:57 */waypoints[9].origin = (-776.886, -2041.49, 1.78285); +/* 1:57 */waypoints[9].type = "stand"; +/* 1:57 */waypoints[9].children[0] = 10; +/* 1:57 */waypoints[9].children[1] = 4; +/* 1:57 */waypoints[9].children[2] = 18; +/* 1:57 */waypoints[10] = spawnstruct(); +/* 1:57 */waypoints[10].origin = (-104.872, -2042.89, -1.3744); +/* 1:57 */waypoints[10].type = "stand"; +/* 1:57 */waypoints[10].children[0] = 9; +/* 1:57 */waypoints[10].children[1] = 13; +/* 1:57 */waypoints[10].children[2] = 17; +/* 1:57 */waypoints[10].children[3] = 18; +/* 1:57 */waypoints[10].children[4] = 11; +/* 1:57 */waypoints[11] = spawnstruct(); +/* 1:57 */waypoints[11].origin = (191.92, -2025.04, 8.05081); +/* 1:57 */waypoints[11].type = "stand"; +/* 1:57 */waypoints[11].children[0] = 10; +/* 1:57 */waypoints[11].children[1] = 19; +/* 1:57 */waypoints[11].children[2] = 21; +/* 1:57 */waypoints[12] = spawnstruct(); +/* 1:57 */waypoints[12].origin = (-719.159, -1770.06, 0.125001); +/* 1:57 */waypoints[12].type = "stand"; +/* 1:57 */waypoints[12].children[0] = 4; +/* 1:57 */waypoints[12].children[1] = 13; +/* 1:57 */waypoints[13] = spawnstruct(); +/* 1:57 */waypoints[13].origin = (-97.5209, -1795.05, 0.0548061); +/* 1:57 */waypoints[13].type = "stand"; +/* 1:57 */waypoints[13].children[0] = 10; +/* 1:57 */waypoints[13].children[1] = 14; +/* 1:57 */waypoints[13].children[2] = 12; +/* 1:57 */waypoints[14] = spawnstruct(); +/* 1:57 */waypoints[14].origin = (-44.726, -1556.77, 0.224131); +/* 1:57 */waypoints[14].type = "stand"; +/* 1:57 */waypoints[14].children[0] = 13; +/* 1:57 */waypoints[14].children[1] = 15; +/* 1:57 */waypoints[14].children[2] = 23; +/* 1:57 */waypoints[14].children[3] = 134; +/* 1:57 */waypoints[15] = spawnstruct(); +/* 1:57 */waypoints[15].origin = (-833.944, -1567.15, -0.776241); +/* 1:57 */waypoints[15].type = "stand"; +/* 1:57 */waypoints[15].children[0] = 4; +/* 1:57 */waypoints[15].children[1] = 14; +/* 1:57 */waypoints[15].children[2] = 3; +/* 1:57 */waypoints[16] = spawnstruct(); +/* 1:57 */waypoints[16].origin = (-463.711, -2223.76, 1.0698); +/* 1:57 */waypoints[16].type = "stand"; +/* 1:57 */waypoints[16].children[0] = 17; +/* 1:57 */waypoints[16].children[1] = 18; +/* 1:57 */waypoints[17] = spawnstruct(); +/* 1:57 */waypoints[17].origin = (-164.482, -2246.67, 1.01016); +/* 1:57 */waypoints[17].type = "stand"; +/* 1:57 */waypoints[17].children[0] = 10; +/* 1:57 */waypoints[17].children[1] = 16; +/* 1:57 */waypoints[18] = spawnstruct(); +/* 1:57 */waypoints[18].origin = (-488.467, -2041.41, 0.108528); +/* 1:57 */waypoints[18].type = "stand"; +/* 1:57 */waypoints[18].children[0] = 16; +/* 1:57 */waypoints[18].children[1] = 9; +/* 1:57 */waypoints[18].children[2] = 10; +/* 1:57 */waypoints[19] = spawnstruct(); +/* 1:57 */waypoints[19].origin = (183.314, -1730.39, 3.83266); +/* 1:57 */waypoints[19].type = "stand"; +/* 1:57 */waypoints[19].children[0] = 11; +/* 1:57 */waypoints[19].children[1] = 20; +/* 1:57 */waypoints[20] = spawnstruct(); +/* 1:57 */waypoints[20].origin = (188.901, -1536.91, -72.4284); +/* 1:57 */waypoints[20].type = "stand"; +/* 1:57 */waypoints[20].children[0] = 19; +/* 1:57 */waypoints[20].children[1] = 24; +/* 1:57 */waypoints[21] = spawnstruct(); +/* 1:57 */waypoints[21].origin = (351.086, -2036.03, 8.125); +/* 1:57 */waypoints[21].type = "stand"; +/* 1:57 */waypoints[21].children[0] = 11; +/* 1:57 */waypoints[21].children[1] = 22; +/* 1:57 */waypoints[22] = spawnstruct(); +/* 1:57 */waypoints[22].origin = (377.2, -1778.54, 75.125); +/* 1:57 */waypoints[22].type = "stand"; +/* 1:57 */waypoints[22].children[0] = 21; +/* 1:57 */waypoints[22].children[1] = 91; +/* 1:57 */waypoints[23] = spawnstruct(); +/* 1:57 */waypoints[23].origin = (-44.0902, -1308.76, -73.8681); +/* 1:57 */waypoints[23].type = "stand"; +/* 1:57 */waypoints[23].children[0] = 14; +/* 1:57 */waypoints[23].children[1] = 24; +/* 1:57 */waypoints[23].children[2] = 25; +/* 1:57 */waypoints[23].children[3] = 26; +/* 1:57 */waypoints[24] = spawnstruct(); +/* 1:57 */waypoints[24].origin = (199.421, -1310.34, -70.9745); +/* 1:57 */waypoints[24].type = "stand"; +/* 1:57 */waypoints[24].children[0] = 23; +/* 1:57 */waypoints[24].children[1] = 20; +/* 1:57 */waypoints[24].children[2] = 80; +/* 1:57 */waypoints[24].children[3] = 93; +/* 1:57 */waypoints[24].children[4] = 97; +/* 1:57 */waypoints[25] = spawnstruct(); +/* 1:57 */waypoints[25].origin = (-254.998, -1149.12, -64.1706); +/* 1:57 */waypoints[25].type = "crouch"; +/* 1:57 */waypoints[25].children[0] = 23; +/* 1:57 */waypoints[25].angles = (5.61829, -31.4868, 0); +/* 1:57 */waypoints[26] = spawnstruct(); +/* 1:57 */waypoints[26].origin = (-126.272, -836.318, -75.6004); +/* 1:57 */waypoints[26].type = "stand"; +/* 1:57 */waypoints[26].children[0] = 23; +/* 1:57 */waypoints[26].children[1] = 27; +/* 1:57 */waypoints[26].children[2] = 30; +/* 1:57 */waypoints[26].children[3] = 80; +/* 1:57 */waypoints[26].children[4] = 83; +/* 1:57 */waypoints[26].children[5] = 120; +/* 1:57 */waypoints[26].children[6] = 138; +/* 1:57 */waypoints[27] = spawnstruct(); +/* 1:57 */waypoints[27].origin = (-834.366, -905.349, -67.875); +/* 1:57 */waypoints[27].type = "stand"; +/* 1:57 */waypoints[27].children[0] = 3; +/* 1:57 */waypoints[27].children[1] = 26; +/* 1:57 */waypoints[27].children[2] = 28; +/* 1:57 */waypoints[27].children[3] = 30; +/* 1:57 */waypoints[27].children[4] = 125; +/* 1:57 */waypoints[28] = spawnstruct(); +/* 1:57 */waypoints[28].origin = (-486.125, -986.875, -63.875); +/* 1:57 */waypoints[28].type = "crouch"; +/* 1:57 */waypoints[28].children[0] = 27; +/* 1:57 */waypoints[28].angles = (8.30994, 138.807, 0); +/* 1:57 */waypoints[29] = spawnstruct(); +/* 1:57 */waypoints[29].origin = (-570.108, -361.702, -67.875); +/* 1:57 */waypoints[29].type = "stand"; +/* 1:57 */waypoints[29].children[0] = 30; +/* 1:57 */waypoints[29].children[1] = 32; +/* 1:57 */waypoints[29].children[2] = 31; +/* 1:57 */waypoints[29].children[3] = 119; +/* 1:57 */waypoints[29].children[4] = 121; +/* 1:57 */waypoints[30] = spawnstruct(); +/* 1:57 */waypoints[30].origin = (-486.269, -835.867, -67.875); +/* 1:57 */waypoints[30].type = "stand"; +/* 1:57 */waypoints[30].children[0] = 26; +/* 1:57 */waypoints[30].children[1] = 27; +/* 1:57 */waypoints[30].children[2] = 29; +/* 1:57 */waypoints[30].children[3] = 119; +/* 1:57 */waypoints[30].children[4] = 121; +/* 1:57 */waypoints[31] = spawnstruct(); +/* 1:57 */waypoints[31].origin = (-834.103, -338.943, -67.875); +/* 1:57 */waypoints[31].type = "stand"; +/* 1:57 */waypoints[31].children[0] = 29; +/* 1:57 */waypoints[31].children[1] = 33; +/* 1:57 */waypoints[31].children[2] = 36; +/* 1:57 */waypoints[32] = spawnstruct(); +/* 1:57 */waypoints[32].origin = (-338.235, -69.5155, -67.875); +/* 1:57 */waypoints[32].type = "stand"; +/* 1:57 */waypoints[32].children[0] = 29; +/* 1:57 */waypoints[32].children[1] = 36; +/* 1:57 */waypoints[32].children[2] = 37; +/* 1:57 */waypoints[32].children[3] = 39; +/* 1:57 */waypoints[32].children[4] = 117; +/* 1:57 */waypoints[33] = spawnstruct(); +/* 1:57 */waypoints[33].origin = (-950.55, -20.533, -67.875); +/* 1:57 */waypoints[33].type = "climb"; +/* 1:57 */waypoints[33].children[0] = 31; +/* 1:57 */waypoints[33].children[1] = 34; +/* 1:57 */waypoints[33].angles = (49.635, 102.118, 0); +/* 1:57 */waypoints[34] = spawnstruct(); +/* 1:57 */waypoints[34].origin = (-936.013, 78.3586, -45.875); +/* 1:57 */waypoints[34].type = "crouch"; +/* 1:57 */waypoints[34].children[0] = 33; +/* 1:57 */waypoints[34].angles = (5.61829, -57.0245, 0); +/* 1:57 */waypoints[35] = spawnstruct(); +/* 1:57 */waypoints[35].origin = (-770.529, 565.735, -73.1214); +/* 1:57 */waypoints[35].type = "stand"; +/* 1:57 */waypoints[35].children[0] = 58; +/* 1:57 */waypoints[35].children[1] = 150; +/* 1:57 */waypoints[35].children[2] = 155; +/* 1:57 */waypoints[36] = spawnstruct(); +/* 1:57 */waypoints[36].origin = (-788.421, 12.6972, -67.8751); +/* 1:57 */waypoints[36].type = "stand"; +/* 1:57 */waypoints[36].children[0] = 31; +/* 1:57 */waypoints[36].children[1] = 32; +/* 1:57 */waypoints[36].children[2] = 117; +/* 1:57 */waypoints[36].children[3] = 118; +/* 1:57 */waypoints[36].children[4] = 150; +/* 1:57 */waypoints[37] = spawnstruct(); +/* 1:57 */waypoints[37].origin = (-33.7955, -65.6956, -67.875); +/* 1:57 */waypoints[37].type = "stand"; +/* 1:57 */waypoints[37].children[0] = 32; +/* 1:57 */waypoints[37].children[1] = 38; +/* 1:57 */waypoints[38] = spawnstruct(); +/* 1:57 */waypoints[38].origin = (122.761, -65.1861, -99.875); +/* 1:57 */waypoints[38].type = "stand"; +/* 1:57 */waypoints[38].children[0] = 37; +/* 1:57 */waypoints[38].children[1] = 81; +/* 1:57 */waypoints[38].children[2] = 78; +/* 1:57 */waypoints[38].children[3] = 82; +/* 1:57 */waypoints[39] = spawnstruct(); +/* 1:57 */waypoints[39].origin = (-498.681, -149.582, -61.7012); +/* 1:57 */waypoints[39].type = "stand"; +/* 1:57 */waypoints[39].children[0] = 32; +/* 1:57 */waypoints[39].children[1] = 40; +/* 1:57 */waypoints[40] = spawnstruct(); +/* 1:57 */waypoints[40].origin = (-740.451, -141.98, 78.125); +/* 1:57 */waypoints[40].type = "stand"; +/* 1:57 */waypoints[40].children[0] = 39; +/* 1:57 */waypoints[40].children[1] = 41; +/* 1:57 */waypoints[41] = spawnstruct(); +/* 1:57 */waypoints[41].origin = (-1022.09, -148.968, 78.125); +/* 1:57 */waypoints[41].type = "stand"; +/* 1:57 */waypoints[41].children[0] = 40; +/* 1:57 */waypoints[41].children[1] = 42; +/* 1:57 */waypoints[41].children[2] = 112; +/* 1:57 */waypoints[42] = spawnstruct(); +/* 1:57 */waypoints[42].origin = (-1029.62, -305.749, 78.125); +/* 1:57 */waypoints[42].type = "stand"; +/* 1:57 */waypoints[42].children[0] = 41; +/* 1:57 */waypoints[42].children[1] = 43; +/* 1:57 */waypoints[43] = spawnstruct(); +/* 1:57 */waypoints[43].origin = (-1267.3, -305.753, 78.125); +/* 1:57 */waypoints[43].type = "stand"; +/* 1:57 */waypoints[43].children[0] = 42; +/* 1:57 */waypoints[43].children[1] = 44; +/* 1:57 */waypoints[43].children[2] = 113; +/* 1:57 */waypoints[43].children[3] = 130; +/* 1:57 */waypoints[44] = spawnstruct(); +/* 1:57 */waypoints[44].origin = (-1262.62, -456.467, 78.125); +/* 1:57 */waypoints[44].type = "stand"; +/* 1:57 */waypoints[44].children[0] = 43; +/* 1:57 */waypoints[44].children[1] = 45; +/* 1:57 */waypoints[44].children[2] = 151; +/* 1:57 */waypoints[45] = spawnstruct(); +/* 1:57 */waypoints[45].origin = (-1262.08, -620.875, 78.125); +/* 1:57 */waypoints[45].type = "crouch"; +/* 1:57 */waypoints[45].children[0] = 44; +/* 1:57 */waypoints[45].angles = (9.4635, 58.1012, 0); +/* 1:57 */waypoints[46] = spawnstruct(); +/* 1:57 */waypoints[46].origin = (-1780.35, -476.77, 80.125); +/* 1:57 */waypoints[46].type = "stand"; +/* 1:57 */waypoints[46].children[0] = 1; +/* 1:57 */waypoints[46].children[1] = 47; +/* 1:57 */waypoints[46].children[2] = 54; +/* 1:57 */waypoints[46].children[3] = 128; +/* 1:57 */waypoints[46].children[4] = 129; +/* 1:57 */waypoints[47] = spawnstruct(); +/* 1:57 */waypoints[47].origin = (-2031.24, -473.158, 50.125); +/* 1:57 */waypoints[47].type = "stand"; +/* 1:57 */waypoints[47].children[0] = 46; +/* 1:57 */waypoints[47].children[1] = 49; +/* 1:57 */waypoints[48] = spawnstruct(); +/* 1:57 */waypoints[48].origin = (-2042.67, -45.5832, -44.2631); +/* 1:57 */waypoints[48].type = "stand"; +/* 1:57 */waypoints[48].children[0] = 49; +/* 1:57 */waypoints[48].children[1] = 50; +/* 1:57 */waypoints[48].children[2] = 114; +/* 1:57 */waypoints[48].children[3] = 116; +/* 1:57 */waypoints[49] = spawnstruct(); +/* 1:57 */waypoints[49].origin = (-2028.38, -286.548, 50.125); +/* 1:57 */waypoints[49].type = "stand"; +/* 1:57 */waypoints[49].children[0] = 47; +/* 1:57 */waypoints[49].children[1] = 48; +/* 1:57 */waypoints[50] = spawnstruct(); +/* 1:57 */waypoints[50].origin = (-2004.29, 160.867, -54.2892); +/* 1:57 */waypoints[50].type = "stand"; +/* 1:57 */waypoints[50].children[0] = 48; +/* 1:57 */waypoints[50].children[1] = 51; +/* 1:57 */waypoints[50].children[2] = 52; +/* 1:57 */waypoints[51] = spawnstruct(); +/* 1:57 */waypoints[51].origin = (-1980.04, 403.366, -53.5544); +/* 1:57 */waypoints[51].type = "stand"; +/* 1:57 */waypoints[51].children[0] = 50; +/* 1:57 */waypoints[51].children[1] = 68; +/* 1:57 */waypoints[52] = spawnstruct(); +/* 1:57 */waypoints[52].origin = (-1782.68, 255.129, -43.375); +/* 1:57 */waypoints[52].type = "stand"; +/* 1:57 */waypoints[52].children[0] = 50; +/* 1:57 */waypoints[52].children[1] = 53; +/* 1:57 */waypoints[53] = spawnstruct(); +/* 1:57 */waypoints[53].origin = (-1469.46, 495.483, -54.8467); +/* 1:57 */waypoints[53].type = "stand"; +/* 1:57 */waypoints[53].children[0] = 52; +/* 1:57 */waypoints[53].children[1] = 116; +/* 1:57 */waypoints[53].children[2] = 68; +/* 1:57 */waypoints[53].children[3] = 115; +/* 1:57 */waypoints[53].children[4] = 155; +/* 1:57 */waypoints[54] = spawnstruct(); +/* 1:57 */waypoints[54].origin = (-1712.44, -338.028, 80.125); +/* 1:57 */waypoints[54].type = "stand"; +/* 1:57 */waypoints[54].children[0] = 46; +/* 1:57 */waypoints[54].children[1] = 128; +/* 1:57 */waypoints[54].children[2] = 154; +/* 1:57 */waypoints[55] = spawnstruct(); +/* 1:57 */waypoints[55].origin = (-1607.71, -180.875, -44.481); +/* 1:57 */waypoints[55].type = "climb"; +/* 1:57 */waypoints[55].children[0] = 56; +/* 1:57 */waypoints[55].children[1] = 114; +/* 1:57 */waypoints[55].children[2] = 115; +/* 1:57 */waypoints[55].angles = (0.81728, -89.9744, 0); +/* 1:57 */waypoints[56] = spawnstruct(); +/* 1:57 */waypoints[56].origin = (-1655.59, -241.997, 20.125); +/* 1:57 */waypoints[56].type = "climb"; +/* 1:57 */waypoints[56].children[0] = 55; +/* 1:57 */waypoints[56].children[1] = 154; +/* 1:57 */waypoints[56].angles = (-16.3159, -90.3039, 0); +/* 1:57 */waypoints[57] = spawnstruct(); +/* 1:57 */waypoints[57].origin = (-497.794, 463.125, -69.2525); +/* 1:57 */waypoints[57].type = "crouch"; +/* 1:57 */waypoints[57].children[0] = 58; +/* 1:57 */waypoints[57].angles = (1.65773, 93.3435, 0); +/* 1:57 */waypoints[58] = spawnstruct(); +/* 1:57 */waypoints[58].origin = (-528.456, 669.273, -76.9483); +/* 1:57 */waypoints[58].type = "stand"; +/* 1:57 */waypoints[58].children[0] = 35; +/* 1:57 */waypoints[58].children[1] = 57; +/* 1:57 */waypoints[58].children[2] = 110; +/* 1:57 */waypoints[58].children[3] = 136; +/* 1:57 */waypoints[59] = spawnstruct(); +/* 1:57 */waypoints[59].origin = (-515.198, 1293.8, -95.875); +/* 1:57 */waypoints[59].type = "stand"; +/* 1:57 */waypoints[59].children[0] = 61; +/* 1:57 */waypoints[59].children[1] = 103; +/* 1:57 */waypoints[59].children[2] = 136; +/* 1:57 */waypoints[60] = spawnstruct(); +/* 1:57 */waypoints[60].origin = (327.061, 1240.83, -105.116); +/* 1:57 */waypoints[60].type = "stand"; +/* 1:57 */waypoints[60].children[0] = 73; +/* 1:57 */waypoints[60].children[1] = 75; +/* 1:57 */waypoints[60].children[2] = 102; +/* 1:57 */waypoints[60].children[3] = 104; +/* 1:57 */waypoints[61] = spawnstruct(); +/* 1:57 */waypoints[61].origin = (-575.497, 1401.55, -103.464); +/* 1:57 */waypoints[61].type = "stand"; +/* 1:57 */waypoints[61].children[0] = 59; +/* 1:57 */waypoints[61].children[1] = 62; +/* 1:57 */waypoints[61].children[2] = 63; +/* 1:57 */waypoints[61].children[3] = 106; +/* 1:57 */waypoints[61].children[4] = 107; +/* 1:57 */waypoints[61].children[5] = 136; +/* 1:57 */waypoints[61].children[6] = 103; +/* 1:57 */waypoints[62] = spawnstruct(); +/* 1:57 */waypoints[62].origin = (-573.765, 1666.76, -103.708); +/* 1:57 */waypoints[62].type = "stand"; +/* 1:57 */waypoints[62].children[0] = 61; +/* 1:57 */waypoints[62].children[1] = 64; +/* 1:57 */waypoints[62].children[2] = 71; +/* 1:57 */waypoints[62].children[3] = 72; +/* 1:57 */waypoints[62].children[4] = 107; +/* 1:57 */waypoints[63] = spawnstruct(); +/* 1:57 */waypoints[63].origin = (-1245.24, 1290.93, -95.875); +/* 1:57 */waypoints[63].type = "stand"; +/* 1:57 */waypoints[63].children[0] = 61; +/* 1:57 */waypoints[63].children[1] = 65; +/* 1:57 */waypoints[63].children[2] = 105; +/* 1:57 */waypoints[63].children[3] = 106; +/* 1:57 */waypoints[64] = spawnstruct(); +/* 1:57 */waypoints[64].origin = (-1067.37, 1818.92, -98.9286); +/* 1:57 */waypoints[64].type = "stand"; +/* 1:57 */waypoints[64].children[0] = 62; +/* 1:57 */waypoints[64].children[1] = 65; +/* 1:57 */waypoints[64].children[2] = 105; +/* 1:57 */waypoints[65] = spawnstruct(); +/* 1:57 */waypoints[65].origin = (-1327.01, 1504.98, -94.6092); +/* 1:57 */waypoints[65].type = "stand"; +/* 1:57 */waypoints[65].children[0] = 63; +/* 1:57 */waypoints[65].children[1] = 64; +/* 1:57 */waypoints[65].children[2] = 66; +/* 1:57 */waypoints[65].children[3] = 105; +/* 1:57 */waypoints[66] = spawnstruct(); +/* 1:57 */waypoints[66].origin = (-1558.16, 1489.6, -51.875); +/* 1:57 */waypoints[66].type = "stand"; +/* 1:57 */waypoints[66].children[0] = 65; +/* 1:57 */waypoints[66].children[1] = 67; +/* 1:57 */waypoints[66].children[2] = 152; +/* 1:57 */waypoints[67] = spawnstruct(); +/* 1:57 */waypoints[67].origin = (-1702.88, 1306.12, -51.875); +/* 1:57 */waypoints[67].type = "crouch"; +/* 1:57 */waypoints[67].children[0] = 66; +/* 1:57 */waypoints[67].angles = (3.31116, 29.5404, 0); +/* 1:57 */waypoints[68] = spawnstruct(); +/* 1:57 */waypoints[68].origin = (-1718.31, 464.22, -53.2537); +/* 1:57 */waypoints[68].type = "stand"; +/* 1:57 */waypoints[68].children[0] = 51; +/* 1:57 */waypoints[68].children[1] = 153; +/* 1:57 */waypoints[68].children[2] = 53; +/* 1:57 */waypoints[68].children[3] = 116; +/* 1:57 */waypoints[69] = spawnstruct(); +/* 1:57 */waypoints[69].origin = (-1422.18, 1032.5, -51.875); +/* 1:57 */waypoints[69].type = "crouch"; +/* 1:57 */waypoints[69].children[0] = 152; +/* 1:57 */waypoints[69].angles = (1.19629, -120.961, 0); +/* 1:57 */waypoints[70] = spawnstruct(); +/* 1:57 */waypoints[70].origin = (-1279.52, 358.234, -51.875); +/* 1:57 */waypoints[70].type = "crouch"; +/* 1:57 */waypoints[70].children[0] = 155; +/* 1:57 */waypoints[70].angles = (5.42053, 53.941, 0); +/* 1:57 */waypoints[71] = spawnstruct(); +/* 1:57 */waypoints[71].origin = (-290.065, 1717.01, -95.875); +/* 1:57 */waypoints[71].type = "stand"; +/* 1:57 */waypoints[71].children[0] = 62; +/* 1:57 */waypoints[71].children[1] = 72; +/* 1:57 */waypoints[72] = spawnstruct(); +/* 1:57 */waypoints[72].origin = (-298.71, 1561.68, -95.875); +/* 1:57 */waypoints[72].type = "stand"; +/* 1:57 */waypoints[72].children[0] = 62; +/* 1:57 */waypoints[72].children[1] = 71; +/* 1:57 */waypoints[72].children[2] = 103; +/* 1:57 */waypoints[73] = spawnstruct(); +/* 1:57 */waypoints[73].origin = (717.414, 1365.04, -101.461); +/* 1:57 */waypoints[73].type = "stand"; +/* 1:57 */waypoints[73].children[0] = 60; +/* 1:57 */waypoints[73].children[1] = 145; +/* 1:57 */waypoints[73].children[2] = 147; +/* 1:57 */waypoints[74] = spawnstruct(); +/* 1:57 */waypoints[74].origin = (691.344, 579.794, -98.599); +/* 1:57 */waypoints[74].type = "stand"; +/* 1:57 */waypoints[74].children[0] = 75; +/* 1:57 */waypoints[74].children[1] = 76; +/* 1:57 */waypoints[74].children[2] = 99; +/* 1:57 */waypoints[74].children[3] = 100; +/* 1:57 */waypoints[74].children[4] = 147; +/* 1:57 */waypoints[75] = spawnstruct(); +/* 1:57 */waypoints[75].origin = (211.821, 591.16, -95.875); +/* 1:57 */waypoints[75].type = "stand"; +/* 1:57 */waypoints[75].children[0] = 60; +/* 1:57 */waypoints[75].children[1] = 74; +/* 1:57 */waypoints[75].children[2] = 81; +/* 1:57 */waypoints[76] = spawnstruct(); +/* 1:57 */waypoints[76].origin = (673.657, 202.857, -90.2154); +/* 1:57 */waypoints[76].type = "stand"; +/* 1:57 */waypoints[76].children[0] = 77; +/* 1:57 */waypoints[76].children[1] = 74; +/* 1:57 */waypoints[76].children[2] = 84; +/* 1:57 */waypoints[76].children[3] = 98; +/* 1:57 */waypoints[76].children[4] = 101; +/* 1:57 */waypoints[77] = spawnstruct(); +/* 1:57 */waypoints[77].origin = (392.91, 204.878, -87.375); +/* 1:57 */waypoints[77].type = "stand"; +/* 1:57 */waypoints[77].children[0] = 78; +/* 1:57 */waypoints[77].children[1] = 76; +/* 1:57 */waypoints[78] = spawnstruct(); +/* 1:57 */waypoints[78].origin = (363.405, -64.8698, -81.9306); +/* 1:57 */waypoints[78].type = "stand"; +/* 1:57 */waypoints[78].children[0] = 79; +/* 1:57 */waypoints[78].children[1] = 77; +/* 1:57 */waypoints[78].children[2] = 38; +/* 1:57 */waypoints[78].children[3] = 111; +/* 1:57 */waypoints[79] = spawnstruct(); +/* 1:57 */waypoints[79].origin = (381.835, -661.061, -67.532); +/* 1:57 */waypoints[79].type = "stand"; +/* 1:57 */waypoints[79].children[0] = 80; +/* 1:57 */waypoints[79].children[1] = 78; +/* 1:57 */waypoints[79].children[2] = 82; +/* 1:57 */waypoints[79].children[3] = 85; +/* 1:57 */waypoints[79].children[4] = 87; +/* 1:57 */waypoints[80] = spawnstruct(); +/* 1:57 */waypoints[80].origin = (253.042, -1060.1, -69.4974); +/* 1:57 */waypoints[80].type = "stand"; +/* 1:57 */waypoints[80].children[0] = 26; +/* 1:57 */waypoints[80].children[1] = 24; +/* 1:57 */waypoints[80].children[2] = 79; +/* 1:57 */waypoints[80].children[3] = 97; +/* 1:57 */waypoints[80].children[4] = 143; +/* 1:57 */waypoints[81] = spawnstruct(); +/* 1:57 */waypoints[81].origin = (101.394, 253.778, -99.875); +/* 1:57 */waypoints[81].type = "stand"; +/* 1:57 */waypoints[81].children[0] = 75; +/* 1:57 */waypoints[81].children[1] = 38; +/* 1:57 */waypoints[82] = spawnstruct(); +/* 1:57 */waypoints[82].origin = (115.242, -673.603, -67.875); +/* 1:57 */waypoints[82].type = "stand"; +/* 1:57 */waypoints[82].children[0] = 38; +/* 1:57 */waypoints[82].children[1] = 79; +/* 1:57 */waypoints[82].children[2] = 83; +/* 1:57 */waypoints[83] = spawnstruct(); +/* 1:57 */waypoints[83].origin = (-53.7846, -673.771, -67.875); +/* 1:57 */waypoints[83].type = "stand"; +/* 1:57 */waypoints[83].children[0] = 26; +/* 1:57 */waypoints[83].children[1] = 82; +/* 1:57 */waypoints[84] = spawnstruct(); +/* 1:57 */waypoints[84].origin = (721.483, -325.302, -80.4851); +/* 1:57 */waypoints[84].type = "stand"; +/* 1:57 */waypoints[84].children[0] = 76; +/* 1:57 */waypoints[84].children[1] = 85; +/* 1:57 */waypoints[84].children[2] = 98; +/* 1:57 */waypoints[85] = spawnstruct(); +/* 1:57 */waypoints[85].origin = (724.811, -451.478, -78.8976); +/* 1:57 */waypoints[85].type = "stand"; +/* 1:57 */waypoints[85].children[0] = 84; +/* 1:57 */waypoints[85].children[1] = 79; +/* 1:57 */waypoints[85].children[2] = 86; +/* 1:57 */waypoints[86] = spawnstruct(); +/* 1:57 */waypoints[86].origin = (802.166, -581.686, -71.875); +/* 1:57 */waypoints[86].type = "stand"; +/* 1:57 */waypoints[86].children[0] = 85; +/* 1:57 */waypoints[86].children[1] = 87; +/* 1:57 */waypoints[86].children[2] = 98; +/* 1:57 */waypoints[87] = spawnstruct(); +/* 1:57 */waypoints[87].origin = (787.311, -878.944, -77.6298); +/* 1:57 */waypoints[87].type = "stand"; +/* 1:57 */waypoints[87].children[0] = 86; +/* 1:57 */waypoints[87].children[1] = 88; +/* 1:57 */waypoints[87].children[2] = 94; +/* 1:57 */waypoints[87].children[3] = 79; +/* 1:57 */waypoints[87].children[4] = 97; +/* 1:57 */waypoints[87].children[5] = 137; +/* 1:57 */waypoints[88] = spawnstruct(); +/* 1:57 */waypoints[88].origin = (767.869, -1336.48, -72.1795); +/* 1:57 */waypoints[88].type = "stand"; +/* 1:57 */waypoints[88].children[0] = 87; +/* 1:57 */waypoints[88].children[1] = 89; +/* 1:57 */waypoints[88].children[2] = 93; +/* 1:57 */waypoints[88].children[3] = 95; +/* 1:57 */waypoints[88].children[4] = 148; +/* 1:57 */waypoints[89] = spawnstruct(); +/* 1:57 */waypoints[89].origin = (761.876, -1468.87, -65.875); +/* 1:57 */waypoints[89].type = "climb"; +/* 1:57 */waypoints[89].children[0] = 88; +/* 1:57 */waypoints[89].children[1] = 90; +/* 1:57 */waypoints[89].angles = (8.11768, -94.6106, 0); +/* 1:57 */waypoints[90] = spawnstruct(); +/* 1:57 */waypoints[90].origin = (756.898, -1514.22, -60.875); +/* 1:57 */waypoints[90].type = "climb"; +/* 1:57 */waypoints[90].children[0] = 89; +/* 1:57 */waypoints[90].children[1] = 92; +/* 1:57 */waypoints[90].angles = (2.03674, 88.5645, 0); +/* 1:57 */waypoints[91] = spawnstruct(); +/* 1:57 */waypoints[91].origin = (364.092, -1594.84, 27.125); +/* 1:57 */waypoints[91].type = "stand"; +/* 1:57 */waypoints[91].children[0] = 22; +/* 1:57 */waypoints[91].children[1] = 92; +/* 1:57 */waypoints[92] = spawnstruct(); +/* 1:57 */waypoints[92].origin = (662.449, -1589.56, -60.875); +/* 1:57 */waypoints[92].type = "stand"; +/* 1:57 */waypoints[92].children[0] = 91; +/* 1:57 */waypoints[92].children[1] = 90; +/* 1:57 */waypoints[92].children[2] = 142; +/* 1:57 */waypoints[92].children[3] = 148; +/* 1:57 */waypoints[93] = spawnstruct(); +/* 1:57 */waypoints[93].origin = (649.893, -1323.68, -71.875); +/* 1:57 */waypoints[93].type = "stand"; +/* 1:57 */waypoints[93].children[0] = 24; +/* 1:57 */waypoints[93].children[1] = 88; +/* 1:57 */waypoints[93].children[2] = 95; +/* 1:57 */waypoints[93].children[3] = 148; +/* 1:57 */waypoints[94] = spawnstruct(); +/* 1:57 */waypoints[94].origin = (1106.54, -751.291, -71.875); +/* 1:57 */waypoints[94].type = "stand"; +/* 1:57 */waypoints[94].children[0] = 87; +/* 1:57 */waypoints[94].children[1] = 95; +/* 1:57 */waypoints[94].children[2] = 96; +/* 1:57 */waypoints[95] = spawnstruct(); +/* 1:57 */waypoints[95].origin = (1115.3, -1150.34, -70.0649); +/* 1:57 */waypoints[95].type = "stand"; +/* 1:57 */waypoints[95].children[0] = 94; +/* 1:57 */waypoints[95].children[1] = 88; +/* 1:57 */waypoints[95].children[2] = 93; +/* 1:57 */waypoints[96] = spawnstruct(); +/* 1:57 */waypoints[96].origin = (1222.88, -615.125, -61.875); +/* 1:57 */waypoints[96].type = "crouch"; +/* 1:57 */waypoints[96].children[0] = 94; +/* 1:57 */waypoints[96].angles = (0.619507, -140.314, 0); +/* 1:57 */waypoints[97] = spawnstruct(); +/* 1:57 */waypoints[97].origin = (545.295, -1197.95, -70.9087); +/* 1:57 */waypoints[97].type = "stand"; +/* 1:57 */waypoints[97].children[0] = 87; +/* 1:57 */waypoints[97].children[1] = 80; +/* 1:57 */waypoints[97].children[2] = 24; +/* 1:57 */waypoints[98] = spawnstruct(); +/* 1:57 */waypoints[98].origin = (787.154, -162.22, -82.8475); +/* 1:57 */waypoints[98].type = "stand"; +/* 1:57 */waypoints[98].children[0] = 84; +/* 1:57 */waypoints[98].children[1] = 86; +/* 1:57 */waypoints[98].children[2] = 76; +/* 1:57 */waypoints[99] = spawnstruct(); +/* 1:57 */waypoints[99].origin = (882.704, 648.628, -85.875); +/* 1:57 */waypoints[99].type = "stand"; +/* 1:57 */waypoints[99].children[0] = 100; +/* 1:57 */waypoints[99].children[1] = 74; +/* 1:57 */waypoints[100] = spawnstruct(); +/* 1:57 */waypoints[100].origin = (892.233, 434.935, -85.875); +/* 1:57 */waypoints[100].type = "stand"; +/* 1:57 */waypoints[100].children[0] = 101; +/* 1:57 */waypoints[100].children[1] = 99; +/* 1:57 */waypoints[100].children[2] = 74; +/* 1:57 */waypoints[101] = spawnstruct(); +/* 1:57 */waypoints[101].origin = (888.732, 192.113, -85.875); +/* 1:57 */waypoints[101].type = "stand"; +/* 1:57 */waypoints[101].children[0] = 76; +/* 1:57 */waypoints[101].children[1] = 100; +/* 1:57 */waypoints[102] = spawnstruct(); +/* 1:57 */waypoints[102].origin = (71.125, 1049.53, -92.875); +/* 1:57 */waypoints[102].type = "crouch"; +/* 1:57 */waypoints[102].children[0] = 60; +/* 1:57 */waypoints[102].angles = (3.70117, 2.00317, 0); +/* 1:57 */waypoints[103] = spawnstruct(); +/* 1:57 */waypoints[103].origin = (-297.967, 1323.86, -95.8752); +/* 1:57 */waypoints[103].type = "stand"; +/* 1:57 */waypoints[103].children[0] = 72; +/* 1:57 */waypoints[103].children[1] = 59; +/* 1:57 */waypoints[103].children[2] = 104; +/* 1:57 */waypoints[103].children[3] = 61; +/* 1:57 */waypoints[104] = spawnstruct(); +/* 1:57 */waypoints[104].origin = (11.1166, 1252.32, -95.875); +/* 1:57 */waypoints[104].type = "stand"; +/* 1:57 */waypoints[104].children[0] = 60; +/* 1:57 */waypoints[104].children[1] = 103; +/* 1:57 */waypoints[105] = spawnstruct(); +/* 1:57 */waypoints[105].origin = (-1120.71, 1569.39, -101.585); +/* 1:57 */waypoints[105].type = "stand"; +/* 1:57 */waypoints[105].children[0] = 63; +/* 1:57 */waypoints[105].children[1] = 64; +/* 1:57 */waypoints[105].children[2] = 106; +/* 1:57 */waypoints[105].children[3] = 108; +/* 1:57 */waypoints[105].children[4] = 65; +/* 1:57 */waypoints[106] = spawnstruct(); +/* 1:57 */waypoints[106].origin = (-1104.67, 1397.81, -102.387); +/* 1:57 */waypoints[106].type = "stand"; +/* 1:57 */waypoints[106].children[0] = 63; +/* 1:57 */waypoints[106].children[1] = 105; +/* 1:57 */waypoints[106].children[2] = 61; +/* 1:57 */waypoints[107] = spawnstruct(); +/* 1:57 */waypoints[107].origin = (-603.397, 1553.96, -103.724); +/* 1:57 */waypoints[107].type = "claymore"; +/* 1:57 */waypoints[107].children[0] = 62; +/* 1:57 */waypoints[107].children[1] = 61; +/* 1:57 */waypoints[107].angles = (46.7566, -77.9169, 0); +/* 1:57 */waypoints[108] = spawnstruct(); +/* 1:57 */waypoints[108].origin = (-1490.59, 1718.03, -89.875); +/* 1:57 */waypoints[108].type = "crouch"; +/* 1:57 */waypoints[108].children[0] = 105; +/* 1:57 */waypoints[108].angles = (-1.10533, -100.752, 0); +/* 1:57 */waypoints[109] = spawnstruct(); +/* 1:57 */waypoints[109].origin = (-1670.46, 546.998, -51.875); +/* 1:57 */waypoints[109].type = "claymore"; +/* 1:57 */waypoints[109].children[0] = 153; +/* 1:57 */waypoints[109].angles = (61.5552, 172.775, 0); +/* 1:57 */waypoints[110] = spawnstruct(); +/* 1:57 */waypoints[110].origin = (-604.862, 748.858, -74.8106); +/* 1:57 */waypoints[110].type = "claymore"; +/* 1:57 */waypoints[110].children[0] = 58; +/* 1:57 */waypoints[110].angles = (73.4808, -0.787354, 0); +/* 1:57 */waypoints[111] = spawnstruct(); +/* 1:57 */waypoints[111].origin = (327.541, -16.3796, -82.9684); +/* 1:57 */waypoints[111].type = "claymore"; +/* 1:57 */waypoints[111].children[0] = 78; +/* 1:57 */waypoints[111].angles = (55.0348, -93.8086, 0); +/* 1:57 */waypoints[112] = spawnstruct(); +/* 1:57 */waypoints[112].origin = (-1144.88, -84.125, 78.125); +/* 1:57 */waypoints[112].type = "crouch"; +/* 1:57 */waypoints[112].children[0] = 41; +/* 1:57 */waypoints[112].angles = (3.14638, -29.4177, 0); +/* 1:57 */waypoints[113] = spawnstruct(); +/* 1:57 */waypoints[113].origin = (-1416.88, -241.125, 80.171); +/* 1:57 */waypoints[113].type = "crouch"; +/* 1:57 */waypoints[113].children[0] = 43; +/* 1:57 */waypoints[113].angles = (4.84926, -51.5167, 0); +/* 1:57 */waypoints[114] = spawnstruct(); +/* 1:57 */waypoints[114].origin = (-1689.6, -74.565, -46.991); +/* 1:57 */waypoints[114].type = "stand"; +/* 1:57 */waypoints[114].children[0] = 48; +/* 1:57 */waypoints[114].children[1] = 55; +/* 1:57 */waypoints[114].children[2] = 115; +/* 1:57 */waypoints[114].children[3] = 139; +/* 1:57 */waypoints[115] = spawnstruct(); +/* 1:57 */waypoints[115].origin = (-1536.47, 7.8011, -49.2237); +/* 1:57 */waypoints[115].type = "stand"; +/* 1:57 */waypoints[115].children[0] = 116; +/* 1:57 */waypoints[115].children[1] = 114; +/* 1:57 */waypoints[115].children[2] = 55; +/* 1:57 */waypoints[115].children[3] = 53; +/* 1:57 */waypoints[116] = spawnstruct(); +/* 1:57 */waypoints[116].origin = (-1588.33, 259.217, -51.017); +/* 1:57 */waypoints[116].type = "stand"; +/* 1:57 */waypoints[116].children[0] = 48; +/* 1:57 */waypoints[116].children[1] = 115; +/* 1:57 */waypoints[116].children[2] = 53; +/* 1:57 */waypoints[116].children[3] = 68; +/* 1:57 */waypoints[117] = spawnstruct(); +/* 1:57 */waypoints[117].origin = (-408.432, 34.8685, -67.875); +/* 1:57 */waypoints[117].type = "stand"; +/* 1:57 */waypoints[117].children[0] = 36; +/* 1:57 */waypoints[117].children[1] = 32; +/* 1:57 */waypoints[117].children[2] = 141; +/* 1:57 */waypoints[118] = spawnstruct(); +/* 1:57 */waypoints[118].origin = (-943.717, -195.87, -67.8751); +/* 1:57 */waypoints[118].type = "claymore"; +/* 1:57 */waypoints[118].children[0] = 36; +/* 1:57 */waypoints[118].angles = (65.0214, 17.3236, 0); +/* 1:57 */waypoints[119] = spawnstruct(); +/* 1:57 */waypoints[119].origin = (-583.642, -619.002, -67.8751); +/* 1:57 */waypoints[119].type = "claymore"; +/* 1:57 */waypoints[119].children[0] = 29; +/* 1:57 */waypoints[119].children[1] = 30; +/* 1:57 */waypoints[119].angles = (71.9427, 13.2697, 0); +/* 1:57 */waypoints[120] = spawnstruct(); +/* 1:57 */waypoints[120].origin = (-292.558, -642.023, -67.8751); +/* 1:57 */waypoints[120].type = "stand"; +/* 1:57 */waypoints[120].children[0] = 121; +/* 1:57 */waypoints[120].children[1] = 26; +/* 1:57 */waypoints[121] = spawnstruct(); +/* 1:57 */waypoints[121].origin = (-471.129, -656.023, -67.8751); +/* 1:57 */waypoints[121].type = "stand"; +/* 1:57 */waypoints[121].children[0] = 30; +/* 1:57 */waypoints[121].children[1] = 29; +/* 1:57 */waypoints[121].children[2] = 120; +/* 1:57 */waypoints[122] = spawnstruct(); +/* 1:57 */waypoints[122].origin = (-992.086, -1364.65, 2.125); +/* 1:57 */waypoints[122].type = "stand"; +/* 1:57 */waypoints[122].children[0] = 8; +/* 1:57 */waypoints[122].children[1] = 123; +/* 1:57 */waypoints[123] = spawnstruct(); +/* 1:57 */waypoints[123].origin = (-980.447, -1067.51, 4.125); +/* 1:57 */waypoints[123].type = "stand"; +/* 1:57 */waypoints[123].children[0] = 122; +/* 1:57 */waypoints[124] = spawnstruct(); +/* 1:57 */waypoints[124].origin = (-1472.9, -873.882, 4.33376); +/* 1:57 */waypoints[124].type = "stand"; +/* 1:57 */waypoints[124].children[0] = 125; +/* 1:57 */waypoints[124].children[1] = 1; +/* 1:57 */waypoints[124].children[2] = 126; +/* 1:57 */waypoints[124].children[3] = 131; +/* 1:57 */waypoints[124].children[4] = 144; +/* 1:57 */waypoints[125] = spawnstruct(); +/* 1:57 */waypoints[125].origin = (-979.942, -831.746, -67.875); +/* 1:57 */waypoints[125].type = "stand"; +/* 1:57 */waypoints[125].children[0] = 27; +/* 1:57 */waypoints[125].children[1] = 124; +/* 1:57 */waypoints[126] = spawnstruct(); +/* 1:57 */waypoints[126].origin = (-1475.57, -1413.42, 2.125); +/* 1:57 */waypoints[126].type = "stand"; +/* 1:57 */waypoints[126].children[0] = 124; +/* 1:57 */waypoints[126].children[1] = 2; +/* 1:57 */waypoints[126].children[2] = 0; +/* 1:57 */waypoints[127] = spawnstruct(); +/* 1:57 */waypoints[127].origin = (-1599.26, -642.834, 80.125); +/* 1:57 */waypoints[127].type = "stand"; +/* 1:57 */waypoints[127].children[0] = 1; +/* 1:57 */waypoints[127].children[1] = 129; +/* 1:57 */waypoints[128] = spawnstruct(); +/* 1:57 */waypoints[128].origin = (-1630.98, -428.252, 80.125); +/* 1:57 */waypoints[128].type = "stand"; +/* 1:57 */waypoints[128].children[0] = 46; +/* 1:57 */waypoints[128].children[1] = 129; +/* 1:57 */waypoints[128].children[2] = 151; +/* 1:57 */waypoints[128].children[3] = 54; +/* 1:57 */waypoints[129] = spawnstruct(); +/* 1:57 */waypoints[129].origin = (-1521.7, -494.247, 80.125); +/* 1:57 */waypoints[129].type = "stand"; +/* 1:57 */waypoints[129].children[0] = 128; +/* 1:57 */waypoints[129].children[1] = 127; +/* 1:57 */waypoints[129].children[2] = 46; +/* 1:57 */waypoints[129].children[3] = 151; +/* 1:57 */waypoints[130] = spawnstruct(); +/* 1:57 */waypoints[130].origin = (-1416.88, -402.584, 80.1709); +/* 1:57 */waypoints[130].type = "claymore"; +/* 1:57 */waypoints[130].children[0] = 43; +/* 1:57 */waypoints[130].angles = (61.7529, -86.8652, 0); +/* 1:57 */waypoints[131] = spawnstruct(); +/* 1:57 */waypoints[131].origin = (-1735.95, -991.62, 16.6504); +/* 1:57 */waypoints[131].type = "claymore"; +/* 1:57 */waypoints[131].children[0] = 1; +/* 1:57 */waypoints[131].children[1] = 124; +/* 1:57 */waypoints[131].angles = (40.0275, 57.3083, 0); +/* 1:57 */waypoints[132] = spawnstruct(); +/* 1:57 */waypoints[132].origin = (-1301.58, -1614.79, 4.125); +/* 1:57 */waypoints[132].type = "stand"; +/* 1:57 */waypoints[132].children[0] = 5; +/* 1:57 */waypoints[132].children[1] = 133; +/* 1:57 */waypoints[132].children[2] = 149; +/* 1:57 */waypoints[133] = spawnstruct(); +/* 1:57 */waypoints[133].origin = (-1270.23, -1543.12, 4.125); +/* 1:57 */waypoints[133].type = "claymore"; +/* 1:57 */waypoints[133].children[0] = 132; +/* 1:57 */waypoints[133].angles = (73.2776, -175.75, 0); +/* 1:57 */waypoints[134] = spawnstruct(); +/* 1:57 */waypoints[134].origin = (-335.557, -1471.17, 11.2512); +/* 1:57 */waypoints[134].type = "crouch"; +/* 1:57 */waypoints[134].children[0] = 14; +/* 1:57 */waypoints[134].angles = (2.92664, -49.8688, 0); +/* 1:57 */waypoints[135] = spawnstruct(); +/* 1:57 */waypoints[135].origin = (-607.641, 796.06, -95.875); +/* 1:57 */waypoints[135].type = "claymore"; +/* 1:57 */waypoints[135].children[0] = 136; +/* 1:57 */waypoints[135].angles = (70.5914, 9.83093, 0); +/* 1:57 */waypoints[136] = spawnstruct(); +/* 1:57 */waypoints[136].origin = (-498.587, 822.432, -95.875); +/* 1:57 */waypoints[136].type = "stand"; +/* 1:57 */waypoints[136].children[0] = 135; +/* 1:57 */waypoints[136].children[1] = 58; +/* 1:57 */waypoints[136].children[2] = 61; +/* 1:57 */waypoints[136].children[3] = 59; +/* 1:57 */waypoints[137] = spawnstruct(); +/* 1:57 */waypoints[137].origin = (702.557, -894.281, -68.7618); +/* 1:57 */waypoints[137].type = "grenade"; +/* 1:57 */waypoints[137].children[0] = 87; +/* 1:57 */waypoints[137].angles = (-20.7159, 89.1687, 0); +/* 1:57 */waypoints[138] = spawnstruct(); +/* 1:57 */waypoints[138].origin = (-214.536, -940.646, -67.8172); +/* 1:57 */waypoints[138].type = "grenade"; +/* 1:57 */waypoints[138].children[0] = 26; +/* 1:57 */waypoints[138].angles = (-5.91736, 128.335, 0); +/* 1:57 */waypoints[139] = spawnstruct(); +/* 1:57 */waypoints[139].origin = (-1773.24, 23.1395, -46.1821); +/* 1:57 */waypoints[139].type = "grenade"; +/* 1:57 */waypoints[139].children[0] = 114; +/* 1:57 */waypoints[139].angles = (-18.4528, -87.486, 0); +/* 1:57 */waypoints[140] = spawnstruct(); +/* 1:57 */waypoints[140].origin = (-714.925, 165.125, -67.875); +/* 1:57 */waypoints[140].type = "crouch"; +/* 1:57 */waypoints[140].children[0] = 150; +/* 1:57 */waypoints[140].angles = (6.9751, 115.838, 0); +/* 1:57 */waypoints[141] = spawnstruct(); +/* 1:57 */waypoints[141].origin = (-435.07, 16.6627, -67.875); +/* 1:57 */waypoints[141].type = "grenade"; +/* 1:57 */waypoints[141].children[0] = 117; +/* 1:57 */waypoints[141].angles = (-22.0508, -156.118, 0); +/* 1:57 */waypoints[142] = spawnstruct(); +/* 1:57 */waypoints[142].origin = (614.728, -1721.55, -60.875); +/* 1:57 */waypoints[142].type = "stand"; +/* 1:57 */waypoints[142].children[0] = 92; +/* 1:57 */waypoints[143] = spawnstruct(); +/* 1:57 */waypoints[143].origin = (272.649, -994.08, -69.7291); +/* 1:57 */waypoints[143].type = "grenade"; +/* 1:57 */waypoints[143].children[0] = 80; +/* 1:57 */waypoints[143].angles = (-17.4475, 86.1969, 0); +/* 1:57 */waypoints[144] = spawnstruct(); +/* 1:57 */waypoints[144].origin = (-1453.29, -1127.88, 2.125); +/* 1:57 */waypoints[144].type = "grenade"; +/* 1:57 */waypoints[144].children[0] = 124; +/* 1:57 */waypoints[144].angles = (-17.5354, 123.056, 0.0384521); +/* 1:57 */waypoints[145] = spawnstruct(); +/* 1:57 */waypoints[145].origin = (997.568, 1330.96, -87.875); +/* 1:57 */waypoints[145].type = "stand"; +/* 1:57 */waypoints[145].children[0] = 73; +/* 1:57 */waypoints[145].children[1] = 146; +/* 1:57 */waypoints[146] = spawnstruct(); +/* 1:57 */waypoints[146].origin = (1003.47, 1111.62, -87.875); +/* 1:57 */waypoints[146].type = "stand"; +/* 1:57 */waypoints[146].children[0] = 145; +/* 1:57 */waypoints[146].children[1] = 147; +/* 1:57 */waypoints[147] = spawnstruct(); +/* 1:57 */waypoints[147].origin = (714.56, 1028.01, -99.8719); +/* 1:57 */waypoints[147].type = "stand"; +/* 1:57 */waypoints[147].children[0] = 146; +/* 1:57 */waypoints[147].children[1] = 73; +/* 1:57 */waypoints[147].children[2] = 74; +/* 1:57 */waypoints[148] = spawnstruct(); +/* 1:57 */waypoints[148].origin = (679.216, -1383.4, -73.3097); +/* 1:57 */waypoints[148].type = "stand"; +/* 1:57 */waypoints[148].children[0] = 93; +/* 1:57 */waypoints[148].children[1] = 92; +/* 1:57 */waypoints[148].children[2] = 88; +/* 1:57 */waypoints[149] = spawnstruct(); +/* 1:57 */waypoints[149].origin = (-1318.81, -1556.59, 4.125); +/* 1:57 */waypoints[149].type = "stand"; +/* 1:57 */waypoints[149].children[0] = 132; +/* 1:57 */waypoints[149].children[1] = 2; +/* 1:57 */waypoints[150] = spawnstruct(); +/* 1:57 */waypoints[150].origin = (-784.575, 170.894, -67.875); +/* 1:57 */waypoints[150].type = "stand"; +/* 1:57 */waypoints[150].children[0] = 140; +/* 1:57 */waypoints[150].children[1] = 36; +/* 1:57 */waypoints[150].children[2] = 35; +/* 1:57 */waypoints[151] = spawnstruct(); +/* 1:57 */waypoints[151].origin = (-1497.14, -456.128, 80.125); +/* 1:57 */waypoints[151].type = "stand"; +/* 1:57 */waypoints[151].children[0] = 129; +/* 1:57 */waypoints[151].children[1] = 44; +/* 1:57 */waypoints[151].children[2] = 128; +/* 1:57 */waypoints[152] = spawnstruct(); +/* 1:57 */waypoints[152].origin = (-1626.26, 1044.57, -51.875); +/* 1:57 */waypoints[152].type = "stand"; +/* 1:57 */waypoints[152].children[0] = 69; +/* 1:57 */waypoints[152].children[1] = 153; +/* 1:57 */waypoints[152].children[2] = 66; +/* 1:57 */waypoints[153] = spawnstruct(); +/* 1:57 */waypoints[153].origin = (-1704.74, 605.19, -51.875); +/* 1:57 */waypoints[153].type = "stand"; +/* 1:57 */waypoints[153].children[0] = 152; +/* 1:57 */waypoints[153].children[1] = 109; +/* 1:57 */waypoints[153].children[2] = 68; +/* 1:57 */waypoints[154] = spawnstruct(); +/* 1:57 */waypoints[154].origin = (-1657.27, -258.02, 79.9948); +/* 1:57 */waypoints[154].type = "climb"; +/* 1:57 */waypoints[154].children[0] = 56; +/* 1:57 */waypoints[154].children[1] = 54; +/* 1:57 */waypoints[154].angles = (1.9281, -90.2252, 0); +/* 1:57 */waypoints[155] = spawnstruct(); +/* 1:57 */waypoints[155].origin = (-1287.83, 522.259, -53.5349); +/* 1:57 */waypoints[155].type = "stand"; +/* 1:57 */waypoints[155].children[0] = 53; +/* 1:57 */waypoints[155].children[1] = 70; +/* 1:57 */waypoints[155].children[2] = 35; +/* 1:57 */return waypoints; +} \ No newline at end of file diff --git a/raw/maps/mp/bots/waypoints/carbon.gsc b/raw/maps/mp/bots/waypoints/carbon.gsc new file mode 100644 index 0000000..6c6bf1b --- /dev/null +++ b/raw/maps/mp/bots/waypoints/carbon.gsc @@ -0,0 +1,1084 @@ +Carbon() +{ +/* 52:43 */waypoints = []; +/* 52:43 */waypoints[0] = spawnstruct(); +/* 52:43 */waypoints[0].origin = (-176.454, -2918.08, 3929.41); +/* 52:43 */waypoints[0].type = "stand"; +/* 52:43 */waypoints[0].children[0] = 1; +/* 52:43 */waypoints[0].children[1] = 2; +/* 52:43 */waypoints[0].children[2] = 3; +/* 52:43 */waypoints[1] = spawnstruct(); +/* 52:43 */waypoints[1].origin = (171.346, -2821.45, 3945.13); +/* 52:43 */waypoints[1].type = "stand"; +/* 52:43 */waypoints[1].children[0] = 0; +/* 52:43 */waypoints[1].children[1] = 4; +/* 52:43 */waypoints[2] = spawnstruct(); +/* 52:43 */waypoints[2].origin = (-171.132, -3457.83, 3898.12); +/* 52:43 */waypoints[2].type = "stand"; +/* 52:43 */waypoints[2].children[0] = 0; +/* 52:43 */waypoints[2].children[1] = 3; +/* 52:43 */waypoints[2].children[2] = 5; +/* 52:43 */waypoints[2].children[3] = 95; +/* 52:43 */waypoints[2].children[4] = 97; +/* 52:43 */waypoints[2].children[5] = 105; +/* 52:43 */waypoints[2].children[6] = 161; +/* 52:43 */waypoints[3] = spawnstruct(); +/* 52:43 */waypoints[3].origin = (-368.216, -3151.53, 3910.95); +/* 52:43 */waypoints[3].type = "stand"; +/* 52:43 */waypoints[3].children[0] = 2; +/* 52:43 */waypoints[3].children[1] = 0; +/* 52:43 */waypoints[3].children[2] = 8; +/* 52:43 */waypoints[4] = spawnstruct(); +/* 52:43 */waypoints[4].origin = (436.108, -3328.38, 3949.13); +/* 52:43 */waypoints[4].type = "stand"; +/* 52:43 */waypoints[4].children[0] = 1; +/* 52:43 */waypoints[4].children[1] = 5; +/* 52:43 */waypoints[5] = spawnstruct(); +/* 52:43 */waypoints[5].origin = (330.211, -3366.84, 3949.13); +/* 52:43 */waypoints[5].type = "stand"; +/* 52:43 */waypoints[5].children[0] = 6; +/* 52:43 */waypoints[5].children[1] = 4; +/* 52:43 */waypoints[5].children[2] = 2; +/* 52:43 */waypoints[6] = spawnstruct(); +/* 52:43 */waypoints[6].origin = (475.921, -3801.69, 3927.99); +/* 52:43 */waypoints[6].type = "stand"; +/* 52:43 */waypoints[6].children[0] = 7; +/* 52:43 */waypoints[6].children[1] = 5; +/* 52:43 */waypoints[6].children[2] = 97; +/* 52:43 */waypoints[7] = spawnstruct(); +/* 52:43 */waypoints[7].origin = (722.305, -3724.3, 3924.01); +/* 52:43 */waypoints[7].type = "stand"; +/* 52:43 */waypoints[7].children[0] = 6; +/* 52:43 */waypoints[8] = spawnstruct(); +/* 52:43 */waypoints[8].origin = (-405.794, -2907.02, 3948.13); +/* 52:43 */waypoints[8].type = "stand"; +/* 52:43 */waypoints[8].children[0] = 3; +/* 52:43 */waypoints[8].children[1] = 9; +/* 52:43 */waypoints[8].children[2] = 11; +/* 52:43 */waypoints[9] = spawnstruct(); +/* 52:43 */waypoints[9].origin = (-661.956, -2951.51, 3948.13); +/* 52:43 */waypoints[9].type = "stand"; +/* 52:43 */waypoints[9].children[0] = 10; +/* 52:43 */waypoints[9].children[1] = 8; +/* 52:43 */waypoints[9].children[2] = 13; +/* 52:43 */waypoints[10] = spawnstruct(); +/* 52:43 */waypoints[10].origin = (-645.617, -3039.83, 3912.29); +/* 52:43 */waypoints[10].type = "climb"; +/* 52:43 */waypoints[10].children[0] = 9; +/* 52:43 */waypoints[10].children[1] = 18; +/* 52:43 */waypoints[10].angles = (2.73987, 94.7076, 0); +/* 52:43 */waypoints[11] = spawnstruct(); +/* 52:43 */waypoints[11].origin = (-526.027, -2752.15, 3948.13); +/* 52:43 */waypoints[11].type = "stand"; +/* 52:43 */waypoints[11].children[0] = 8; +/* 52:43 */waypoints[11].children[1] = 12; +/* 52:43 */waypoints[12] = spawnstruct(); +/* 52:43 */waypoints[12].origin = (-501.571, -2566.94, 3948.13); +/* 52:43 */waypoints[12].type = "stand"; +/* 52:43 */waypoints[12].children[0] = 13; +/* 52:43 */waypoints[12].children[1] = 11; +/* 52:43 */waypoints[13] = spawnstruct(); +/* 52:43 */waypoints[13].origin = (-853.455, -2773.24, 3948.13); +/* 52:43 */waypoints[13].type = "stand"; +/* 52:43 */waypoints[13].children[0] = 12; +/* 52:43 */waypoints[13].children[1] = 9; +/* 52:43 */waypoints[13].children[2] = 14; +/* 52:43 */waypoints[13].children[3] = 157; +/* 52:43 */waypoints[14] = spawnstruct(); +/* 52:43 */waypoints[14].origin = (-1013.1, -2800.27, 3930.6); +/* 52:43 */waypoints[14].type = "stand"; +/* 52:43 */waypoints[14].children[0] = 16; +/* 52:43 */waypoints[14].children[1] = 13; +/* 52:43 */waypoints[14].children[2] = 17; +/* 52:43 */waypoints[15] = spawnstruct(); +/* 52:43 */waypoints[15].origin = (-1291.34, -2913.19, 3819.4); +/* 52:43 */waypoints[15].type = "stand"; +/* 52:43 */waypoints[15].children[0] = 16; +/* 52:43 */waypoints[15].children[1] = 23; +/* 52:43 */waypoints[15].children[2] = 135; +/* 52:43 */waypoints[16] = spawnstruct(); +/* 52:43 */waypoints[16].origin = (-1033.53, -2942.27, 3913.96); +/* 52:43 */waypoints[16].type = "stand"; +/* 52:43 */waypoints[16].children[0] = 15; +/* 52:43 */waypoints[16].children[1] = 14; +/* 52:43 */waypoints[16].children[2] = 17; +/* 52:43 */waypoints[16].children[3] = 157; +/* 52:43 */waypoints[17] = spawnstruct(); +/* 52:43 */waypoints[17].origin = (-853.542, -3128.53, 3911.67); +/* 52:43 */waypoints[17].type = "stand"; +/* 52:43 */waypoints[17].children[0] = 18; +/* 52:43 */waypoints[17].children[1] = 16; +/* 52:43 */waypoints[17].children[2] = 14; +/* 52:43 */waypoints[17].children[3] = 19; +/* 52:43 */waypoints[18] = spawnstruct(); +/* 52:43 */waypoints[18].origin = (-634.598, -3156.53, 3905.9); +/* 52:43 */waypoints[18].type = "stand"; +/* 52:43 */waypoints[18].children[0] = 10; +/* 52:43 */waypoints[18].children[1] = 17; +/* 52:43 */waypoints[18].children[2] = 99; +/* 52:43 */waypoints[18].children[3] = 106; +/* 52:43 */waypoints[19] = spawnstruct(); +/* 52:43 */waypoints[19].origin = (-862.786, -3276.68, 3922.13); +/* 52:43 */waypoints[19].type = "stand"; +/* 52:43 */waypoints[19].children[0] = 17; +/* 52:43 */waypoints[19].children[1] = 20; +/* 52:43 */waypoints[20] = spawnstruct(); +/* 52:43 */waypoints[20].origin = (-1035.84, -3467.77, 3922.13); +/* 52:43 */waypoints[20].type = "stand"; +/* 52:43 */waypoints[20].children[0] = 19; +/* 52:43 */waypoints[20].children[1] = 21; +/* 52:43 */waypoints[20].children[2] = 100; +/* 52:43 */waypoints[20].children[3] = 103; +/* 52:43 */waypoints[20].children[4] = 146; +/* 52:43 */waypoints[21] = spawnstruct(); +/* 52:43 */waypoints[21].origin = (-1435.27, -3589.4, 3918.63); +/* 52:43 */waypoints[21].type = "stand"; +/* 52:43 */waypoints[21].children[0] = 20; +/* 52:43 */waypoints[21].children[1] = 22; +/* 52:43 */waypoints[21].children[2] = 107; +/* 52:43 */waypoints[22] = spawnstruct(); +/* 52:43 */waypoints[22].origin = (-1443.29, -3241.67, 3750.93); +/* 52:43 */waypoints[22].type = "stand"; +/* 52:43 */waypoints[22].children[0] = 21; +/* 52:43 */waypoints[22].children[1] = 23; +/* 52:43 */waypoints[22].children[2] = 24; +/* 52:43 */waypoints[22].children[3] = 135; +/* 52:43 */waypoints[23] = spawnstruct(); +/* 52:43 */waypoints[23].origin = (-1469.22, -2923.21, 3774.38); +/* 52:43 */waypoints[23].type = "stand"; +/* 52:43 */waypoints[23].children[0] = 22; +/* 52:43 */waypoints[23].children[1] = 15; +/* 52:43 */waypoints[23].children[2] = 24; +/* 52:43 */waypoints[23].children[3] = 135; +/* 52:43 */waypoints[24] = spawnstruct(); +/* 52:43 */waypoints[24].origin = (-1693.46, -2989.02, 3751.72); +/* 52:43 */waypoints[24].type = "stand"; +/* 52:43 */waypoints[24].children[0] = 25; +/* 52:43 */waypoints[24].children[1] = 23; +/* 52:43 */waypoints[24].children[2] = 29; +/* 52:43 */waypoints[24].children[3] = 26; +/* 52:43 */waypoints[24].children[4] = 22; +/* 52:43 */waypoints[24].children[5] = 135; +/* 52:43 */waypoints[25] = spawnstruct(); +/* 52:43 */waypoints[25].origin = (-1893.57, -2985.65, 3758.13); +/* 52:43 */waypoints[25].type = "stand"; +/* 52:43 */waypoints[25].children[0] = 24; +/* 52:43 */waypoints[25].children[1] = 29; +/* 52:43 */waypoints[25].children[2] = 26; +/* 52:43 */waypoints[26] = spawnstruct(); +/* 52:43 */waypoints[26].origin = (-1964.23, -3111.98, 3758.13); +/* 52:43 */waypoints[26].type = "stand"; +/* 52:43 */waypoints[26].children[0] = 25; +/* 52:43 */waypoints[26].children[1] = 27; +/* 52:43 */waypoints[26].children[2] = 24; +/* 52:43 */waypoints[27] = spawnstruct(); +/* 52:43 */waypoints[27].origin = (-2353.6, -3113.13, 3758.13); +/* 52:43 */waypoints[27].type = "stand"; +/* 52:43 */waypoints[27].children[0] = 26; +/* 52:43 */waypoints[27].children[1] = 28; +/* 52:43 */waypoints[27].children[2] = 30; +/* 52:43 */waypoints[27].children[3] = 137; +/* 52:43 */waypoints[28] = spawnstruct(); +/* 52:43 */waypoints[28].origin = (-2337.61, -2873.52, 3758.13); +/* 52:43 */waypoints[28].type = "stand"; +/* 52:43 */waypoints[28].children[0] = 27; +/* 52:43 */waypoints[28].children[1] = 29; +/* 52:43 */waypoints[28].children[2] = 30; +/* 52:43 */waypoints[29] = spawnstruct(); +/* 52:43 */waypoints[29].origin = (-1961.61, -2876.83, 3758.13); +/* 52:43 */waypoints[29].type = "stand"; +/* 52:43 */waypoints[29].children[0] = 25; +/* 52:43 */waypoints[29].children[1] = 28; +/* 52:43 */waypoints[29].children[2] = 24; +/* 52:43 */waypoints[30] = spawnstruct(); +/* 52:43 */waypoints[30].origin = (-2413.11, -2971.49, 3758.13); +/* 52:43 */waypoints[30].type = "stand"; +/* 52:43 */waypoints[30].children[0] = 27; +/* 52:43 */waypoints[30].children[1] = 28; +/* 52:43 */waypoints[30].children[2] = 31; +/* 52:43 */waypoints[31] = spawnstruct(); +/* 52:43 */waypoints[31].origin = (-2423.77, -2972.47, 3758.13); +/* 52:43 */waypoints[31].type = "stand"; +/* 52:43 */waypoints[31].children[0] = 30; +/* 52:43 */waypoints[31].children[1] = 32; +/* 52:43 */waypoints[32] = spawnstruct(); +/* 52:43 */waypoints[32].origin = (-2662.62, -3058.02, 3758.13); +/* 52:43 */waypoints[32].type = "stand"; +/* 52:43 */waypoints[32].children[0] = 31; +/* 52:43 */waypoints[32].children[1] = 33; +/* 52:43 */waypoints[32].children[2] = 78; +/* 52:43 */waypoints[33] = spawnstruct(); +/* 52:43 */waypoints[33].origin = (-2799.88, -3061.27, 3758.13); +/* 52:43 */waypoints[33].type = "stand"; +/* 52:43 */waypoints[33].children[0] = 34; +/* 52:43 */waypoints[33].children[1] = 32; +/* 52:43 */waypoints[33].children[2] = 78; +/* 52:43 */waypoints[34] = spawnstruct(); +/* 52:43 */waypoints[34].origin = (-2978.02, -2831.69, 3758.13); +/* 52:43 */waypoints[34].type = "stand"; +/* 52:43 */waypoints[34].children[0] = 35; +/* 52:43 */waypoints[34].children[1] = 33; +/* 52:43 */waypoints[34].children[2] = 36; +/* 52:43 */waypoints[34].children[3] = 80; +/* 52:43 */waypoints[35] = spawnstruct(); +/* 52:43 */waypoints[35].origin = (-3369.24, -3031.49, 3747.73); +/* 52:43 */waypoints[35].type = "stand"; +/* 52:43 */waypoints[35].children[0] = 36; +/* 52:43 */waypoints[35].children[1] = 34; +/* 52:43 */waypoints[35].children[2] = 37; +/* 52:43 */waypoints[35].children[3] = 80; +/* 52:43 */waypoints[36] = spawnstruct(); +/* 52:43 */waypoints[36].origin = (-3347.56, -2680.61, 3744.64); +/* 52:43 */waypoints[36].type = "stand"; +/* 52:43 */waypoints[36].children[0] = 35; +/* 52:43 */waypoints[36].children[1] = 34; +/* 52:43 */waypoints[37] = spawnstruct(); +/* 52:43 */waypoints[37].origin = (-3547.25, -3032.19, 3754.13); +/* 52:43 */waypoints[37].type = "stand"; +/* 52:43 */waypoints[37].children[0] = 35; +/* 52:43 */waypoints[37].children[1] = 38; +/* 52:43 */waypoints[37].children[2] = 41; +/* 52:43 */waypoints[38] = spawnstruct(); +/* 52:43 */waypoints[38].origin = (-3550.07, -3249, 3754.13); +/* 52:43 */waypoints[38].type = "stand"; +/* 52:43 */waypoints[38].children[0] = 39; +/* 52:43 */waypoints[38].children[1] = 37; +/* 52:43 */waypoints[39] = spawnstruct(); +/* 52:43 */waypoints[39].origin = (-3728.36, -3241.32, 3754.13); +/* 52:43 */waypoints[39].type = "stand"; +/* 52:43 */waypoints[39].children[0] = 40; +/* 52:43 */waypoints[39].children[1] = 38; +/* 52:43 */waypoints[40] = spawnstruct(); +/* 52:43 */waypoints[40].origin = (-3697.25, -3185.13, 3754.13); +/* 52:43 */waypoints[40].type = "climb"; +/* 52:43 */waypoints[40].children[0] = 39; +/* 52:43 */waypoints[40].angles = (18.8788, 95.7953, 0); +/* 52:43 */waypoints[41] = spawnstruct(); +/* 52:43 */waypoints[41].origin = (-3733.26, -2993.74, 3722.13); +/* 52:43 */waypoints[41].type = "climb"; +/* 52:43 */waypoints[41].children[0] = 37; +/* 52:43 */waypoints[41].children[1] = 42; +/* 52:43 */waypoints[41].angles = (41.5601, -90.7965, 0); +/* 52:43 */waypoints[42] = spawnstruct(); +/* 52:43 */waypoints[42].origin = (-3737, -3224.43, 3618.13); +/* 52:43 */waypoints[42].type = "climb"; +/* 52:43 */waypoints[42].children[0] = 41; +/* 52:43 */waypoints[42].children[1] = 43; +/* 52:43 */waypoints[42].children[2] = 47; +/* 52:43 */waypoints[42].children[3] = 45; +/* 52:43 */waypoints[42].angles = (9.27124, -90.9833, 0); +/* 52:43 */waypoints[43] = spawnstruct(); +/* 52:43 */waypoints[43].origin = (-3447.84, -3196.75, 3635.36); +/* 52:43 */waypoints[43].type = "climb"; +/* 52:43 */waypoints[43].children[0] = 44; +/* 52:43 */waypoints[43].children[1] = 42; +/* 52:43 */waypoints[43].angles = (42.1368, 1.46667, 0); +/* 52:43 */waypoints[44] = spawnstruct(); +/* 52:43 */waypoints[44].origin = (-3372.78, -3207.03, 3569.97); +/* 52:43 */waypoints[44].type = "stand"; +/* 52:43 */waypoints[44].children[0] = 43; +/* 52:43 */waypoints[44].children[1] = 49; +/* 52:43 */waypoints[45] = spawnstruct(); +/* 52:43 */waypoints[45].origin = (-3978.84, -3249.56, 3618.13); +/* 52:43 */waypoints[45].type = "stand"; +/* 52:43 */waypoints[45].children[0] = 42; +/* 52:43 */waypoints[45].children[1] = 46; +/* 52:43 */waypoints[46] = spawnstruct(); +/* 52:43 */waypoints[46].origin = (-3965.93, -3406.66, 3618.13); +/* 52:43 */waypoints[46].type = "stand"; +/* 52:43 */waypoints[46].children[0] = 45; +/* 52:43 */waypoints[46].children[1] = 47; +/* 52:43 */waypoints[47] = spawnstruct(); +/* 52:43 */waypoints[47].origin = (-3733.54, -3363.43, 3618.13); +/* 52:43 */waypoints[47].type = "stand"; +/* 52:43 */waypoints[47].children[0] = 42; +/* 52:43 */waypoints[47].children[1] = 46; +/* 52:43 */waypoints[47].children[2] = 48; +/* 52:43 */waypoints[48] = spawnstruct(); +/* 52:43 */waypoints[48].origin = (-3745.51, -3627.35, 3568.97); +/* 52:43 */waypoints[48].type = "stand"; +/* 52:43 */waypoints[48].children[0] = 47; +/* 52:43 */waypoints[48].children[1] = 49; +/* 52:43 */waypoints[48].children[2] = 54; +/* 52:43 */waypoints[48].children[3] = 53; +/* 52:43 */waypoints[49] = spawnstruct(); +/* 52:43 */waypoints[49].origin = (-3249.79, -3526.4, 3570.14); +/* 52:43 */waypoints[49].type = "stand"; +/* 52:43 */waypoints[49].children[0] = 48; +/* 52:43 */waypoints[49].children[1] = 44; +/* 52:43 */waypoints[49].children[2] = 51; +/* 52:43 */waypoints[49].children[3] = 73; +/* 52:43 */waypoints[50] = spawnstruct(); +/* 52:43 */waypoints[50].origin = (-3279.92, -3932.61, 3569.44); +/* 52:43 */waypoints[50].type = "stand"; +/* 52:43 */waypoints[50].children[0] = 52; +/* 52:43 */waypoints[50].children[1] = 53; +/* 52:43 */waypoints[51] = spawnstruct(); +/* 52:43 */waypoints[51].origin = (-3247.12, -3716.75, 3572.63); +/* 52:43 */waypoints[51].type = "climb"; +/* 52:43 */waypoints[51].children[0] = 49; +/* 52:43 */waypoints[51].children[1] = 52; +/* 52:43 */waypoints[51].children[2] = 53; +/* 52:43 */waypoints[51].children[3] = 74; +/* 52:43 */waypoints[51].angles = (2.34987, 16.6278, 0); +/* 52:43 */waypoints[52] = spawnstruct(); +/* 52:43 */waypoints[52].origin = (-3247.12, -3747.96, 3572.63); +/* 52:43 */waypoints[52].type = "climb"; +/* 52:43 */waypoints[52].children[0] = 51; +/* 52:43 */waypoints[52].children[1] = 50; +/* 52:43 */waypoints[52].children[2] = 53; +/* 52:43 */waypoints[52].children[3] = 72; +/* 52:43 */waypoints[52].children[4] = 74; +/* 52:43 */waypoints[52].angles = (-0.91856, -17.5781, 0); +/* 52:43 */waypoints[53] = spawnstruct(); +/* 52:43 */waypoints[53].origin = (-3567.79, -3911.07, 3571.04); +/* 52:43 */waypoints[53].type = "stand"; +/* 52:43 */waypoints[53].children[0] = 55; +/* 52:43 */waypoints[53].children[1] = 48; +/* 52:43 */waypoints[53].children[2] = 50; +/* 52:43 */waypoints[53].children[3] = 52; +/* 52:43 */waypoints[53].children[4] = 51; +/* 52:43 */waypoints[54] = spawnstruct(); +/* 52:43 */waypoints[54].origin = (-3861.2, -4051.16, 3602.51); +/* 52:43 */waypoints[54].type = "stand"; +/* 52:43 */waypoints[54].children[0] = 48; +/* 52:43 */waypoints[54].children[1] = 55; +/* 52:43 */waypoints[55] = spawnstruct(); +/* 52:43 */waypoints[55].origin = (-3610.21, -4264.01, 3572.19); +/* 52:43 */waypoints[55].type = "stand"; +/* 52:43 */waypoints[55].children[0] = 54; +/* 52:43 */waypoints[55].children[1] = 53; +/* 52:43 */waypoints[55].children[2] = 56; +/* 52:43 */waypoints[55].children[3] = 64; +/* 52:43 */waypoints[55].children[4] = 83; +/* 52:43 */waypoints[55].children[5] = 165; +/* 52:43 */waypoints[56] = spawnstruct(); +/* 52:43 */waypoints[56].origin = (-3550.47, -4417.69, 3572.12); +/* 52:43 */waypoints[56].type = "stand"; +/* 52:43 */waypoints[56].children[0] = 55; +/* 52:43 */waypoints[56].children[1] = 57; +/* 52:43 */waypoints[57] = spawnstruct(); +/* 52:43 */waypoints[57].origin = (-3550.64, -4552.22, 3576.13); +/* 52:43 */waypoints[57].type = "stand"; +/* 52:43 */waypoints[57].children[0] = 56; +/* 52:43 */waypoints[57].children[1] = 59; +/* 52:43 */waypoints[57].children[2] = 58; +/* 52:43 */waypoints[57].children[3] = 153; +/* 52:43 */waypoints[58] = spawnstruct(); +/* 52:43 */waypoints[58].origin = (-3513.5, -4709.88, 3576.13); +/* 52:43 */waypoints[58].type = "stand"; +/* 52:43 */waypoints[58].children[0] = 57; +/* 52:43 */waypoints[58].children[1] = 59; +/* 52:43 */waypoints[58].children[2] = 61; +/* 52:43 */waypoints[58].children[3] = 151; +/* 52:43 */waypoints[59] = spawnstruct(); +/* 52:43 */waypoints[59].origin = (-3377.76, -4543.7, 3576.13); +/* 52:43 */waypoints[59].type = "stand"; +/* 52:43 */waypoints[59].children[0] = 57; +/* 52:43 */waypoints[59].children[1] = 60; +/* 52:43 */waypoints[59].children[2] = 58; +/* 52:43 */waypoints[59].children[3] = 149; +/* 52:43 */waypoints[60] = spawnstruct(); +/* 52:43 */waypoints[60].origin = (-3117.4, -4534.17, 3568.95); +/* 52:43 */waypoints[60].type = "stand"; +/* 52:43 */waypoints[60].children[0] = 59; +/* 52:43 */waypoints[60].children[1] = 65; +/* 52:43 */waypoints[60].children[2] = 64; +/* 52:43 */waypoints[60].children[3] = 66; +/* 52:43 */waypoints[60].children[4] = 83; +/* 52:43 */waypoints[61] = spawnstruct(); +/* 52:43 */waypoints[61].origin = (-3264.53, -4708.67, 3712.13); +/* 52:43 */waypoints[61].type = "stand"; +/* 52:43 */waypoints[61].children[0] = 58; +/* 52:43 */waypoints[61].children[1] = 63; +/* 52:43 */waypoints[61].children[2] = 152; +/* 52:43 */waypoints[62] = spawnstruct(); +/* 52:43 */waypoints[62].origin = (-2494.33, -4658.56, 3734.41); +/* 52:43 */waypoints[62].type = "stand"; +/* 52:43 */waypoints[62].children[0] = 63; +/* 52:43 */waypoints[62].children[1] = 68; +/* 52:43 */waypoints[62].children[2] = 69; +/* 52:43 */waypoints[62].children[3] = 132; +/* 52:43 */waypoints[62].children[4] = 133; +/* 52:43 */waypoints[63] = spawnstruct(); +/* 52:43 */waypoints[63].origin = (-2983.23, -4711.59, 3711.13); +/* 52:43 */waypoints[63].type = "stand"; +/* 52:43 */waypoints[63].children[0] = 62; +/* 52:43 */waypoints[63].children[1] = 61; +/* 52:43 */waypoints[64] = spawnstruct(); +/* 52:43 */waypoints[64].origin = (-2889.74, -4207.05, 3568.23); +/* 52:43 */waypoints[64].type = "stand"; +/* 52:43 */waypoints[64].children[0] = 60; +/* 52:43 */waypoints[64].children[1] = 66; +/* 52:43 */waypoints[64].children[2] = 72; +/* 52:43 */waypoints[64].children[3] = 55; +/* 52:43 */waypoints[64].children[4] = 83; +/* 52:43 */waypoints[65] = spawnstruct(); +/* 52:43 */waypoints[65].origin = (-2992.57, -5022.78, 3610.81); +/* 52:43 */waypoints[65].type = "crouch"; +/* 52:43 */waypoints[65].children[0] = 60; +/* 52:43 */waypoints[65].angles = (-2.83567, 11.8597, 0); +/* 52:43 */waypoints[66] = spawnstruct(); +/* 52:43 */waypoints[66].origin = (-2923.12, -4908.98, 3602.54); +/* 52:43 */waypoints[66].type = "stand"; +/* 52:43 */waypoints[66].children[0] = 64; +/* 52:43 */waypoints[66].children[1] = 60; +/* 52:43 */waypoints[66].children[2] = 67; +/* 52:43 */waypoints[66].children[3] = 169; +/* 52:43 */waypoints[67] = spawnstruct(); +/* 52:43 */waypoints[67].origin = (-2760.96, -5029.77, 3629); +/* 52:43 */waypoints[67].type = "stand"; +/* 52:43 */waypoints[67].children[0] = 66; +/* 52:43 */waypoints[67].children[1] = 71; +/* 52:43 */waypoints[67].children[2] = 169; +/* 52:43 */waypoints[68] = spawnstruct(); +/* 52:43 */waypoints[68].origin = (-2379.8, -4894.13, 3701.1); +/* 52:43 */waypoints[68].type = "stand"; +/* 52:43 */waypoints[68].children[0] = 62; +/* 52:43 */waypoints[68].children[1] = 71; +/* 52:43 */waypoints[68].children[2] = 84; +/* 52:43 */waypoints[68].children[3] = 154; +/* 52:43 */waypoints[69] = spawnstruct(); +/* 52:43 */waypoints[69].origin = (-2511.08, -4815.67, 3720.13); +/* 52:43 */waypoints[69].type = "stand"; +/* 52:43 */waypoints[69].children[0] = 70; +/* 52:43 */waypoints[69].children[1] = 62; +/* 52:43 */waypoints[69].children[2] = 84; +/* 52:43 */waypoints[69].children[3] = 133; +/* 52:43 */waypoints[69].children[4] = 154; +/* 52:43 */waypoints[70] = spawnstruct(); +/* 52:43 */waypoints[70].origin = (-2651.17, -4854.59, 3654.63); +/* 52:43 */waypoints[70].type = "stand"; +/* 52:43 */waypoints[70].children[0] = 71; +/* 52:43 */waypoints[70].children[1] = 69; +/* 52:43 */waypoints[71] = spawnstruct(); +/* 52:43 */waypoints[71].origin = (-2605.46, -5006.06, 3635.36); +/* 52:43 */waypoints[71].type = "stand"; +/* 52:43 */waypoints[71].children[0] = 67; +/* 52:43 */waypoints[71].children[1] = 68; +/* 52:43 */waypoints[71].children[2] = 70; +/* 52:43 */waypoints[72] = spawnstruct(); +/* 52:43 */waypoints[72].origin = (-2899.96, -3829.88, 3608.13); +/* 52:43 */waypoints[72].type = "stand"; +/* 52:43 */waypoints[72].children[0] = 64; +/* 52:43 */waypoints[72].children[1] = 52; +/* 52:43 */waypoints[72].children[2] = 73; +/* 52:43 */waypoints[73] = spawnstruct(); +/* 52:43 */waypoints[73].origin = (-2931.01, -3535.42, 3608.13); +/* 52:43 */waypoints[73].type = "stand"; +/* 52:43 */waypoints[73].children[0] = 49; +/* 52:43 */waypoints[73].children[1] = 72; +/* 52:43 */waypoints[73].children[2] = 74; +/* 52:43 */waypoints[73].children[3] = 75; +/* 52:43 */waypoints[73].children[4] = 82; +/* 52:43 */waypoints[74] = spawnstruct(); +/* 52:43 */waypoints[74].origin = (-3075.2, -3663.5, 3608.13); +/* 52:43 */waypoints[74].type = "stand"; +/* 52:43 */waypoints[74].children[0] = 51; +/* 52:43 */waypoints[74].children[1] = 52; +/* 52:43 */waypoints[74].children[2] = 73; +/* 52:43 */waypoints[74].children[3] = 81; +/* 52:43 */waypoints[75] = spawnstruct(); +/* 52:43 */waypoints[75].origin = (-2887.99, -3448.8, 3608.13); +/* 52:43 */waypoints[75].type = "stand"; +/* 52:43 */waypoints[75].children[0] = 73; +/* 52:43 */waypoints[75].children[1] = 76; +/* 52:43 */waypoints[75].children[2] = 164; +/* 52:43 */waypoints[76] = spawnstruct(); +/* 52:43 */waypoints[76].origin = (-2606.92, -3448.07, 3744.13); +/* 52:43 */waypoints[76].type = "stand"; +/* 52:43 */waypoints[76].children[0] = 75; +/* 52:43 */waypoints[76].children[1] = 77; +/* 52:43 */waypoints[76].children[2] = 139; +/* 52:43 */waypoints[76].children[3] = 164; +/* 52:43 */waypoints[76].children[4] = 171; +/* 52:43 */waypoints[77] = spawnstruct(); +/* 52:43 */waypoints[77].origin = (-2611.15, -3325.88, 3747.91); +/* 52:43 */waypoints[77].type = "stand"; +/* 52:43 */waypoints[77].children[0] = 78; +/* 52:43 */waypoints[77].children[1] = 76; +/* 52:43 */waypoints[77].children[2] = 114; +/* 52:43 */waypoints[77].children[3] = 136; +/* 52:43 */waypoints[78] = spawnstruct(); +/* 52:43 */waypoints[78].origin = (-2890.96, -3308.67, 3746.75); +/* 52:43 */waypoints[78].type = "stand"; +/* 52:43 */waypoints[78].children[0] = 33; +/* 52:43 */waypoints[78].children[1] = 79; +/* 52:43 */waypoints[78].children[2] = 32; +/* 52:43 */waypoints[78].children[3] = 77; +/* 52:43 */waypoints[78].children[4] = 114; +/* 52:43 */waypoints[79] = spawnstruct(); +/* 52:43 */waypoints[79].origin = (-3099.61, -3194.76, 3746.88); +/* 52:43 */waypoints[79].type = "stand"; +/* 52:43 */waypoints[79].children[0] = 78; +/* 52:43 */waypoints[79].children[1] = 80; +/* 52:43 */waypoints[80] = spawnstruct(); +/* 52:43 */waypoints[80].origin = (-3167.92, -2969.28, 3749.74); +/* 52:43 */waypoints[80].type = "stand"; +/* 52:43 */waypoints[80].children[0] = 35; +/* 52:43 */waypoints[80].children[1] = 34; +/* 52:43 */waypoints[80].children[2] = 79; +/* 52:43 */waypoints[81] = spawnstruct(); +/* 52:43 */waypoints[81].origin = (-2681.13, -3743.02, 3608.13); +/* 52:43 */waypoints[81].type = "stand"; +/* 52:43 */waypoints[81].children[0] = 82; +/* 52:43 */waypoints[81].children[1] = 74; +/* 52:43 */waypoints[82] = spawnstruct(); +/* 52:43 */waypoints[82].origin = (-2682.83, -3534.33, 3608.13); +/* 52:43 */waypoints[82].type = "stand"; +/* 52:43 */waypoints[82].children[0] = 73; +/* 52:43 */waypoints[82].children[1] = 81; +/* 52:43 */waypoints[83] = spawnstruct(); +/* 52:43 */waypoints[83].origin = (-3024.6, -4416.07, 3566.72); +/* 52:43 */waypoints[83].type = "stand"; +/* 52:43 */waypoints[83].children[0] = 60; +/* 52:43 */waypoints[83].children[1] = 64; +/* 52:43 */waypoints[83].children[2] = 55; +/* 52:43 */waypoints[84] = spawnstruct(); +/* 52:43 */waypoints[84].origin = (-1640.13, -4660.28, 3756.19); +/* 52:43 */waypoints[84].type = "stand"; +/* 52:43 */waypoints[84].children[0] = 68; +/* 52:43 */waypoints[84].children[1] = 69; +/* 52:43 */waypoints[84].children[2] = 85; +/* 52:43 */waypoints[84].children[3] = 117; +/* 52:43 */waypoints[84].children[4] = 170; +/* 52:43 */waypoints[85] = spawnstruct(); +/* 52:43 */waypoints[85].origin = (-1205.74, -5033.35, 3827.87); +/* 52:43 */waypoints[85].type = "stand"; +/* 52:43 */waypoints[85].children[0] = 84; +/* 52:43 */waypoints[85].children[1] = 86; +/* 52:43 */waypoints[86] = spawnstruct(); +/* 52:43 */waypoints[86].origin = (-899.207, -4954.54, 3885.23); +/* 52:43 */waypoints[86].type = "stand"; +/* 52:43 */waypoints[86].children[0] = 85; +/* 52:43 */waypoints[86].children[1] = 87; +/* 52:43 */waypoints[86].children[2] = 91; +/* 52:43 */waypoints[86].children[3] = 92; +/* 52:43 */waypoints[87] = spawnstruct(); +/* 52:43 */waypoints[87].origin = (-1030.12, -4901.14, 3878.9); +/* 52:43 */waypoints[87].type = "stand"; +/* 52:43 */waypoints[87].children[0] = 86; +/* 52:43 */waypoints[87].children[1] = 88; +/* 52:43 */waypoints[88] = spawnstruct(); +/* 52:43 */waypoints[88].origin = (-1297.49, -4801.09, 3893.95); +/* 52:43 */waypoints[88].type = "stand"; +/* 52:43 */waypoints[88].children[0] = 89; +/* 52:43 */waypoints[88].children[1] = 90; +/* 52:43 */waypoints[88].children[2] = 87; +/* 52:43 */waypoints[88].children[3] = 160; +/* 52:43 */waypoints[89] = spawnstruct(); +/* 52:43 */waypoints[89].origin = (-1401.04, -4565.62, 3894.72); +/* 52:43 */waypoints[89].type = "climb"; +/* 52:43 */waypoints[89].children[0] = 88; +/* 52:43 */waypoints[89].angles = (16.5717, 95.4767, 0); +/* 52:43 */waypoints[90] = spawnstruct(); +/* 52:43 */waypoints[90].origin = (-1411.88, -4588.02, 3894.83); +/* 52:43 */waypoints[90].type = "climb"; +/* 52:43 */waypoints[90].children[0] = 88; +/* 52:43 */waypoints[90].angles = (49.0692, -171.711, 0); +/* 52:43 */waypoints[91] = spawnstruct(); +/* 52:43 */waypoints[91].origin = (-796.797, -4566.15, 3889.33); +/* 52:43 */waypoints[91].type = "stand"; +/* 52:43 */waypoints[91].children[0] = 86; +/* 52:43 */waypoints[91].children[1] = 93; +/* 52:43 */waypoints[92] = spawnstruct(); +/* 52:43 */waypoints[92].origin = (-341.878, -5049.96, 3903.69); +/* 52:43 */waypoints[92].type = "stand"; +/* 52:43 */waypoints[92].children[0] = 86; +/* 52:43 */waypoints[92].children[1] = 93; +/* 52:43 */waypoints[93] = spawnstruct(); +/* 52:43 */waypoints[93].origin = (-264.596, -4573.3, 3912.88); +/* 52:43 */waypoints[93].type = "stand"; +/* 52:43 */waypoints[93].children[0] = 92; +/* 52:43 */waypoints[93].children[1] = 91; +/* 52:43 */waypoints[93].children[2] = 96; +/* 52:43 */waypoints[93].children[3] = 98; +/* 52:43 */waypoints[93].children[4] = 94; +/* 52:43 */waypoints[93].children[5] = 162; +/* 52:43 */waypoints[94] = spawnstruct(); +/* 52:43 */waypoints[94].origin = (-300.537, -4072.21, 3904.51); +/* 52:43 */waypoints[94].type = "stand"; +/* 52:43 */waypoints[94].children[0] = 93; +/* 52:43 */waypoints[94].children[1] = 95; +/* 52:43 */waypoints[94].children[2] = 104; +/* 52:43 */waypoints[95] = spawnstruct(); +/* 52:43 */waypoints[95].origin = (-319.419, -3768.52, 3894.63); +/* 52:43 */waypoints[95].type = "stand"; +/* 52:43 */waypoints[95].children[0] = 94; +/* 52:43 */waypoints[95].children[1] = 2; +/* 52:43 */waypoints[95].children[2] = 97; +/* 52:43 */waypoints[95].children[3] = 99; +/* 52:43 */waypoints[95].children[4] = 104; +/* 52:43 */waypoints[96] = spawnstruct(); +/* 52:43 */waypoints[96].origin = (-14.984, -4230.32, 3913.94); +/* 52:43 */waypoints[96].type = "stand"; +/* 52:43 */waypoints[96].children[0] = 97; +/* 52:43 */waypoints[96].children[1] = 93; +/* 52:43 */waypoints[97] = spawnstruct(); +/* 52:43 */waypoints[97].origin = (-54.6846, -3866.53, 3902.88); +/* 52:43 */waypoints[97].type = "stand"; +/* 52:43 */waypoints[97].children[0] = 96; +/* 52:43 */waypoints[97].children[1] = 6; +/* 52:43 */waypoints[97].children[2] = 2; +/* 52:43 */waypoints[97].children[3] = 95; +/* 52:43 */waypoints[97].children[4] = 104; +/* 52:43 */waypoints[98] = spawnstruct(); +/* 52:43 */waypoints[98].origin = (-518.475, -4461.98, 3900.72); +/* 52:43 */waypoints[98].type = "stand"; +/* 52:43 */waypoints[98].children[0] = 93; +/* 52:43 */waypoints[98].children[1] = 120; +/* 52:43 */waypoints[99] = spawnstruct(); +/* 52:43 */waypoints[99].origin = (-621.65, -3774.94, 3911.59); +/* 52:43 */waypoints[99].type = "stand"; +/* 52:43 */waypoints[99].children[0] = 95; +/* 52:43 */waypoints[99].children[1] = 18; +/* 52:43 */waypoints[99].children[2] = 100; +/* 52:43 */waypoints[99].children[3] = 104; +/* 52:43 */waypoints[99].children[4] = 105; +/* 52:43 */waypoints[99].children[5] = 146; +/* 52:43 */waypoints[100] = spawnstruct(); +/* 52:43 */waypoints[100].origin = (-1089.98, -3774.13, 3922.13); +/* 52:43 */waypoints[100].type = "stand"; +/* 52:43 */waypoints[100].children[0] = 20; +/* 52:43 */waypoints[100].children[1] = 99; +/* 52:43 */waypoints[100].children[2] = 101; +/* 52:43 */waypoints[100].children[3] = 146; +/* 52:43 */waypoints[101] = spawnstruct(); +/* 52:43 */waypoints[101].origin = (-1099.73, -3973.91, 3882.13); +/* 52:43 */waypoints[101].type = "stand"; +/* 52:43 */waypoints[101].children[0] = 100; +/* 52:43 */waypoints[101].children[1] = 102; +/* 52:43 */waypoints[102] = spawnstruct(); +/* 52:43 */waypoints[102].origin = (-1337.87, -3971, 3762.13); +/* 52:43 */waypoints[102].type = "stand"; +/* 52:43 */waypoints[102].children[0] = 101; +/* 52:43 */waypoints[102].children[1] = 123; +/* 52:43 */waypoints[102].children[2] = 155; +/* 52:43 */waypoints[103] = spawnstruct(); +/* 52:43 */waypoints[103].origin = (-771.125, -3556.01, 3922.13); +/* 52:43 */waypoints[103].type = "crouch"; +/* 52:43 */waypoints[103].children[0] = 20; +/* 52:43 */waypoints[103].angles = (6.19507, 133.434, 0); +/* 52:43 */waypoints[104] = spawnstruct(); +/* 52:43 */waypoints[104].origin = (-318.997, -3900.92, 3896.54); +/* 52:43 */waypoints[104].type = "stand"; +/* 52:43 */waypoints[104].children[0] = 94; +/* 52:43 */waypoints[104].children[1] = 99; +/* 52:43 */waypoints[104].children[2] = 95; +/* 52:43 */waypoints[104].children[3] = 97; +/* 52:43 */waypoints[105] = spawnstruct(); +/* 52:43 */waypoints[105].origin = (-493.288, -3433.49, 3902.8); +/* 52:43 */waypoints[105].type = "stand"; +/* 52:43 */waypoints[105].children[0] = 2; +/* 52:43 */waypoints[105].children[1] = 99; +/* 52:43 */waypoints[105].children[2] = 106; +/* 52:43 */waypoints[106] = spawnstruct(); +/* 52:43 */waypoints[106].origin = (-629.455, -3443.19, 3907.93); +/* 52:43 */waypoints[106].type = "stand"; +/* 52:43 */waypoints[106].children[0] = 105; +/* 52:43 */waypoints[106].children[1] = 18; +/* 52:43 */waypoints[107] = spawnstruct(); +/* 52:43 */waypoints[107].origin = (-1875.77, -3585.4, 3918.63); +/* 52:43 */waypoints[107].type = "stand"; +/* 52:43 */waypoints[107].children[0] = 21; +/* 52:43 */waypoints[107].children[1] = 108; +/* 52:43 */waypoints[108] = spawnstruct(); +/* 52:43 */waypoints[108].origin = (-1995.99, -3725.82, 3918.63); +/* 52:43 */waypoints[108].type = "stand"; +/* 52:43 */waypoints[108].children[0] = 107; +/* 52:43 */waypoints[108].children[1] = 109; +/* 52:43 */waypoints[108].children[2] = 115; +/* 52:43 */waypoints[109] = spawnstruct(); +/* 52:43 */waypoints[109].origin = (-2203.44, -3703.56, 3918.63); +/* 52:43 */waypoints[109].type = "stand"; +/* 52:43 */waypoints[109].children[0] = 110; +/* 52:43 */waypoints[109].children[1] = 111; +/* 52:43 */waypoints[109].children[2] = 108; +/* 52:43 */waypoints[110] = spawnstruct(); +/* 52:43 */waypoints[110].origin = (-2337.09, -3610.85, 3918.63); +/* 52:43 */waypoints[110].type = "stand"; +/* 52:43 */waypoints[110].children[0] = 109; +/* 52:43 */waypoints[110].children[1] = 111; +/* 52:43 */waypoints[111] = spawnstruct(); +/* 52:43 */waypoints[111].origin = (-2208.11, -3604.49, 3918.63); +/* 52:43 */waypoints[111].type = "stand"; +/* 52:43 */waypoints[111].children[0] = 109; +/* 52:43 */waypoints[111].children[1] = 110; +/* 52:43 */waypoints[111].children[2] = 112; +/* 52:43 */waypoints[112] = spawnstruct(); +/* 52:43 */waypoints[112].origin = (-2208.3, -3410.23, 3918.63); +/* 52:43 */waypoints[112].type = "stand"; +/* 52:43 */waypoints[112].children[0] = 113; +/* 52:43 */waypoints[112].children[1] = 111; +/* 52:43 */waypoints[113] = spawnstruct(); +/* 52:43 */waypoints[113].origin = (-2269.01, -3220.33, 3918.63); +/* 52:43 */waypoints[113].type = "stand"; +/* 52:43 */waypoints[113].children[0] = 114; +/* 52:43 */waypoints[113].children[1] = 112; +/* 52:43 */waypoints[114] = spawnstruct(); +/* 52:43 */waypoints[114].origin = (-2647.83, -3221.82, 3752.18); +/* 52:43 */waypoints[114].type = "stand"; +/* 52:43 */waypoints[114].children[0] = 78; +/* 52:43 */waypoints[114].children[1] = 77; +/* 52:43 */waypoints[114].children[2] = 113; +/* 52:43 */waypoints[115] = spawnstruct(); +/* 52:43 */waypoints[115].origin = (-2003.23, -3918.59, 3895.13); +/* 52:43 */waypoints[115].type = "stand"; +/* 52:43 */waypoints[115].children[0] = 108; +/* 52:43 */waypoints[115].children[1] = 116; +/* 52:43 */waypoints[116] = spawnstruct(); +/* 52:43 */waypoints[116].origin = (-1951.33, -4106.91, 3895.13); +/* 52:43 */waypoints[116].type = "stand"; +/* 52:43 */waypoints[116].children[0] = 117; +/* 52:43 */waypoints[116].children[1] = 115; +/* 52:43 */waypoints[117] = spawnstruct(); +/* 52:43 */waypoints[117].origin = (-1858.32, -4394.65, 3754.12); +/* 52:43 */waypoints[117].type = "stand"; +/* 52:43 */waypoints[117].children[0] = 84; +/* 52:43 */waypoints[117].children[1] = 116; +/* 52:43 */waypoints[117].children[2] = 118; +/* 52:43 */waypoints[117].children[3] = 170; +/* 52:43 */waypoints[118] = spawnstruct(); +/* 52:43 */waypoints[118].origin = (-1695.23, -4060.79, 3753.64); +/* 52:43 */waypoints[118].type = "stand"; +/* 52:43 */waypoints[118].children[0] = 117; +/* 52:43 */waypoints[118].children[1] = 119; +/* 52:43 */waypoints[118].children[2] = 125; +/* 52:43 */waypoints[118].children[3] = 126; +/* 52:43 */waypoints[118].children[4] = 144; +/* 52:43 */waypoints[118].children[5] = 156; +/* 52:43 */waypoints[118].children[6] = 170; +/* 52:43 */waypoints[119] = spawnstruct(); +/* 52:43 */waypoints[119].origin = (-1465.05, -4040.86, 3758.32); +/* 52:43 */waypoints[119].type = "stand"; +/* 52:43 */waypoints[119].children[0] = 121; +/* 52:43 */waypoints[119].children[1] = 118; +/* 52:43 */waypoints[119].children[2] = 120; +/* 52:43 */waypoints[119].children[3] = 122; +/* 52:43 */waypoints[119].children[4] = 155; +/* 52:43 */waypoints[120] = spawnstruct(); +/* 52:43 */waypoints[120].origin = (-1124.12, -4445.18, 3776.92); +/* 52:43 */waypoints[120].type = "stand"; +/* 52:43 */waypoints[120].children[0] = 121; +/* 52:43 */waypoints[120].children[1] = 119; +/* 52:43 */waypoints[120].children[2] = 98; +/* 52:43 */waypoints[120].children[3] = 163; +/* 52:43 */waypoints[120].children[4] = 172; +/* 52:43 */waypoints[121] = spawnstruct(); +/* 52:43 */waypoints[121].origin = (-1241.65, -4189.96, 3774.1); +/* 52:43 */waypoints[121].type = "stand"; +/* 52:43 */waypoints[121].children[0] = 120; +/* 52:43 */waypoints[121].children[1] = 119; +/* 52:43 */waypoints[121].children[2] = 163; +/* 52:43 */waypoints[122] = spawnstruct(); +/* 52:43 */waypoints[122].origin = (-1458.97, -3911.38, 3762.13); +/* 52:43 */waypoints[122].type = "stand"; +/* 52:43 */waypoints[122].children[0] = 123; +/* 52:43 */waypoints[122].children[1] = 119; +/* 52:43 */waypoints[122].children[2] = 155; +/* 52:43 */waypoints[123] = spawnstruct(); +/* 52:43 */waypoints[123].origin = (-1336.85, -3885.27, 3762.13); +/* 52:43 */waypoints[123].type = "stand"; +/* 52:43 */waypoints[123].children[0] = 102; +/* 52:43 */waypoints[123].children[1] = 122; +/* 52:43 */waypoints[123].children[2] = 124; +/* 52:43 */waypoints[123].children[3] = 147; +/* 52:43 */waypoints[124] = spawnstruct(); +/* 52:43 */waypoints[124].origin = (-1315.55, -3608.2, 3762.13); +/* 52:43 */waypoints[124].type = "stand"; +/* 52:43 */waypoints[124].children[0] = 123; +/* 52:43 */waypoints[124].children[1] = 125; +/* 52:43 */waypoints[124].children[2] = 148; +/* 52:43 */waypoints[125] = spawnstruct(); +/* 52:43 */waypoints[125].origin = (-1597.89, -3591.82, 3743.35); +/* 52:43 */waypoints[125].type = "stand"; +/* 52:43 */waypoints[125].children[0] = 124; +/* 52:43 */waypoints[125].children[1] = 118; +/* 52:43 */waypoints[125].children[2] = 135; +/* 52:43 */waypoints[125].children[3] = 138; +/* 52:43 */waypoints[125].children[4] = 142; +/* 52:43 */waypoints[125].children[5] = 156; +/* 52:43 */waypoints[125].children[6] = 168; +/* 52:43 */waypoints[126] = spawnstruct(); +/* 52:43 */waypoints[126].origin = (-2074.49, -4119.13, 3759.13); +/* 52:43 */waypoints[126].type = "stand"; +/* 52:43 */waypoints[126].children[0] = 118; +/* 52:43 */waypoints[126].children[1] = 128; +/* 52:43 */waypoints[126].children[2] = 127; +/* 52:43 */waypoints[127] = spawnstruct(); +/* 52:43 */waypoints[127].origin = (-2000.72, -4381.77, 3759.13); +/* 52:43 */waypoints[127].type = "stand"; +/* 52:43 */waypoints[127].children[0] = 126; +/* 52:43 */waypoints[127].children[1] = 129; +/* 52:43 */waypoints[128] = spawnstruct(); +/* 52:43 */waypoints[128].origin = (-2257.98, -4205.92, 3759.13); +/* 52:43 */waypoints[128].type = "stand"; +/* 52:43 */waypoints[128].children[0] = 126; +/* 52:43 */waypoints[128].children[1] = 129; +/* 52:43 */waypoints[128].children[2] = 131; +/* 52:43 */waypoints[128].children[3] = 134; +/* 52:43 */waypoints[129] = spawnstruct(); +/* 52:43 */waypoints[129].origin = (-2160.49, -4450.54, 3759.13); +/* 52:43 */waypoints[129].type = "stand"; +/* 52:43 */waypoints[129].children[0] = 127; +/* 52:43 */waypoints[129].children[1] = 128; +/* 52:43 */waypoints[129].children[2] = 130; +/* 52:43 */waypoints[129].children[3] = 132; +/* 52:43 */waypoints[130] = spawnstruct(); +/* 52:43 */waypoints[130].origin = (-2285.15, -4481.84, 3759.13); +/* 52:43 */waypoints[130].type = "stand"; +/* 52:43 */waypoints[130].children[0] = 131; +/* 52:43 */waypoints[130].children[1] = 129; +/* 52:43 */waypoints[131] = spawnstruct(); +/* 52:43 */waypoints[131].origin = (-2351.21, -4262.69, 3759.13); +/* 52:43 */waypoints[131].type = "stand"; +/* 52:43 */waypoints[131].children[0] = 128; +/* 52:43 */waypoints[131].children[1] = 130; +/* 52:43 */waypoints[132] = spawnstruct(); +/* 52:43 */waypoints[132].origin = (-2147.51, -4586.81, 3759.13); +/* 52:43 */waypoints[132].type = "stand"; +/* 52:43 */waypoints[132].children[0] = 129; +/* 52:43 */waypoints[132].children[1] = 62; +/* 52:43 */waypoints[132].children[2] = 166; +/* 52:43 */waypoints[133] = spawnstruct(); +/* 52:43 */waypoints[133].origin = (-2608.07, -4157.8, 3718.21); +/* 52:43 */waypoints[133].type = "stand"; +/* 52:43 */waypoints[133].children[0] = 62; +/* 52:43 */waypoints[133].children[1] = 69; +/* 52:43 */waypoints[133].children[2] = 134; +/* 52:43 */waypoints[134] = spawnstruct(); +/* 52:43 */waypoints[134].origin = (-2309.77, -4043.07, 3745.6); +/* 52:43 */waypoints[134].type = "stand"; +/* 52:43 */waypoints[134].children[0] = 128; +/* 52:43 */waypoints[134].children[1] = 133; +/* 52:43 */waypoints[134].children[2] = 139; +/* 52:43 */waypoints[134].children[3] = 141; +/* 52:43 */waypoints[134].children[4] = 144; +/* 52:43 */waypoints[135] = spawnstruct(); +/* 52:43 */waypoints[135].origin = (-1590.5, -3174.06, 3748.82); +/* 52:43 */waypoints[135].type = "stand"; +/* 52:43 */waypoints[135].children[0] = 125; +/* 52:43 */waypoints[135].children[1] = 22; +/* 52:43 */waypoints[135].children[2] = 24; +/* 52:43 */waypoints[135].children[3] = 23; +/* 52:43 */waypoints[135].children[4] = 15; +/* 52:43 */waypoints[135].children[5] = 136; +/* 52:43 */waypoints[135].children[6] = 137; +/* 52:43 */waypoints[135].children[7] = 158; +/* 52:43 */waypoints[136] = spawnstruct(); +/* 52:43 */waypoints[136].origin = (-2480.75, -3348.64, 3749.27); +/* 52:43 */waypoints[136].type = "stand"; +/* 52:43 */waypoints[136].children[0] = 135; +/* 52:43 */waypoints[136].children[1] = 77; +/* 52:43 */waypoints[136].children[2] = 137; +/* 52:43 */waypoints[136].children[3] = 141; +/* 52:43 */waypoints[137] = spawnstruct(); +/* 52:43 */waypoints[137].origin = (-2346.86, -3354.11, 3754.58); +/* 52:43 */waypoints[137].type = "stand"; +/* 52:43 */waypoints[137].children[0] = 27; +/* 52:43 */waypoints[137].children[1] = 135; +/* 52:43 */waypoints[137].children[2] = 138; +/* 52:43 */waypoints[137].children[3] = 136; +/* 52:43 */waypoints[137].children[4] = 143; +/* 52:43 */waypoints[137].children[5] = 158; +/* 52:43 */waypoints[138] = spawnstruct(); +/* 52:43 */waypoints[138].origin = (-2016.44, -3420.33, 3760.52); +/* 52:43 */waypoints[138].type = "stand"; +/* 52:43 */waypoints[138].children[0] = 125; +/* 52:43 */waypoints[138].children[1] = 137; +/* 52:43 */waypoints[138].children[2] = 158; +/* 52:43 */waypoints[139] = spawnstruct(); +/* 52:43 */waypoints[139].origin = (-2616.42, -3843.27, 3744.13); +/* 52:43 */waypoints[139].type = "stand"; +/* 52:43 */waypoints[139].children[0] = 76; +/* 52:43 */waypoints[139].children[1] = 140; +/* 52:43 */waypoints[139].children[2] = 134; +/* 52:43 */waypoints[139].children[3] = 141; +/* 52:43 */waypoints[139].children[4] = 171; +/* 52:43 */waypoints[140] = spawnstruct(); +/* 52:43 */waypoints[140].origin = (-2908.88, -4002.33, 3744.13); +/* 52:43 */waypoints[140].type = "crouch"; +/* 52:43 */waypoints[140].children[0] = 139; +/* 52:43 */waypoints[140].angles = (4.27246, 37.3865, 0); +/* 52:43 */waypoints[141] = spawnstruct(); +/* 52:43 */waypoints[141].origin = (-2492.78, -3845.87, 3740.26); +/* 52:43 */waypoints[141].type = "stand"; +/* 52:43 */waypoints[141].children[0] = 136; +/* 52:43 */waypoints[141].children[1] = 139; +/* 52:43 */waypoints[141].children[2] = 134; +/* 52:43 */waypoints[141].children[3] = 144; +/* 52:43 */waypoints[142] = spawnstruct(); +/* 52:43 */waypoints[142].origin = (-2139.38, -3734.63, 3752.83); +/* 52:43 */waypoints[142].type = "stand"; +/* 52:43 */waypoints[142].children[0] = 125; +/* 52:43 */waypoints[142].children[1] = 143; +/* 52:43 */waypoints[142].children[2] = 144; +/* 52:43 */waypoints[143] = spawnstruct(); +/* 52:43 */waypoints[143].origin = (-2157.94, -3577.3, 3754.92); +/* 52:43 */waypoints[143].type = "stand"; +/* 52:43 */waypoints[143].children[0] = 137; +/* 52:43 */waypoints[143].children[1] = 142; +/* 52:43 */waypoints[144] = spawnstruct(); +/* 52:43 */waypoints[144].origin = (-2115.71, -3933.68, 3750.58); +/* 52:43 */waypoints[144].type = "stand"; +/* 52:43 */waypoints[144].children[0] = 118; +/* 52:43 */waypoints[144].children[1] = 134; +/* 52:43 */waypoints[144].children[2] = 142; +/* 52:43 */waypoints[144].children[3] = 141; +/* 52:43 */waypoints[145] = spawnstruct(); +/* 52:43 */waypoints[145].origin = (-1003.06, -3981.88, 3922.13); +/* 52:43 */waypoints[145].type = "crouch"; +/* 52:43 */waypoints[145].children[0] = 146; +/* 52:43 */waypoints[145].angles = (5.61281, 78.3765, 0); +/* 52:43 */waypoints[146] = spawnstruct(); +/* 52:43 */waypoints[146].origin = (-999.284, -3770.76, 3922.13); +/* 52:43 */waypoints[146].type = "stand"; +/* 52:43 */waypoints[146].children[0] = 145; +/* 52:43 */waypoints[146].children[1] = 100; +/* 52:43 */waypoints[146].children[2] = 99; +/* 52:43 */waypoints[146].children[3] = 20; +/* 52:43 */waypoints[146].children[4] = 167; +/* 52:43 */waypoints[147] = spawnstruct(); +/* 52:43 */waypoints[147].origin = (-1145.36, -3846.61, 3762.13); +/* 52:43 */waypoints[147].type = "stand"; +/* 52:43 */waypoints[147].children[0] = 123; +/* 52:43 */waypoints[147].children[1] = 148; +/* 52:43 */waypoints[148] = spawnstruct(); +/* 52:43 */waypoints[148].origin = (-1152.5, -3666.69, 3762.13); +/* 52:43 */waypoints[148].type = "stand"; +/* 52:43 */waypoints[148].children[0] = 147; +/* 52:43 */waypoints[148].children[1] = 124; +/* 52:43 */waypoints[149] = spawnstruct(); +/* 52:43 */waypoints[149].origin = (-3267.14, -4676.98, 3576.13); +/* 52:43 */waypoints[149].type = "stand"; +/* 52:43 */waypoints[149].children[0] = 59; +/* 52:43 */waypoints[149].children[1] = 150; +/* 52:43 */waypoints[150] = spawnstruct(); +/* 52:43 */waypoints[150].origin = (-3385.67, -4790.22, 3576.13); +/* 52:43 */waypoints[150].type = "stand"; +/* 52:43 */waypoints[150].children[0] = 149; +/* 52:43 */waypoints[150].children[1] = 151; +/* 52:43 */waypoints[151] = spawnstruct(); +/* 52:43 */waypoints[151].origin = (-3505.67, -4778.59, 3576.13); +/* 52:43 */waypoints[151].type = "stand"; +/* 52:43 */waypoints[151].children[0] = 58; +/* 52:43 */waypoints[151].children[1] = 150; +/* 52:43 */waypoints[152] = spawnstruct(); +/* 52:43 */waypoints[152].origin = (-3203.12, -4808.88, 3712.13); +/* 52:43 */waypoints[152].type = "crouch"; +/* 52:43 */waypoints[152].children[0] = 61; +/* 52:43 */waypoints[152].angles = (12.1552, 122.673, 0); +/* 52:43 */waypoints[153] = spawnstruct(); +/* 52:43 */waypoints[153].origin = (-3721.58, -4808.88, 3576.13); +/* 52:43 */waypoints[153].type = "crouch"; +/* 52:43 */waypoints[153].children[0] = 57; +/* 52:43 */waypoints[153].angles = (1.77307, 64.6106, 0); +/* 52:43 */waypoints[154] = spawnstruct(); +/* 52:43 */waypoints[154].origin = (-2213.59, -4808.71, 3726.11); +/* 52:43 */waypoints[154].type = "grenade"; +/* 52:43 */waypoints[154].children[0] = 68; +/* 52:43 */waypoints[154].children[1] = 69; +/* 52:43 */waypoints[154].angles = (-27.6868, 15.0183, 0); +/* 52:43 */waypoints[155] = spawnstruct(); +/* 52:43 */waypoints[155].origin = (-1463.61, -3899.01, 3762.13); +/* 52:43 */waypoints[155].type = "grenade"; +/* 52:43 */waypoints[155].children[0] = 122; +/* 52:43 */waypoints[155].children[1] = 119; +/* 52:43 */waypoints[155].children[2] = 102; +/* 52:43 */waypoints[155].angles = (-28.8184, 9.16809, 0); +/* 52:43 */waypoints[156] = spawnstruct(); +/* 52:43 */waypoints[156].origin = (-1798.76, -3730.83, 3752.75); +/* 52:43 */waypoints[156].type = "grenade"; +/* 52:43 */waypoints[156].children[0] = 118; +/* 52:43 */waypoints[156].children[1] = 125; +/* 52:43 */waypoints[156].angles = (-28.2471, 18.2483, 0); +/* 52:43 */waypoints[157] = spawnstruct(); +/* 52:43 */waypoints[157].origin = (-1086.93, -2915.28, 3905.59); +/* 52:43 */waypoints[157].type = "grenade"; +/* 52:43 */waypoints[157].children[0] = 13; +/* 52:43 */waypoints[157].children[1] = 16; +/* 52:43 */waypoints[157].angles = (2.54211, -173.573, 0); +/* 52:43 */waypoints[158] = spawnstruct(); +/* 52:43 */waypoints[158].origin = (-1932.95, -3245.63, 3758.13); +/* 52:43 */waypoints[158].type = "stand"; +/* 52:43 */waypoints[158].children[0] = 135; +/* 52:43 */waypoints[158].children[1] = 138; +/* 52:43 */waypoints[158].children[2] = 137; +/* 52:43 */waypoints[159] = spawnstruct(); +/* 52:43 */waypoints[159].origin = (-1362.24, -4588.86, 3896.25); +/* 52:43 */waypoints[159].type = "grenade"; +/* 52:43 */waypoints[159].children[0] = 160; +/* 52:43 */waypoints[159].angles = (-22.8253, -165.784, 0.0274658); +/* 52:43 */waypoints[160] = spawnstruct(); +/* 52:43 */waypoints[160].origin = (-1355.06, -4744.3, 3894.91); +/* 52:43 */waypoints[160].type = "stand"; +/* 52:43 */waypoints[160].children[0] = 159; +/* 52:43 */waypoints[160].children[1] = 88; +/* 52:43 */waypoints[161] = spawnstruct(); +/* 52:43 */waypoints[161].origin = (-135.76, -3527.48, 3898.13); +/* 52:43 */waypoints[161].type = "claymore"; +/* 52:43 */waypoints[161].children[0] = 2; +/* 52:43 */waypoints[161].angles = (55.5896, 150.447, 0); +/* 52:43 */waypoints[162] = spawnstruct(); +/* 52:43 */waypoints[162].origin = (-364.86, -4381.97, 3916.36); +/* 52:43 */waypoints[162].type = "claymore"; +/* 52:43 */waypoints[162].children[0] = 93; +/* 52:43 */waypoints[162].angles = (51.5521, -64.7095, 0); +/* 52:43 */waypoints[163] = spawnstruct(); +/* 52:43 */waypoints[163].origin = (-1035.13, -4376.18, 3787.04); +/* 52:43 */waypoints[163].type = "claymore"; +/* 52:43 */waypoints[163].children[0] = 120; +/* 52:43 */waypoints[163].children[1] = 121; +/* 52:43 */waypoints[163].angles = (62.89, -134.473, 0); +/* 52:43 */waypoints[164] = spawnstruct(); +/* 52:43 */waypoints[164].origin = (-2662.69, -3431.12, 3744.13); +/* 52:43 */waypoints[164].type = "claymore"; +/* 52:43 */waypoints[164].children[0] = 76; +/* 52:43 */waypoints[164].children[1] = 75; +/* 52:43 */waypoints[164].angles = (70.0201, -28.2568, 0); +/* 52:43 */waypoints[165] = spawnstruct(); +/* 52:43 */waypoints[165].origin = (-3603.87, -4251.28, 3572.13); +/* 52:43 */waypoints[165].type = "claymore"; +/* 52:43 */waypoints[165].children[0] = 55; +/* 52:43 */waypoints[165].angles = (64.6313, -14.0845, 0); +/* 52:43 */waypoints[166] = spawnstruct(); +/* 52:43 */waypoints[166].origin = (-2372.58, -4672.52, 3759.13); +/* 52:43 */waypoints[166].type = "claymore"; +/* 52:43 */waypoints[166].children[0] = 132; +/* 52:43 */waypoints[166].angles = (65.0214, 79.4916, 0); +/* 52:43 */waypoints[167] = spawnstruct(); +/* 52:43 */waypoints[167].origin = (-782.238, -3907.28, 3922.13); +/* 52:43 */waypoints[167].type = "crouch"; +/* 52:43 */waypoints[167].children[0] = 146; +/* 52:43 */waypoints[167].angles = (2.93213, 133.325, 0); +/* 52:43 */waypoints[168] = spawnstruct(); +/* 52:43 */waypoints[168].origin = (-1677.05, -3619.16, 3747.94); +/* 52:43 */waypoints[168].type = "claymore"; +/* 52:43 */waypoints[168].children[0] = 125; +/* 52:43 */waypoints[168].angles = (75.3705, 177.358, 0); +/* 52:43 */waypoints[169] = spawnstruct(); +/* 52:43 */waypoints[169].origin = (-2819.34, -4988.97, 3622.4); +/* 52:43 */waypoints[169].type = "javelin"; +/* 52:43 */waypoints[169].children[0] = 66; +/* 52:43 */waypoints[169].children[1] = 67; +/* 52:43 */waypoints[169].jav_point = (-1342.11, -4563.77, 3944.33); +/* 52:43 */waypoints[170] = spawnstruct(); +/* 52:43 */waypoints[170].origin = (-1823.04, -4323.07, 3753.53); +/* 52:43 */waypoints[170].type = "javelin"; +/* 52:43 */waypoints[170].children[0] = 117; +/* 52:43 */waypoints[170].children[1] = 118; +/* 52:43 */waypoints[170].children[2] = 84; +/* 52:43 */waypoints[170].jav_point = (-1383.5, -2884.41, 3841.03); +/* 52:43 */waypoints[171] = spawnstruct(); +/* 52:43 */waypoints[171].origin = (-2583.13, -3765.11, 3744.13); +/* 52:43 */waypoints[171].type = "claymore"; +/* 52:43 */waypoints[171].children[0] = 139; +/* 52:43 */waypoints[171].children[1] = 76; +/* 52:43 */waypoints[171].angles = (64.6314, -77.547, 0); +/* 52:43 */waypoints[172] = spawnstruct(); +/* 52:43 */waypoints[172].origin = (-1196.7, -4354.75, 3770.8); +/* 52:43 */waypoints[172].type = "javelin"; +/* 52:43 */waypoints[172].children[0] = 120; +/* 52:43 */waypoints[172].jav_point = (-3479.88, -2606.54, 3843.6); +/* 52:43 */return waypoints; +} \ No newline at end of file diff --git a/raw/maps/mp/bots/waypoints/downturn.gsc b/raw/maps/mp/bots/waypoints/downturn.gsc new file mode 100644 index 0000000..fff2824 --- /dev/null +++ b/raw/maps/mp/bots/waypoints/downturn.gsc @@ -0,0 +1,1471 @@ +Downturn() +{ +/* 81:41 */waypoints = []; +/* 81:41 */waypoints[0] = spawnstruct(); +/* 81:41 */waypoints[0].origin = (-1201.08, 1595.22, 84.2384); +/* 81:41 */waypoints[0].type = "stand"; +/* 81:41 */waypoints[0].children[0] = 1; +/* 81:41 */waypoints[0].children[1] = 3; +/* 81:41 */waypoints[0].children[2] = 8; +/* 81:41 */waypoints[1] = spawnstruct(); +/* 81:41 */waypoints[1].origin = (-723.506, 1595.88, 80.2517); +/* 81:41 */waypoints[1].type = "stand"; +/* 81:41 */waypoints[1].children[0] = 0; +/* 81:41 */waypoints[1].children[1] = 2; +/* 81:41 */waypoints[1].children[2] = 8; +/* 81:41 */waypoints[2] = spawnstruct(); +/* 81:41 */waypoints[2].origin = (-635.378, 1255.37, 56.9453); +/* 81:41 */waypoints[2].type = "stand"; +/* 81:41 */waypoints[2].children[0] = 3; +/* 81:41 */waypoints[2].children[1] = 1; +/* 81:41 */waypoints[2].children[2] = 5; +/* 81:41 */waypoints[2].children[3] = 6; +/* 81:41 */waypoints[2].children[4] = 8; +/* 81:41 */waypoints[2].children[5] = 206; +/* 81:41 */waypoints[3] = spawnstruct(); +/* 81:41 */waypoints[3].origin = (-1164.62, 1178.49, 63.5779); +/* 81:41 */waypoints[3].type = "stand"; +/* 81:41 */waypoints[3].children[0] = 0; +/* 81:41 */waypoints[3].children[1] = 2; +/* 81:41 */waypoints[3].children[2] = 4; +/* 81:41 */waypoints[4] = spawnstruct(); +/* 81:41 */waypoints[4].origin = (-1119.06, 899.799, 89.0328); +/* 81:41 */waypoints[4].type = "stand"; +/* 81:41 */waypoints[4].children[0] = 3; +/* 81:41 */waypoints[4].children[1] = 5; +/* 81:41 */waypoints[5] = spawnstruct(); +/* 81:41 */waypoints[5].origin = (-562.168, 873.764, 86.8323); +/* 81:41 */waypoints[5].type = "stand"; +/* 81:41 */waypoints[5].children[0] = 2; +/* 81:41 */waypoints[5].children[1] = 4; +/* 81:41 */waypoints[5].children[2] = 126; +/* 81:41 */waypoints[5].children[3] = 132; +/* 81:41 */waypoints[5].children[4] = 127; +/* 81:41 */waypoints[5].children[5] = 131; +/* 81:41 */waypoints[6] = spawnstruct(); +/* 81:41 */waypoints[6].origin = (-310.505, 1390.86, 76.8266); +/* 81:41 */waypoints[6].type = "stand"; +/* 81:41 */waypoints[6].children[0] = 2; +/* 81:41 */waypoints[6].children[1] = 7; +/* 81:41 */waypoints[6].children[2] = 9; +/* 81:41 */waypoints[6].children[3] = 10; +/* 81:41 */waypoints[6].children[4] = 11; +/* 81:41 */waypoints[6].children[5] = 206; +/* 81:41 */waypoints[7] = spawnstruct(); +/* 81:41 */waypoints[7].origin = (-424.856, 1647.32, 91.2105); +/* 81:41 */waypoints[7].type = "stand"; +/* 81:41 */waypoints[7].children[0] = 6; +/* 81:41 */waypoints[7].children[1] = 8; +/* 81:41 */waypoints[7].children[2] = 11; +/* 81:41 */waypoints[7].children[3] = 10; +/* 81:41 */waypoints[8] = spawnstruct(); +/* 81:41 */waypoints[8].origin = (-910.422, 1667.65, 85.5615); +/* 81:41 */waypoints[8].type = "stand"; +/* 81:41 */waypoints[8].children[0] = 7; +/* 81:41 */waypoints[8].children[1] = 1; +/* 81:41 */waypoints[8].children[2] = 0; +/* 81:41 */waypoints[8].children[3] = 2; +/* 81:41 */waypoints[9] = spawnstruct(); +/* 81:41 */waypoints[9].origin = (61.6873, 1343.74, 87.5099); +/* 81:41 */waypoints[9].type = "stand"; +/* 81:41 */waypoints[9].children[0] = 6; +/* 81:41 */waypoints[9].children[1] = 11; +/* 81:41 */waypoints[9].children[2] = 14; +/* 81:41 */waypoints[9].children[3] = 13; +/* 81:41 */waypoints[9].children[4] = 127; +/* 81:41 */waypoints[9].children[5] = 133; +/* 81:41 */waypoints[9].children[6] = 137; +/* 81:41 */waypoints[10] = spawnstruct(); +/* 81:41 */waypoints[10].origin = (32.5687, 1713.4, 88.125); +/* 81:41 */waypoints[10].type = "stand"; +/* 81:41 */waypoints[10].children[0] = 11; +/* 81:41 */waypoints[10].children[1] = 7; +/* 81:41 */waypoints[10].children[2] = 6; +/* 81:41 */waypoints[10].children[3] = 12; +/* 81:41 */waypoints[11] = spawnstruct(); +/* 81:41 */waypoints[11].origin = (48.0105, 1614.7, 88.125); +/* 81:41 */waypoints[11].type = "stand"; +/* 81:41 */waypoints[11].children[0] = 9; +/* 81:41 */waypoints[11].children[1] = 10; +/* 81:41 */waypoints[11].children[2] = 7; +/* 81:41 */waypoints[11].children[3] = 6; +/* 81:41 */waypoints[11].children[4] = 187; +/* 81:41 */waypoints[12] = spawnstruct(); +/* 81:41 */waypoints[12].origin = (606.624, 1717.37, 88.125); +/* 81:41 */waypoints[12].type = "stand"; +/* 81:41 */waypoints[12].children[0] = 10; +/* 81:41 */waypoints[12].children[1] = 15; +/* 81:41 */waypoints[12].children[2] = 16; +/* 81:41 */waypoints[12].children[3] = 21; +/* 81:41 */waypoints[13] = spawnstruct(); +/* 81:41 */waypoints[13].origin = (285.962, 1504.79, 79.9269); +/* 81:41 */waypoints[13].type = "stand"; +/* 81:41 */waypoints[13].children[0] = 9; +/* 81:41 */waypoints[13].children[1] = 15; +/* 81:41 */waypoints[13].children[2] = 221; +/* 81:41 */waypoints[14] = spawnstruct(); +/* 81:41 */waypoints[14].origin = (550.452, 1146.29, 59.3693); +/* 81:41 */waypoints[14].type = "stand"; +/* 81:41 */waypoints[14].children[0] = 9; +/* 81:41 */waypoints[14].children[1] = 18; +/* 81:41 */waypoints[14].children[2] = 183; +/* 81:41 */waypoints[15] = spawnstruct(); +/* 81:41 */waypoints[15].origin = (641.808, 1494.98, 79.2016); +/* 81:41 */waypoints[15].type = "stand"; +/* 81:41 */waypoints[15].children[0] = 13; +/* 81:41 */waypoints[15].children[1] = 12; +/* 81:41 */waypoints[15].children[2] = 17; +/* 81:41 */waypoints[15].children[3] = 21; +/* 81:41 */waypoints[15].children[4] = 219; +/* 81:41 */waypoints[15].children[5] = 221; +/* 81:41 */waypoints[16] = spawnstruct(); +/* 81:41 */waypoints[16].origin = (1041.64, 1640.41, 88.125); +/* 81:41 */waypoints[16].type = "stand"; +/* 81:41 */waypoints[16].children[0] = 12; +/* 81:41 */waypoints[16].children[1] = 17; +/* 81:41 */waypoints[16].children[2] = 20; +/* 81:41 */waypoints[16].children[3] = 21; +/* 81:41 */waypoints[16].children[4] = 22; +/* 81:41 */waypoints[17] = spawnstruct(); +/* 81:41 */waypoints[17].origin = (1082.75, 1218.98, 58.3918); +/* 81:41 */waypoints[17].type = "stand"; +/* 81:41 */waypoints[17].children[0] = 15; +/* 81:41 */waypoints[17].children[1] = 16; +/* 81:41 */waypoints[17].children[2] = 18; +/* 81:41 */waypoints[17].children[3] = 22; +/* 81:41 */waypoints[17].children[4] = 23; +/* 81:41 */waypoints[18] = spawnstruct(); +/* 81:41 */waypoints[18].origin = (960.511, 950.639, 70.0215); +/* 81:41 */waypoints[18].type = "stand"; +/* 81:41 */waypoints[18].children[0] = 14; +/* 81:41 */waypoints[18].children[1] = 17; +/* 81:41 */waypoints[18].children[2] = 19; +/* 81:41 */waypoints[18].children[3] = 185; +/* 81:41 */waypoints[19] = spawnstruct(); +/* 81:41 */waypoints[19].origin = (1230.99, 679.903, 98.2686); +/* 81:41 */waypoints[19].type = "stand"; +/* 81:41 */waypoints[19].children[0] = 18; +/* 81:41 */waypoints[19].children[1] = 20; +/* 81:41 */waypoints[19].children[2] = 23; +/* 81:41 */waypoints[19].children[3] = 149; +/* 81:41 */waypoints[20] = spawnstruct(); +/* 81:41 */waypoints[20].origin = (1688.03, 1617.7, 88.125); +/* 81:41 */waypoints[20].type = "stand"; +/* 81:41 */waypoints[20].children[0] = 16; +/* 81:41 */waypoints[20].children[1] = 22; +/* 81:41 */waypoints[20].children[2] = 19; +/* 81:41 */waypoints[20].children[3] = 23; +/* 81:41 */waypoints[20].children[4] = 24; +/* 81:41 */waypoints[20].children[5] = 25; +/* 81:41 */waypoints[20].children[6] = 27; +/* 81:41 */waypoints[21] = spawnstruct(); +/* 81:41 */waypoints[21].origin = (790.292, 1618.7, 88.125); +/* 81:41 */waypoints[21].type = "stand"; +/* 81:41 */waypoints[21].children[0] = 12; +/* 81:41 */waypoints[21].children[1] = 15; +/* 81:41 */waypoints[21].children[2] = 16; +/* 81:41 */waypoints[22] = spawnstruct(); +/* 81:41 */waypoints[22].origin = (1190.38, 1510.07, 84.4606); +/* 81:41 */waypoints[22].type = "stand"; +/* 81:41 */waypoints[22].children[0] = 17; +/* 81:41 */waypoints[22].children[1] = 16; +/* 81:41 */waypoints[22].children[2] = 20; +/* 81:41 */waypoints[22].children[3] = 32; +/* 81:41 */waypoints[23] = spawnstruct(); +/* 81:41 */waypoints[23].origin = (1374.83, 1217.72, 66.2879); +/* 81:41 */waypoints[23].type = "stand"; +/* 81:41 */waypoints[23].children[0] = 20; +/* 81:41 */waypoints[23].children[1] = 17; +/* 81:41 */waypoints[23].children[2] = 19; +/* 81:41 */waypoints[23].children[3] = 32; +/* 81:41 */waypoints[24] = spawnstruct(); +/* 81:41 */waypoints[24].origin = (1985.96, 1280.46, 77.6588); +/* 81:41 */waypoints[24].type = "stand"; +/* 81:41 */waypoints[24].children[0] = 20; +/* 81:41 */waypoints[24].children[1] = 26; +/* 81:41 */waypoints[24].children[2] = 30; +/* 81:41 */waypoints[24].children[3] = 32; +/* 81:41 */waypoints[24].children[4] = 35; +/* 81:41 */waypoints[24].children[5] = 182; +/* 81:41 */waypoints[24].children[6] = 193; +/* 81:41 */waypoints[25] = spawnstruct(); +/* 81:41 */waypoints[25].origin = (2604.65, 1688.64, 88.0036); +/* 81:41 */waypoints[25].type = "stand"; +/* 81:41 */waypoints[25].children[0] = 20; +/* 81:41 */waypoints[25].children[1] = 27; +/* 81:41 */waypoints[25].children[2] = 28; +/* 81:41 */waypoints[26] = spawnstruct(); +/* 81:41 */waypoints[26].origin = (2246.74, 1567.19, 88.125); +/* 81:41 */waypoints[26].type = "stand"; +/* 81:41 */waypoints[26].children[0] = 24; +/* 81:41 */waypoints[26].children[1] = 27; +/* 81:41 */waypoints[26].children[2] = 28; +/* 81:41 */waypoints[26].children[3] = 33; +/* 81:41 */waypoints[26].children[4] = 193; +/* 81:41 */waypoints[27] = spawnstruct(); +/* 81:41 */waypoints[27].origin = (2246.76, 1661.04, 88.125); +/* 81:41 */waypoints[27].type = "stand"; +/* 81:41 */waypoints[27].children[0] = 26; +/* 81:41 */waypoints[27].children[1] = 25; +/* 81:41 */waypoints[27].children[2] = 20; +/* 81:41 */waypoints[27].children[3] = 28; +/* 81:41 */waypoints[27].children[4] = 33; +/* 81:41 */waypoints[28] = spawnstruct(); +/* 81:41 */waypoints[28].origin = (2628.89, 1286.3, 81.0009); +/* 81:41 */waypoints[28].type = "stand"; +/* 81:41 */waypoints[28].children[0] = 29; +/* 81:41 */waypoints[28].children[1] = 25; +/* 81:41 */waypoints[28].children[2] = 26; +/* 81:41 */waypoints[28].children[3] = 27; +/* 81:41 */waypoints[28].children[4] = 33; +/* 81:41 */waypoints[29] = spawnstruct(); +/* 81:41 */waypoints[29].origin = (2668.88, 902.242, 79.8792); +/* 81:41 */waypoints[29].type = "stand"; +/* 81:41 */waypoints[29].children[0] = 28; +/* 81:41 */waypoints[29].children[1] = 31; +/* 81:41 */waypoints[30] = spawnstruct(); +/* 81:41 */waypoints[30].origin = (2183.24, 841.75, 74.431); +/* 81:41 */waypoints[30].type = "stand"; +/* 81:41 */waypoints[30].children[0] = 31; +/* 81:41 */waypoints[30].children[1] = 24; +/* 81:41 */waypoints[30].children[2] = 35; +/* 81:41 */waypoints[30].children[3] = 34; +/* 81:41 */waypoints[30].children[4] = 36; +/* 81:41 */waypoints[30].children[5] = 46; +/* 81:41 */waypoints[31] = spawnstruct(); +/* 81:41 */waypoints[31].origin = (2509.13, 851.834, 66.1862); +/* 81:41 */waypoints[31].type = "stand"; +/* 81:41 */waypoints[31].children[0] = 29; +/* 81:41 */waypoints[31].children[1] = 30; +/* 81:41 */waypoints[31].children[2] = 34; +/* 81:41 */waypoints[31].children[3] = 49; +/* 81:41 */waypoints[31].children[4] = 48; +/* 81:41 */waypoints[32] = spawnstruct(); +/* 81:41 */waypoints[32].origin = (1506.71, 927.985, 86.8864); +/* 81:41 */waypoints[32].type = "stand"; +/* 81:41 */waypoints[32].children[0] = 24; +/* 81:41 */waypoints[32].children[1] = 23; +/* 81:41 */waypoints[32].children[2] = 22; +/* 81:41 */waypoints[32].children[3] = 36; +/* 81:41 */waypoints[32].children[4] = 181; +/* 81:41 */waypoints[33] = spawnstruct(); +/* 81:41 */waypoints[33].origin = (2448.97, 1331.05, 80.9418); +/* 81:41 */waypoints[33].type = "stand"; +/* 81:41 */waypoints[33].children[0] = 34; +/* 81:41 */waypoints[33].children[1] = 28; +/* 81:41 */waypoints[33].children[2] = 26; +/* 81:41 */waypoints[33].children[3] = 27; +/* 81:41 */waypoints[34] = spawnstruct(); +/* 81:41 */waypoints[34].origin = (2471.76, 935.204, 74.5328); +/* 81:41 */waypoints[34].type = "stand"; +/* 81:41 */waypoints[34].children[0] = 35; +/* 81:41 */waypoints[34].children[1] = 31; +/* 81:41 */waypoints[34].children[2] = 30; +/* 81:41 */waypoints[34].children[3] = 33; +/* 81:41 */waypoints[34].children[4] = 48; +/* 81:41 */waypoints[35] = spawnstruct(); +/* 81:41 */waypoints[35].origin = (2223.7, 921.976, 82.624); +/* 81:41 */waypoints[35].type = "stand"; +/* 81:41 */waypoints[35].children[0] = 30; +/* 81:41 */waypoints[35].children[1] = 34; +/* 81:41 */waypoints[35].children[2] = 24; +/* 81:41 */waypoints[35].children[3] = 47; +/* 81:41 */waypoints[35].children[4] = 193; +/* 81:41 */waypoints[36] = spawnstruct(); +/* 81:41 */waypoints[36].origin = (1521.85, 830.5, 85.8742); +/* 81:41 */waypoints[36].type = "stand"; +/* 81:41 */waypoints[36].children[0] = 32; +/* 81:41 */waypoints[36].children[1] = 30; +/* 81:41 */waypoints[36].children[2] = 37; +/* 81:41 */waypoints[36].children[3] = 181; +/* 81:41 */waypoints[36].children[4] = 182; +/* 81:41 */waypoints[37] = spawnstruct(); +/* 81:41 */waypoints[37].origin = (1503.38, 625.792, 80.8365); +/* 81:41 */waypoints[37].type = "stand"; +/* 81:41 */waypoints[37].children[0] = 38; +/* 81:41 */waypoints[37].children[1] = 36; +/* 81:41 */waypoints[38] = spawnstruct(); +/* 81:41 */waypoints[38].origin = (1629.61, 597.584, 83.0782); +/* 81:41 */waypoints[38].type = "stand"; +/* 81:41 */waypoints[38].children[0] = 37; +/* 81:41 */waypoints[38].children[1] = 43; +/* 81:41 */waypoints[38].children[2] = 41; +/* 81:41 */waypoints[39] = spawnstruct(); +/* 81:41 */waypoints[39].origin = (1518.33, -364.193, 81.4363); +/* 81:41 */waypoints[39].type = "stand"; +/* 81:41 */waypoints[39].children[0] = 40; +/* 81:41 */waypoints[39].children[1] = 51; +/* 81:41 */waypoints[39].children[2] = 52; +/* 81:41 */waypoints[40] = spawnstruct(); +/* 81:41 */waypoints[40].origin = (1580.69, 218.284, 72.1582); +/* 81:41 */waypoints[40].type = "stand"; +/* 81:41 */waypoints[40].children[0] = 43; +/* 81:41 */waypoints[40].children[1] = 39; +/* 81:41 */waypoints[40].children[2] = 44; +/* 81:41 */waypoints[40].children[3] = 200; +/* 81:41 */waypoints[41] = spawnstruct(); +/* 81:41 */waypoints[41].origin = (1765.35, 595.186, 75.236); +/* 81:41 */waypoints[41].type = "stand"; +/* 81:41 */waypoints[41].children[0] = 38; +/* 81:41 */waypoints[41].children[1] = 42; +/* 81:41 */waypoints[42] = spawnstruct(); +/* 81:41 */waypoints[42].origin = (1765.17, 371.047, 74.1605); +/* 81:41 */waypoints[42].type = "stand"; +/* 81:41 */waypoints[42].children[0] = 41; +/* 81:41 */waypoints[42].children[1] = 43; +/* 81:41 */waypoints[42].children[2] = 194; +/* 81:41 */waypoints[43] = spawnstruct(); +/* 81:41 */waypoints[43].origin = (1591.04, 370.97, 76.1938); +/* 81:41 */waypoints[43].type = "stand"; +/* 81:41 */waypoints[43].children[0] = 38; +/* 81:41 */waypoints[43].children[1] = 40; +/* 81:41 */waypoints[43].children[2] = 42; +/* 81:41 */waypoints[43].children[3] = 201; +/* 81:41 */waypoints[44] = spawnstruct(); +/* 81:41 */waypoints[44].origin = (1905.7, 216.205, 72.9896); +/* 81:41 */waypoints[44].type = "stand"; +/* 81:41 */waypoints[44].children[0] = 40; +/* 81:41 */waypoints[44].children[1] = 45; +/* 81:41 */waypoints[44].children[2] = 51; +/* 81:41 */waypoints[44].children[3] = 191; +/* 81:41 */waypoints[44].children[4] = 200; +/* 81:41 */waypoints[45] = spawnstruct(); +/* 81:41 */waypoints[45].origin = (2107.62, 453.947, 73.6892); +/* 81:41 */waypoints[45].type = "stand"; +/* 81:41 */waypoints[45].children[0] = 46; +/* 81:41 */waypoints[45].children[1] = 50; +/* 81:41 */waypoints[45].children[2] = 44; +/* 81:41 */waypoints[45].children[3] = 47; +/* 81:41 */waypoints[45].children[4] = 192; +/* 81:41 */waypoints[46] = spawnstruct(); +/* 81:41 */waypoints[46].origin = (2203.15, 453.933, 73.9845); +/* 81:41 */waypoints[46].type = "stand"; +/* 81:41 */waypoints[46].children[0] = 47; +/* 81:41 */waypoints[46].children[1] = 45; +/* 81:41 */waypoints[46].children[2] = 30; +/* 81:41 */waypoints[47] = spawnstruct(); +/* 81:41 */waypoints[47].origin = (2317.37, 617.083, 73.9393); +/* 81:41 */waypoints[47].type = "stand"; +/* 81:41 */waypoints[47].children[0] = 48; +/* 81:41 */waypoints[47].children[1] = 46; +/* 81:41 */waypoints[47].children[2] = 35; +/* 81:41 */waypoints[47].children[3] = 45; +/* 81:41 */waypoints[48] = spawnstruct(); +/* 81:41 */waypoints[48].origin = (2439.32, 622.695, 73.9078); +/* 81:41 */waypoints[48].type = "stand"; +/* 81:41 */waypoints[48].children[0] = 31; +/* 81:41 */waypoints[48].children[1] = 49; +/* 81:41 */waypoints[48].children[2] = 47; +/* 81:41 */waypoints[48].children[3] = 34; +/* 81:41 */waypoints[49] = spawnstruct(); +/* 81:41 */waypoints[49].origin = (2554.74, 628.133, 73.4327); +/* 81:41 */waypoints[49].type = "stand"; +/* 81:41 */waypoints[49].children[0] = 31; +/* 81:41 */waypoints[49].children[1] = 48; +/* 81:41 */waypoints[49].children[2] = 50; +/* 81:41 */waypoints[50] = spawnstruct(); +/* 81:41 */waypoints[50].origin = (2524.32, 450.733, 74.0444); +/* 81:41 */waypoints[50].type = "stand"; +/* 81:41 */waypoints[50].children[0] = 45; +/* 81:41 */waypoints[50].children[1] = 49; +/* 81:41 */waypoints[51] = spawnstruct(); +/* 81:41 */waypoints[51].origin = (1715.28, -368.831, 71.793); +/* 81:41 */waypoints[51].type = "stand"; +/* 81:41 */waypoints[51].children[0] = 39; +/* 81:41 */waypoints[51].children[1] = 44; +/* 81:41 */waypoints[51].children[2] = 190; +/* 81:41 */waypoints[52] = spawnstruct(); +/* 81:41 */waypoints[52].origin = (1420.6, -868.058, 84.6311); +/* 81:41 */waypoints[52].type = "stand"; +/* 81:41 */waypoints[52].children[0] = 53; +/* 81:41 */waypoints[52].children[1] = 39; +/* 81:41 */waypoints[52].children[2] = 57; +/* 81:41 */waypoints[52].children[3] = 199; +/* 81:41 */waypoints[53] = spawnstruct(); +/* 81:41 */waypoints[53].origin = (1328.59, -1207.25, 78.125); +/* 81:41 */waypoints[53].type = "stand"; +/* 81:41 */waypoints[53].children[0] = 54; +/* 81:41 */waypoints[53].children[1] = 52; +/* 81:41 */waypoints[53].children[2] = 56; +/* 81:41 */waypoints[54] = spawnstruct(); +/* 81:41 */waypoints[54].origin = (1504.81, -1348.55, 56.022); +/* 81:41 */waypoints[54].type = "stand"; +/* 81:41 */waypoints[54].children[0] = 55; +/* 81:41 */waypoints[54].children[1] = 53; +/* 81:41 */waypoints[54].children[2] = 198; +/* 81:41 */waypoints[55] = spawnstruct(); +/* 81:41 */waypoints[55].origin = (1395.81, -1669.74, 56.125); +/* 81:41 */waypoints[55].type = "stand"; +/* 81:41 */waypoints[55].children[0] = 56; +/* 81:41 */waypoints[55].children[1] = 54; +/* 81:41 */waypoints[56] = spawnstruct(); +/* 81:41 */waypoints[56].origin = (1249.74, -1636.29, 56.125); +/* 81:41 */waypoints[56].type = "stand"; +/* 81:41 */waypoints[56].children[0] = 55; +/* 81:41 */waypoints[56].children[1] = 53; +/* 81:41 */waypoints[56].children[2] = 58; +/* 81:41 */waypoints[56].children[3] = 62; +/* 81:41 */waypoints[56].children[4] = 70; +/* 81:41 */waypoints[57] = spawnstruct(); +/* 81:41 */waypoints[57].origin = (1196.42, -813.932, 65.7422); +/* 81:41 */waypoints[57].type = "stand"; +/* 81:41 */waypoints[57].children[0] = 52; +/* 81:41 */waypoints[57].children[1] = 58; +/* 81:41 */waypoints[57].children[2] = 73; +/* 81:41 */waypoints[57].children[3] = 74; +/* 81:41 */waypoints[58] = spawnstruct(); +/* 81:41 */waypoints[58].origin = (1067.71, -1602.43, 46.7735); +/* 81:41 */waypoints[58].type = "stand"; +/* 81:41 */waypoints[58].children[0] = 56; +/* 81:41 */waypoints[58].children[1] = 57; +/* 81:41 */waypoints[58].children[2] = 62; +/* 81:41 */waypoints[58].children[3] = 59; +/* 81:41 */waypoints[58].children[4] = 70; +/* 81:41 */waypoints[59] = spawnstruct(); +/* 81:41 */waypoints[59].origin = (1032.26, -1846.72, 44.0325); +/* 81:41 */waypoints[59].type = "stand"; +/* 81:41 */waypoints[59].children[0] = 60; +/* 81:41 */waypoints[59].children[1] = 58; +/* 81:41 */waypoints[60] = spawnstruct(); +/* 81:41 */waypoints[60].origin = (881.854, -1895.51, 31.0523); +/* 81:41 */waypoints[60].type = "stand"; +/* 81:41 */waypoints[60].children[0] = 62; +/* 81:41 */waypoints[60].children[1] = 59; +/* 81:41 */waypoints[60].children[2] = 61; +/* 81:41 */waypoints[60].children[3] = 64; +/* 81:41 */waypoints[60].children[4] = 68; +/* 81:41 */waypoints[61] = spawnstruct(); +/* 81:41 */waypoints[61].origin = (773.785, -1690.81, 41.5702); +/* 81:41 */waypoints[61].type = "stand"; +/* 81:41 */waypoints[61].children[0] = 60; +/* 81:41 */waypoints[61].children[1] = 62; +/* 81:41 */waypoints[61].children[2] = 63; +/* 81:41 */waypoints[61].children[3] = 70; +/* 81:41 */waypoints[62] = spawnstruct(); +/* 81:41 */waypoints[62].origin = (795.391, -1423.48, 30.6113); +/* 81:41 */waypoints[62].type = "stand"; +/* 81:41 */waypoints[62].children[0] = 58; +/* 81:41 */waypoints[62].children[1] = 56; +/* 81:41 */waypoints[62].children[2] = 60; +/* 81:41 */waypoints[62].children[3] = 61; +/* 81:41 */waypoints[62].children[4] = 69; +/* 81:41 */waypoints[62].children[5] = 71; +/* 81:41 */waypoints[62].children[6] = 70; +/* 81:41 */waypoints[63] = spawnstruct(); +/* 81:41 */waypoints[63].origin = (595.913, -1812.26, 35.8317); +/* 81:41 */waypoints[63].type = "stand"; +/* 81:41 */waypoints[63].children[0] = 65; +/* 81:41 */waypoints[63].children[1] = 66; +/* 81:41 */waypoints[63].children[2] = 67; +/* 81:41 */waypoints[63].children[3] = 61; +/* 81:41 */waypoints[63].children[4] = 68; +/* 81:41 */waypoints[64] = spawnstruct(); +/* 81:41 */waypoints[64].origin = (802.502, -2269.45, 29.9532); +/* 81:41 */waypoints[64].type = "stand"; +/* 81:41 */waypoints[64].children[0] = 60; +/* 81:41 */waypoints[64].children[1] = 65; +/* 81:41 */waypoints[65] = spawnstruct(); +/* 81:41 */waypoints[65].origin = (522.817, -2239.88, 18.9222); +/* 81:41 */waypoints[65].type = "stand"; +/* 81:41 */waypoints[65].children[0] = 64; +/* 81:41 */waypoints[65].children[1] = 66; +/* 81:41 */waypoints[65].children[2] = 63; +/* 81:41 */waypoints[66] = spawnstruct(); +/* 81:41 */waypoints[66].origin = (363.634, -2214.94, 29.0389); +/* 81:41 */waypoints[66].type = "stand"; +/* 81:41 */waypoints[66].children[0] = 65; +/* 81:41 */waypoints[66].children[1] = 63; +/* 81:41 */waypoints[66].children[2] = 67; +/* 81:41 */waypoints[67] = spawnstruct(); +/* 81:41 */waypoints[67].origin = (391.716, -1717.23, 32.2466); +/* 81:41 */waypoints[67].type = "stand"; +/* 81:41 */waypoints[67].children[0] = 66; +/* 81:41 */waypoints[67].children[1] = 63; +/* 81:41 */waypoints[67].children[2] = 71; +/* 81:41 */waypoints[67].children[3] = 89; +/* 81:41 */waypoints[67].children[4] = 92; +/* 81:41 */waypoints[67].children[5] = 94; +/* 81:41 */waypoints[68] = spawnstruct(); +/* 81:41 */waypoints[68].origin = (740.395, -1898.47, 36.283); +/* 81:41 */waypoints[68].type = "stand"; +/* 81:41 */waypoints[68].children[0] = 60; +/* 81:41 */waypoints[68].children[1] = 63; +/* 81:41 */waypoints[69] = spawnstruct(); +/* 81:41 */waypoints[69].origin = (340.853, -1134.73, 48.1182); +/* 81:41 */waypoints[69].type = "stand"; +/* 81:41 */waypoints[69].children[0] = 62; +/* 81:41 */waypoints[69].children[1] = 76; +/* 81:41 */waypoints[69].children[2] = 71; +/* 81:41 */waypoints[69].children[3] = 83; +/* 81:41 */waypoints[69].children[4] = 91; +/* 81:41 */waypoints[70] = spawnstruct(); +/* 81:41 */waypoints[70].origin = (978.434, -1429.39, 41.955); +/* 81:41 */waypoints[70].type = "stand"; +/* 81:41 */waypoints[70].children[0] = 58; +/* 81:41 */waypoints[70].children[1] = 56; +/* 81:41 */waypoints[70].children[2] = 62; +/* 81:41 */waypoints[70].children[3] = 61; +/* 81:41 */waypoints[70].children[4] = 161; +/* 81:41 */waypoints[71] = spawnstruct(); +/* 81:41 */waypoints[71].origin = (744.142, -1156.73, 28.125); +/* 81:41 */waypoints[71].type = "stand"; +/* 81:41 */waypoints[71].children[0] = 62; +/* 81:41 */waypoints[71].children[1] = 67; +/* 81:41 */waypoints[71].children[2] = 76; +/* 81:41 */waypoints[71].children[3] = 69; +/* 81:41 */waypoints[72] = spawnstruct(); +/* 81:41 */waypoints[72].origin = (916.018, -1100.11, 46.5813); +/* 81:41 */waypoints[72].type = "stand"; +/* 81:41 */waypoints[72].children[0] = 73; +/* 81:41 */waypoints[72].children[1] = 74; +/* 81:41 */waypoints[72].children[2] = 75; +/* 81:41 */waypoints[73] = spawnstruct(); +/* 81:41 */waypoints[73].origin = (938.414, -913.177, 51.2304); +/* 81:41 */waypoints[73].type = "stand"; +/* 81:41 */waypoints[73].children[0] = 57; +/* 81:41 */waypoints[73].children[1] = 72; +/* 81:41 */waypoints[73].children[2] = 75; +/* 81:41 */waypoints[74] = spawnstruct(); +/* 81:41 */waypoints[74].origin = (1191.54, -609.176, 55.2923); +/* 81:41 */waypoints[74].type = "stand"; +/* 81:41 */waypoints[74].children[0] = 57; +/* 81:41 */waypoints[74].children[1] = 72; +/* 81:41 */waypoints[74].children[2] = 75; +/* 81:41 */waypoints[74].children[3] = 153; +/* 81:41 */waypoints[75] = spawnstruct(); +/* 81:41 */waypoints[75].origin = (802.552, -621.141, 29.1699); +/* 81:41 */waypoints[75].type = "stand"; +/* 81:41 */waypoints[75].children[0] = 72; +/* 81:41 */waypoints[75].children[1] = 73; +/* 81:41 */waypoints[75].children[2] = 74; +/* 81:41 */waypoints[75].children[3] = 76; +/* 81:41 */waypoints[75].children[4] = 77; +/* 81:41 */waypoints[75].children[5] = 152; +/* 81:41 */waypoints[75].children[6] = 164; +/* 81:41 */waypoints[76] = spawnstruct(); +/* 81:41 */waypoints[76].origin = (522.628, -662.608, 40.6002); +/* 81:41 */waypoints[76].type = "stand"; +/* 81:41 */waypoints[76].children[0] = 71; +/* 81:41 */waypoints[76].children[1] = 75; +/* 81:41 */waypoints[76].children[2] = 69; +/* 81:41 */waypoints[76].children[3] = 77; +/* 81:41 */waypoints[77] = spawnstruct(); +/* 81:41 */waypoints[77].origin = (506.566, -488.628, 51.0875); +/* 81:41 */waypoints[77].type = "stand"; +/* 81:41 */waypoints[77].children[0] = 78; +/* 81:41 */waypoints[77].children[1] = 75; +/* 81:41 */waypoints[77].children[2] = 76; +/* 81:41 */waypoints[77].children[3] = 79; +/* 81:41 */waypoints[77].children[4] = 80; +/* 81:41 */waypoints[77].children[5] = 146; +/* 81:41 */waypoints[77].children[6] = 150; +/* 81:41 */waypoints[77].children[7] = 164; +/* 81:41 */waypoints[78] = spawnstruct(); +/* 81:41 */waypoints[78].origin = (359.968, -543.997, 45.4131); +/* 81:41 */waypoints[78].type = "stand"; +/* 81:41 */waypoints[78].children[0] = 79; +/* 81:41 */waypoints[78].children[1] = 77; +/* 81:41 */waypoints[78].children[2] = 82; +/* 81:41 */waypoints[78].children[3] = 139; +/* 81:41 */waypoints[79] = spawnstruct(); +/* 81:41 */waypoints[79].origin = (281.901, -403.534, 57.267); +/* 81:41 */waypoints[79].type = "stand"; +/* 81:41 */waypoints[79].children[0] = 78; +/* 81:41 */waypoints[79].children[1] = 77; +/* 81:41 */waypoints[79].children[2] = 80; +/* 81:41 */waypoints[80] = spawnstruct(); +/* 81:41 */waypoints[80].origin = (98.1417, -408.821, 63.3645); +/* 81:41 */waypoints[80].type = "stand"; +/* 81:41 */waypoints[80].children[0] = 79; +/* 81:41 */waypoints[80].children[1] = 81; +/* 81:41 */waypoints[80].children[2] = 77; +/* 81:41 */waypoints[80].children[3] = 122; +/* 81:41 */waypoints[80].children[4] = 140; +/* 81:41 */waypoints[81] = spawnstruct(); +/* 81:41 */waypoints[81].origin = (-24.1537, -335.244, 69.851); +/* 81:41 */waypoints[81].type = "stand"; +/* 81:41 */waypoints[81].children[0] = 80; +/* 81:41 */waypoints[81].children[1] = 121; +/* 81:41 */waypoints[81].children[2] = 139; +/* 81:41 */waypoints[82] = spawnstruct(); +/* 81:41 */waypoints[82].origin = (164.963, -631.609, 32.2004); +/* 81:41 */waypoints[82].type = "stand"; +/* 81:41 */waypoints[82].children[0] = 83; +/* 81:41 */waypoints[82].children[1] = 78; +/* 81:41 */waypoints[82].children[2] = 154; +/* 81:41 */waypoints[83] = spawnstruct(); +/* 81:41 */waypoints[83].origin = (140.114, -863.597, 25.3336); +/* 81:41 */waypoints[83].type = "stand"; +/* 81:41 */waypoints[83].children[0] = 69; +/* 81:41 */waypoints[83].children[1] = 82; +/* 81:41 */waypoints[83].children[2] = 84; +/* 81:41 */waypoints[83].children[3] = 85; +/* 81:41 */waypoints[84] = spawnstruct(); +/* 81:41 */waypoints[84].origin = (-304.579, -1125.73, 37.8165); +/* 81:41 */waypoints[84].type = "stand"; +/* 81:41 */waypoints[84].children[0] = 83; +/* 81:41 */waypoints[84].children[1] = 86; +/* 81:41 */waypoints[84].children[2] = 90; +/* 81:41 */waypoints[84].children[3] = 96; +/* 81:41 */waypoints[85] = spawnstruct(); +/* 81:41 */waypoints[85].origin = (-143.747, -749.67, 11.2883); +/* 81:41 */waypoints[85].type = "stand"; +/* 81:41 */waypoints[85].children[0] = 83; +/* 81:41 */waypoints[85].children[1] = 86; +/* 81:41 */waypoints[85].children[2] = 98; +/* 81:41 */waypoints[86] = spawnstruct(); +/* 81:41 */waypoints[86].origin = (-505.974, -921.315, 3.12229); +/* 81:41 */waypoints[86].type = "stand"; +/* 81:41 */waypoints[86].children[0] = 85; +/* 81:41 */waypoints[86].children[1] = 84; +/* 81:41 */waypoints[86].children[2] = 87; +/* 81:41 */waypoints[86].children[3] = 90; +/* 81:41 */waypoints[86].children[4] = 98; +/* 81:41 */waypoints[86].children[5] = 99; +/* 81:41 */waypoints[86].children[6] = 104; +/* 81:41 */waypoints[87] = spawnstruct(); +/* 81:41 */waypoints[87].origin = (-546.221, -1131.82, 38.9551); +/* 81:41 */waypoints[87].type = "stand"; +/* 81:41 */waypoints[87].children[0] = 88; +/* 81:41 */waypoints[87].children[1] = 86; +/* 81:41 */waypoints[87].children[2] = 90; +/* 81:41 */waypoints[87].children[3] = 93; +/* 81:41 */waypoints[87].children[4] = 98; +/* 81:41 */waypoints[87].children[5] = 104; +/* 81:41 */waypoints[87].children[6] = 210; +/* 81:41 */waypoints[88] = spawnstruct(); +/* 81:41 */waypoints[88].origin = (-457.649, -1470.47, 40.0741); +/* 81:41 */waypoints[88].type = "stand"; +/* 81:41 */waypoints[88].children[0] = 89; +/* 81:41 */waypoints[88].children[1] = 87; +/* 81:41 */waypoints[88].children[2] = 94; +/* 81:41 */waypoints[89] = spawnstruct(); +/* 81:41 */waypoints[89].origin = (-470.603, -1720.1, 42.1634); +/* 81:41 */waypoints[89].type = "stand"; +/* 81:41 */waypoints[89].children[0] = 88; +/* 81:41 */waypoints[89].children[1] = 67; +/* 81:41 */waypoints[89].children[2] = 92; +/* 81:41 */waypoints[89].children[3] = 93; +/* 81:41 */waypoints[89].children[4] = 94; +/* 81:41 */waypoints[90] = spawnstruct(); +/* 81:41 */waypoints[90].origin = (-453.746, -1051.99, 28.0194); +/* 81:41 */waypoints[90].type = "stand"; +/* 81:41 */waypoints[90].children[0] = 87; +/* 81:41 */waypoints[90].children[1] = 84; +/* 81:41 */waypoints[90].children[2] = 86; +/* 81:41 */waypoints[90].children[3] = 104; +/* 81:41 */waypoints[91] = spawnstruct(); +/* 81:41 */waypoints[91].origin = (201.476, -1300.66, 36.1249); +/* 81:41 */waypoints[91].type = "stand"; +/* 81:41 */waypoints[91].children[0] = 69; +/* 81:41 */waypoints[91].children[1] = 92; +/* 81:41 */waypoints[91].children[2] = 93; +/* 81:41 */waypoints[91].children[3] = 94; +/* 81:41 */waypoints[91].children[4] = 209; +/* 81:41 */waypoints[91].children[5] = 211; +/* 81:41 */waypoints[92] = spawnstruct(); +/* 81:41 */waypoints[92].origin = (209.38, -1703.73, 36.0891); +/* 81:41 */waypoints[92].type = "stand"; +/* 81:41 */waypoints[92].children[0] = 91; +/* 81:41 */waypoints[92].children[1] = 67; +/* 81:41 */waypoints[92].children[2] = 89; +/* 81:41 */waypoints[92].children[3] = 197; +/* 81:41 */waypoints[93] = spawnstruct(); +/* 81:41 */waypoints[93].origin = (-465.957, -1296.23, 36.058); +/* 81:41 */waypoints[93].type = "stand"; +/* 81:41 */waypoints[93].children[0] = 87; +/* 81:41 */waypoints[93].children[1] = 89; +/* 81:41 */waypoints[93].children[2] = 91; +/* 81:41 */waypoints[93].children[3] = 210; +/* 81:41 */waypoints[94] = spawnstruct(); +/* 81:41 */waypoints[94].origin = (-147.56, -1472.06, 36.0194); +/* 81:41 */waypoints[94].type = "stand"; +/* 81:41 */waypoints[94].children[0] = 88; +/* 81:41 */waypoints[94].children[1] = 91; +/* 81:41 */waypoints[94].children[2] = 67; +/* 81:41 */waypoints[94].children[3] = 89; +/* 81:41 */waypoints[94].children[4] = 211; +/* 81:41 */waypoints[95] = spawnstruct(); +/* 81:41 */waypoints[95].origin = (-856.11, -583.771, 0.85519); +/* 81:41 */waypoints[95].type = "stand"; +/* 81:41 */waypoints[95].children[0] = 96; +/* 81:41 */waypoints[95].children[1] = 99; +/* 81:41 */waypoints[95].children[2] = 106; +/* 81:41 */waypoints[95].children[3] = 107; +/* 81:41 */waypoints[96] = spawnstruct(); +/* 81:41 */waypoints[96].origin = (-551.138, -585.408, 35.8178); +/* 81:41 */waypoints[96].type = "stand"; +/* 81:41 */waypoints[96].children[0] = 84; +/* 81:41 */waypoints[96].children[1] = 97; +/* 81:41 */waypoints[96].children[2] = 95; +/* 81:41 */waypoints[97] = spawnstruct(); +/* 81:41 */waypoints[97].origin = (-342.458, -552.799, 32.016); +/* 81:41 */waypoints[97].type = "stand"; +/* 81:41 */waypoints[97].children[0] = 96; +/* 81:41 */waypoints[97].children[1] = 98; +/* 81:41 */waypoints[98] = spawnstruct(); +/* 81:41 */waypoints[98].origin = (-263.285, -827.871, 9.69877); +/* 81:41 */waypoints[98].type = "stand"; +/* 81:41 */waypoints[98].children[0] = 86; +/* 81:41 */waypoints[98].children[1] = 85; +/* 81:41 */waypoints[98].children[2] = 87; +/* 81:41 */waypoints[98].children[3] = 97; +/* 81:41 */waypoints[99] = spawnstruct(); +/* 81:41 */waypoints[99].origin = (-896.373, -815.196, -15.3302); +/* 81:41 */waypoints[99].type = "stand"; +/* 81:41 */waypoints[99].children[0] = 86; +/* 81:41 */waypoints[99].children[1] = 95; +/* 81:41 */waypoints[99].children[2] = 105; +/* 81:41 */waypoints[99].children[3] = 103; +/* 81:41 */waypoints[100] = spawnstruct(); +/* 81:41 */waypoints[100].origin = (-1045.28, -1039.08, -3.3491); +/* 81:41 */waypoints[100].type = "stand"; +/* 81:41 */waypoints[100].children[0] = 101; +/* 81:41 */waypoints[100].children[1] = 104; +/* 81:41 */waypoints[100].children[2] = 105; +/* 81:41 */waypoints[101] = spawnstruct(); +/* 81:41 */waypoints[101].origin = (-1365.87, -1069.45, -21.6978); +/* 81:41 */waypoints[101].type = "stand"; +/* 81:41 */waypoints[101].children[0] = 100; +/* 81:41 */waypoints[101].children[1] = 103; +/* 81:41 */waypoints[102] = spawnstruct(); +/* 81:41 */waypoints[102].origin = (-1344.63, -582.703, -27.4173); +/* 81:41 */waypoints[102].type = "stand"; +/* 81:41 */waypoints[102].children[0] = 103; +/* 81:41 */waypoints[102].children[1] = 106; +/* 81:41 */waypoints[103] = spawnstruct(); +/* 81:41 */waypoints[103].origin = (-1344.48, -742.236, -31.4926); +/* 81:41 */waypoints[103].type = "stand"; +/* 81:41 */waypoints[103].children[0] = 101; +/* 81:41 */waypoints[103].children[1] = 102; +/* 81:41 */waypoints[103].children[2] = 99; +/* 81:41 */waypoints[104] = spawnstruct(); +/* 81:41 */waypoints[104].origin = (-892.087, -983.153, 1.71728); +/* 81:41 */waypoints[104].type = "stand"; +/* 81:41 */waypoints[104].children[0] = 87; +/* 81:41 */waypoints[104].children[1] = 90; +/* 81:41 */waypoints[104].children[2] = 86; +/* 81:41 */waypoints[104].children[3] = 100; +/* 81:41 */waypoints[105] = spawnstruct(); +/* 81:41 */waypoints[105].origin = (-1004.77, -860.439, -21.0143); +/* 81:41 */waypoints[105].type = "stand"; +/* 81:41 */waypoints[105].children[0] = 100; +/* 81:41 */waypoints[105].children[1] = 99; +/* 81:41 */waypoints[105].children[2] = 106; +/* 81:41 */waypoints[106] = spawnstruct(); +/* 81:41 */waypoints[106].origin = (-1084.75, -556.286, -19.2455); +/* 81:41 */waypoints[106].type = "stand"; +/* 81:41 */waypoints[106].children[0] = 102; +/* 81:41 */waypoints[106].children[1] = 105; +/* 81:41 */waypoints[106].children[2] = 95; +/* 81:41 */waypoints[106].children[3] = 108; +/* 81:41 */waypoints[107] = spawnstruct(); +/* 81:41 */waypoints[107].origin = (-848.36, -263.509, -23.6789); +/* 81:41 */waypoints[107].type = "stand"; +/* 81:41 */waypoints[107].children[0] = 95; +/* 81:41 */waypoints[107].children[1] = 108; +/* 81:41 */waypoints[107].children[2] = 110; +/* 81:41 */waypoints[107].children[3] = 115; +/* 81:41 */waypoints[107].children[4] = 207; +/* 81:41 */waypoints[108] = spawnstruct(); +/* 81:41 */waypoints[108].origin = (-1085.62, -426.439, -22.4431); +/* 81:41 */waypoints[108].type = "stand"; +/* 81:41 */waypoints[108].children[0] = 106; +/* 81:41 */waypoints[108].children[1] = 107; +/* 81:41 */waypoints[108].children[2] = 117; +/* 81:41 */waypoints[108].children[3] = 207; +/* 81:41 */waypoints[108].children[4] = 115; +/* 81:41 */waypoints[109] = spawnstruct(); +/* 81:41 */waypoints[109].origin = (-839.434, 62.8039, 69.125); +/* 81:41 */waypoints[109].type = "stand"; +/* 81:41 */waypoints[109].children[0] = 110; +/* 81:41 */waypoints[109].children[1] = 125; +/* 81:41 */waypoints[109].children[2] = 212; +/* 81:41 */waypoints[109].children[3] = 111; +/* 81:41 */waypoints[109].children[4] = 216; +/* 81:41 */waypoints[110] = spawnstruct(); +/* 81:41 */waypoints[110].origin = (-857.748, -52.2706, 69.125); +/* 81:41 */waypoints[110].type = "stand"; +/* 81:41 */waypoints[110].children[0] = 111; +/* 81:41 */waypoints[110].children[1] = 109; +/* 81:41 */waypoints[110].children[2] = 107; +/* 81:41 */waypoints[111] = spawnstruct(); +/* 81:41 */waypoints[111].origin = (-951.16, 3.415, 69.125); +/* 81:41 */waypoints[111].type = "stand"; +/* 81:41 */waypoints[111].children[0] = 112; +/* 81:41 */waypoints[111].children[1] = 110; +/* 81:41 */waypoints[111].children[2] = 124; +/* 81:41 */waypoints[111].children[3] = 109; +/* 81:41 */waypoints[111].children[4] = 216; +/* 81:41 */waypoints[112] = spawnstruct(); +/* 81:41 */waypoints[112].origin = (-951.23, 221.69, 165.125); +/* 81:41 */waypoints[112].type = "stand"; +/* 81:41 */waypoints[112].children[0] = 113; +/* 81:41 */waypoints[112].children[1] = 111; +/* 81:41 */waypoints[113] = spawnstruct(); +/* 81:41 */waypoints[113].origin = (-711.728, 222.657, 229.125); +/* 81:41 */waypoints[113].type = "stand"; +/* 81:41 */waypoints[113].children[0] = 112; +/* 81:41 */waypoints[113].children[1] = 118; +/* 81:41 */waypoints[113].children[2] = 208; +/* 81:41 */waypoints[114] = spawnstruct(); +/* 81:41 */waypoints[114].origin = (-1043.5, -52.9783, -26.9345); +/* 81:41 */waypoints[114].type = "stand"; +/* 81:41 */waypoints[114].children[0] = 115; +/* 81:41 */waypoints[115] = spawnstruct(); +/* 81:41 */waypoints[115].origin = (-1033.44, -168.512, -26.9142); +/* 81:41 */waypoints[115].type = "stand"; +/* 81:41 */waypoints[115].children[0] = 116; +/* 81:41 */waypoints[115].children[1] = 107; +/* 81:41 */waypoints[115].children[2] = 114; +/* 81:41 */waypoints[115].children[3] = 207; +/* 81:41 */waypoints[115].children[4] = 108; +/* 81:41 */waypoints[116] = spawnstruct(); +/* 81:41 */waypoints[116].origin = (-1314.88, -177.125, -26.875); +/* 81:41 */waypoints[116].type = "stand"; +/* 81:41 */waypoints[116].children[0] = 117; +/* 81:41 */waypoints[116].children[1] = 115; +/* 81:41 */waypoints[117] = spawnstruct(); +/* 81:41 */waypoints[117].origin = (-1302.47, -432.507, -22.875); +/* 81:41 */waypoints[117].type = "stand"; +/* 81:41 */waypoints[117].children[0] = 108; +/* 81:41 */waypoints[117].children[1] = 116; +/* 81:41 */waypoints[117].children[2] = 196; +/* 81:41 */waypoints[118] = spawnstruct(); +/* 81:41 */waypoints[118].origin = (-424.792, 203.312, 229.125); +/* 81:41 */waypoints[118].type = "stand"; +/* 81:41 */waypoints[118].children[0] = 113; +/* 81:41 */waypoints[118].children[1] = 120; +/* 81:41 */waypoints[118].children[2] = 119; +/* 81:41 */waypoints[118].children[3] = 204; +/* 81:41 */waypoints[118].children[4] = 205; +/* 81:41 */waypoints[119] = spawnstruct(); +/* 81:41 */waypoints[119].origin = (-424.879, 395.57, 229.125); +/* 81:41 */waypoints[119].type = "stand"; +/* 81:41 */waypoints[119].children[0] = 130; +/* 81:41 */waypoints[119].children[1] = 129; +/* 81:41 */waypoints[119].children[2] = 118; +/* 81:41 */waypoints[120] = spawnstruct(); +/* 81:41 */waypoints[120].origin = (-14.2445, 150.458, 229.125); +/* 81:41 */waypoints[120].type = "stand"; +/* 81:41 */waypoints[120].children[0] = 118; +/* 81:41 */waypoints[120].children[1] = 121; +/* 81:41 */waypoints[120].children[2] = 136; +/* 81:41 */waypoints[121] = spawnstruct(); +/* 81:41 */waypoints[121].origin = (-24.5178, -43.2078, 229.125); +/* 81:41 */waypoints[121].type = "stand"; +/* 81:41 */waypoints[121].children[0] = 120; +/* 81:41 */waypoints[121].children[1] = 81; +/* 81:41 */waypoints[122] = spawnstruct(); +/* 81:41 */waypoints[122].origin = (113.744, -25.8764, 69.3431); +/* 81:41 */waypoints[122].type = "stand"; +/* 81:41 */waypoints[122].children[0] = 123; +/* 81:41 */waypoints[122].children[1] = 80; +/* 81:41 */waypoints[122].children[2] = 124; +/* 81:41 */waypoints[122].children[3] = 140; +/* 81:41 */waypoints[122].children[4] = 146; +/* 81:41 */waypoints[123] = spawnstruct(); +/* 81:41 */waypoints[123].origin = (276.579, 7.32393, 73.5874); +/* 81:41 */waypoints[123].type = "stand"; +/* 81:41 */waypoints[123].children[0] = 122; +/* 81:41 */waypoints[123].children[1] = 124; +/* 81:41 */waypoints[123].children[2] = 138; +/* 81:41 */waypoints[123].children[3] = 140; +/* 81:41 */waypoints[123].children[4] = 148; +/* 81:41 */waypoints[124] = spawnstruct(); +/* 81:41 */waypoints[124].origin = (114.036, 151.951, 69.7277); +/* 81:41 */waypoints[124].type = "stand"; +/* 81:41 */waypoints[124].children[0] = 122; +/* 81:41 */waypoints[124].children[1] = 123; +/* 81:41 */waypoints[124].children[2] = 125; +/* 81:41 */waypoints[124].children[3] = 111; +/* 81:41 */waypoints[124].children[4] = 143; +/* 81:41 */waypoints[124].children[5] = 145; +/* 81:41 */waypoints[124].children[6] = 212; +/* 81:41 */waypoints[125] = spawnstruct(); +/* 81:41 */waypoints[125].origin = (-438.591, 159.234, 69.125); +/* 81:41 */waypoints[125].type = "stand"; +/* 81:41 */waypoints[125].children[0] = 124; +/* 81:41 */waypoints[125].children[1] = 109; +/* 81:41 */waypoints[125].children[2] = 126; +/* 81:41 */waypoints[125].children[3] = 195; +/* 81:41 */waypoints[125].children[4] = 212; +/* 81:41 */waypoints[125].children[5] = 217; +/* 81:41 */waypoints[125].children[6] = 218; +/* 81:41 */waypoints[126] = spawnstruct(); +/* 81:41 */waypoints[126].origin = (-430.7, 443.771, 69.1517); +/* 81:41 */waypoints[126].type = "stand"; +/* 81:41 */waypoints[126].children[0] = 5; +/* 81:41 */waypoints[126].children[1] = 127; +/* 81:41 */waypoints[126].children[2] = 125; +/* 81:41 */waypoints[126].children[3] = 132; +/* 81:41 */waypoints[126].children[4] = 217; +/* 81:41 */waypoints[127] = spawnstruct(); +/* 81:41 */waypoints[127].origin = (-260.24, 894.199, 81.1738); +/* 81:41 */waypoints[127].type = "stand"; +/* 81:41 */waypoints[127].children[0] = 126; +/* 81:41 */waypoints[127].children[1] = 128; +/* 81:41 */waypoints[127].children[2] = 5; +/* 81:41 */waypoints[127].children[3] = 9; +/* 81:41 */waypoints[128] = spawnstruct(); +/* 81:41 */waypoints[128].origin = (-216.503, 683.367, 85.2136); +/* 81:41 */waypoints[128].type = "stand"; +/* 81:41 */waypoints[128].children[0] = 127; +/* 81:41 */waypoints[128].children[1] = 129; +/* 81:41 */waypoints[128].children[2] = 131; +/* 81:41 */waypoints[129] = spawnstruct(); +/* 81:41 */waypoints[129].origin = (-209.062, 409.758, 229.125); +/* 81:41 */waypoints[129].type = "stand"; +/* 81:41 */waypoints[129].children[0] = 119; +/* 81:41 */waypoints[129].children[1] = 128; +/* 81:41 */waypoints[130] = spawnstruct(); +/* 81:41 */waypoints[130].origin = (-655.745, 412.329, 229.125); +/* 81:41 */waypoints[130].type = "stand"; +/* 81:41 */waypoints[130].children[0] = 131; +/* 81:41 */waypoints[130].children[1] = 119; +/* 81:41 */waypoints[131] = spawnstruct(); +/* 81:41 */waypoints[131].origin = (-656.786, 717.483, 69.125); +/* 81:41 */waypoints[131].type = "stand"; +/* 81:41 */waypoints[131].children[0] = 132; +/* 81:41 */waypoints[131].children[1] = 130; +/* 81:41 */waypoints[131].children[2] = 128; +/* 81:41 */waypoints[131].children[3] = 5; +/* 81:41 */waypoints[132] = spawnstruct(); +/* 81:41 */waypoints[132].origin = (-512.475, 685.884, 71.0416); +/* 81:41 */waypoints[132].type = "stand"; +/* 81:41 */waypoints[132].children[0] = 126; +/* 81:41 */waypoints[132].children[1] = 131; +/* 81:41 */waypoints[132].children[2] = 5; +/* 81:41 */waypoints[133] = spawnstruct(); +/* 81:41 */waypoints[133].origin = (129.966, 886.586, 88.4574); +/* 81:41 */waypoints[133].type = "stand"; +/* 81:41 */waypoints[133].children[0] = 9; +/* 81:41 */waypoints[133].children[1] = 134; +/* 81:41 */waypoints[133].children[2] = 143; +/* 81:41 */waypoints[134] = spawnstruct(); +/* 81:41 */waypoints[134].origin = (130.414, 721.662, 73.1627); +/* 81:41 */waypoints[134].type = "stand"; +/* 81:41 */waypoints[134].children[0] = 135; +/* 81:41 */waypoints[134].children[1] = 133; +/* 81:41 */waypoints[134].children[2] = 137; +/* 81:41 */waypoints[134].children[3] = 141; +/* 81:41 */waypoints[135] = spawnstruct(); +/* 81:41 */waypoints[135].origin = (-35.5021, 615.053, 69.125); +/* 81:41 */waypoints[135].type = "stand"; +/* 81:41 */waypoints[135].children[0] = 136; +/* 81:41 */waypoints[135].children[1] = 134; +/* 81:41 */waypoints[136] = spawnstruct(); +/* 81:41 */waypoints[136].origin = (-35.3151, 345.353, 229.125); +/* 81:41 */waypoints[136].type = "stand"; +/* 81:41 */waypoints[136].children[0] = 120; +/* 81:41 */waypoints[136].children[1] = 135; +/* 81:41 */waypoints[137] = spawnstruct(); +/* 81:41 */waypoints[137].origin = (428.857, 708.023, 54.5165); +/* 81:41 */waypoints[137].type = "stand"; +/* 81:41 */waypoints[137].children[0] = 9; +/* 81:41 */waypoints[137].children[1] = 134; +/* 81:41 */waypoints[137].children[2] = 141; +/* 81:41 */waypoints[137].children[3] = 147; +/* 81:41 */waypoints[137].children[4] = 144; +/* 81:41 */waypoints[138] = spawnstruct(); +/* 81:41 */waypoints[138].origin = (343.999, 187.057, 83.6998); +/* 81:41 */waypoints[138].type = "stand"; +/* 81:41 */waypoints[138].children[0] = 123; +/* 81:41 */waypoints[138].children[1] = 141; +/* 81:41 */waypoints[138].children[2] = 144; +/* 81:41 */waypoints[138].children[3] = 145; +/* 81:41 */waypoints[138].children[4] = 146; +/* 81:41 */waypoints[139] = spawnstruct(); +/* 81:41 */waypoints[139].origin = (333.74, -240.01, 72.9785); +/* 81:41 */waypoints[139].type = "stand"; +/* 81:41 */waypoints[139].children[0] = 78; +/* 81:41 */waypoints[139].children[1] = 140; +/* 81:41 */waypoints[139].children[2] = 81; +/* 81:41 */waypoints[140] = spawnstruct(); +/* 81:41 */waypoints[140].origin = (106.668, -197.912, 73.5073); +/* 81:41 */waypoints[140].type = "stand"; +/* 81:41 */waypoints[140].children[0] = 139; +/* 81:41 */waypoints[140].children[1] = 80; +/* 81:41 */waypoints[140].children[2] = 122; +/* 81:41 */waypoints[140].children[3] = 123; +/* 81:41 */waypoints[141] = spawnstruct(); +/* 81:41 */waypoints[141].origin = (319.803, 712.474, 56.1943); +/* 81:41 */waypoints[141].type = "stand"; +/* 81:41 */waypoints[141].children[0] = 138; +/* 81:41 */waypoints[141].children[1] = 144; +/* 81:41 */waypoints[141].children[2] = 137; +/* 81:41 */waypoints[141].children[3] = 134; +/* 81:41 */waypoints[142] = spawnstruct(); +/* 81:41 */waypoints[142].origin = (203.514, 547.678, 69.6976); +/* 81:41 */waypoints[142].type = "stand"; +/* 81:41 */waypoints[142].children[0] = 144; +/* 81:41 */waypoints[142].children[1] = 143; +/* 81:41 */waypoints[143] = spawnstruct(); +/* 81:41 */waypoints[143].origin = (67.4711, 547.517, 72.4532); +/* 81:41 */waypoints[143].type = "stand"; +/* 81:41 */waypoints[143].children[0] = 142; +/* 81:41 */waypoints[143].children[1] = 124; +/* 81:41 */waypoints[143].children[2] = 133; +/* 81:41 */waypoints[144] = spawnstruct(); +/* 81:41 */waypoints[144].origin = (338.706, 555.188, 70.4899); +/* 81:41 */waypoints[144].type = "stand"; +/* 81:41 */waypoints[144].children[0] = 138; +/* 81:41 */waypoints[144].children[1] = 141; +/* 81:41 */waypoints[144].children[2] = 142; +/* 81:41 */waypoints[144].children[3] = 145; +/* 81:41 */waypoints[144].children[4] = 137; +/* 81:41 */waypoints[145] = spawnstruct(); +/* 81:41 */waypoints[145].origin = (225.712, 294.007, 73.9272); +/* 81:41 */waypoints[145].type = "stand"; +/* 81:41 */waypoints[145].children[0] = 124; +/* 81:41 */waypoints[145].children[1] = 138; +/* 81:41 */waypoints[145].children[2] = 144; +/* 81:41 */waypoints[146] = spawnstruct(); +/* 81:41 */waypoints[146].origin = (517.945, 166.357, 94.6203); +/* 81:41 */waypoints[146].type = "stand"; +/* 81:41 */waypoints[146].children[0] = 77; +/* 81:41 */waypoints[146].children[1] = 138; +/* 81:41 */waypoints[146].children[2] = 122; +/* 81:41 */waypoints[146].children[3] = 147; +/* 81:41 */waypoints[146].children[4] = 148; +/* 81:41 */waypoints[146].children[5] = 150; +/* 81:41 */waypoints[147] = spawnstruct(); +/* 81:41 */waypoints[147].origin = (501.905, 577.634, 57.0328); +/* 81:41 */waypoints[147].type = "stand"; +/* 81:41 */waypoints[147].children[0] = 146; +/* 81:41 */waypoints[147].children[1] = 137; +/* 81:41 */waypoints[147].children[2] = 148; +/* 81:41 */waypoints[148] = spawnstruct(); +/* 81:41 */waypoints[148].origin = (648.267, 327.991, 71.4454); +/* 81:41 */waypoints[148].type = "stand"; +/* 81:41 */waypoints[148].children[0] = 146; +/* 81:41 */waypoints[148].children[1] = 123; +/* 81:41 */waypoints[148].children[2] = 149; +/* 81:41 */waypoints[148].children[3] = 147; +/* 81:41 */waypoints[149] = spawnstruct(); +/* 81:41 */waypoints[149].origin = (1094.75, 355.717, 82.3193); +/* 81:41 */waypoints[149].type = "stand"; +/* 81:41 */waypoints[149].children[0] = 148; +/* 81:41 */waypoints[149].children[1] = 19; +/* 81:41 */waypoints[149].children[2] = 184; +/* 81:41 */waypoints[150] = spawnstruct(); +/* 81:41 */waypoints[150].origin = (500.63, -72.5203, 75.298); +/* 81:41 */waypoints[150].type = "stand"; +/* 81:41 */waypoints[150].children[0] = 77; +/* 81:41 */waypoints[150].children[1] = 151; +/* 81:41 */waypoints[150].children[2] = 146; +/* 81:41 */waypoints[151] = spawnstruct(); +/* 81:41 */waypoints[151].origin = (794.188, -79.0932, 74.3542); +/* 81:41 */waypoints[151].type = "stand"; +/* 81:41 */waypoints[151].children[0] = 150; +/* 81:41 */waypoints[151].children[1] = 153; +/* 81:41 */waypoints[151].children[2] = 152; +/* 81:41 */waypoints[152] = spawnstruct(); +/* 81:41 */waypoints[152].origin = (957.533, -161.246, 62.314); +/* 81:41 */waypoints[152].type = "stand"; +/* 81:41 */waypoints[152].children[0] = 151; +/* 81:41 */waypoints[152].children[1] = 153; +/* 81:41 */waypoints[152].children[2] = 75; +/* 81:41 */waypoints[153] = spawnstruct(); +/* 81:41 */waypoints[153].origin = (1210.63, -381.548, 53.2552); +/* 81:41 */waypoints[153].type = "stand"; +/* 81:41 */waypoints[153].children[0] = 74; +/* 81:41 */waypoints[153].children[1] = 151; +/* 81:41 */waypoints[153].children[2] = 152; +/* 81:41 */waypoints[154] = spawnstruct(); +/* 81:41 */waypoints[154].origin = (-203.717, -642.688, -119.875); +/* 81:41 */waypoints[154].type = "stand"; +/* 81:41 */waypoints[154].children[0] = 82; +/* 81:41 */waypoints[154].children[1] = 156; +/* 81:41 */waypoints[154].children[2] = 155; +/* 81:41 */waypoints[155] = spawnstruct(); +/* 81:41 */waypoints[155].origin = (-199.426, -921.402, -135.875); +/* 81:41 */waypoints[155].type = "stand"; +/* 81:41 */waypoints[155].children[0] = 156; +/* 81:41 */waypoints[155].children[1] = 154; +/* 81:41 */waypoints[156] = spawnstruct(); +/* 81:41 */waypoints[156].origin = (-204.777, -1089.19, -175.875); +/* 81:41 */waypoints[156].type = "stand"; +/* 81:41 */waypoints[156].children[0] = 154; +/* 81:41 */waypoints[156].children[1] = 155; +/* 81:41 */waypoints[156].children[2] = 157; +/* 81:41 */waypoints[157] = spawnstruct(); +/* 81:41 */waypoints[157].origin = (30.6019, -1090.99, -175.875); +/* 81:41 */waypoints[157].type = "stand"; +/* 81:41 */waypoints[157].children[0] = 156; +/* 81:41 */waypoints[157].children[1] = 158; +/* 81:41 */waypoints[158] = spawnstruct(); +/* 81:41 */waypoints[158].origin = (350.491, -1089.62, -162.701); +/* 81:41 */waypoints[158].type = "stand"; +/* 81:41 */waypoints[158].children[0] = 159; +/* 81:41 */waypoints[158].children[1] = 157; +/* 81:41 */waypoints[158].children[2] = 162; +/* 81:41 */waypoints[158].children[3] = 203; +/* 81:41 */waypoints[159] = spawnstruct(); +/* 81:41 */waypoints[159].origin = (697.045, -1097.78, -175.961); +/* 81:41 */waypoints[159].type = "stand"; +/* 81:41 */waypoints[159].children[0] = 160; +/* 81:41 */waypoints[159].children[1] = 158; +/* 81:41 */waypoints[160] = spawnstruct(); +/* 81:41 */waypoints[160].origin = (806.462, -1097.25, -174.302); +/* 81:41 */waypoints[160].type = "stand"; +/* 81:41 */waypoints[160].children[0] = 159; +/* 81:41 */waypoints[160].children[1] = 161; +/* 81:41 */waypoints[161] = spawnstruct(); +/* 81:41 */waypoints[161].origin = (1049.24, -1109.7, -101.098); +/* 81:41 */waypoints[161].type = "stand"; +/* 81:41 */waypoints[161].children[0] = 70; +/* 81:41 */waypoints[161].children[1] = 160; +/* 81:41 */waypoints[162] = spawnstruct(); +/* 81:41 */waypoints[162].origin = (353.073, -736.926, -175.875); +/* 81:41 */waypoints[162].type = "stand"; +/* 81:41 */waypoints[162].children[0] = 158; +/* 81:41 */waypoints[162].children[1] = 163; +/* 81:41 */waypoints[162].children[2] = 165; +/* 81:41 */waypoints[163] = spawnstruct(); +/* 81:41 */waypoints[163].origin = (626.228, -281.768, -128.452); +/* 81:41 */waypoints[163].type = "stand"; +/* 81:41 */waypoints[163].children[0] = 162; +/* 81:41 */waypoints[163].children[1] = 164; +/* 81:41 */waypoints[163].children[2] = 165; +/* 81:41 */waypoints[163].children[3] = 167; +/* 81:41 */waypoints[163].children[4] = 166; +/* 81:41 */waypoints[163].children[5] = 168; +/* 81:41 */waypoints[163].children[6] = 169; +/* 81:41 */waypoints[164] = spawnstruct(); +/* 81:41 */waypoints[164].origin = (854.407, -454.195, -13.1906); +/* 81:41 */waypoints[164].type = "stand"; +/* 81:41 */waypoints[164].children[0] = 75; +/* 81:41 */waypoints[164].children[1] = 163; +/* 81:41 */waypoints[164].children[2] = 167; +/* 81:41 */waypoints[164].children[3] = 77; +/* 81:41 */waypoints[165] = spawnstruct(); +/* 81:41 */waypoints[165].origin = (491.968, -444.817, -147.172); +/* 81:41 */waypoints[165].type = "stand"; +/* 81:41 */waypoints[165].children[0] = 162; +/* 81:41 */waypoints[165].children[1] = 163; +/* 81:41 */waypoints[165].children[2] = 166; +/* 81:41 */waypoints[166] = spawnstruct(); +/* 81:41 */waypoints[166].origin = (505.08, -188.844, -103.834); +/* 81:41 */waypoints[166].type = "stand"; +/* 81:41 */waypoints[166].children[0] = 167; +/* 81:41 */waypoints[166].children[1] = 165; +/* 81:41 */waypoints[166].children[2] = 163; +/* 81:41 */waypoints[166].children[3] = 188; +/* 81:41 */waypoints[167] = spawnstruct(); +/* 81:41 */waypoints[167].origin = (822.06, -213.238, -68.9509); +/* 81:41 */waypoints[167].type = "stand"; +/* 81:41 */waypoints[167].children[0] = 163; +/* 81:41 */waypoints[167].children[1] = 166; +/* 81:41 */waypoints[167].children[2] = 168; +/* 81:41 */waypoints[167].children[3] = 164; +/* 81:41 */waypoints[167].children[4] = 169; +/* 81:41 */waypoints[168] = spawnstruct(); +/* 81:41 */waypoints[168].origin = (706.518, 21.809, -136.139); +/* 81:41 */waypoints[168].type = "stand"; +/* 81:41 */waypoints[168].children[0] = 163; +/* 81:41 */waypoints[168].children[1] = 167; +/* 81:41 */waypoints[168].children[2] = 188; +/* 81:41 */waypoints[168].children[3] = 189; +/* 81:41 */waypoints[169] = spawnstruct(); +/* 81:41 */waypoints[169].origin = (817.394, 130.486, -144.355); +/* 81:41 */waypoints[169].type = "stand"; +/* 81:41 */waypoints[169].children[0] = 167; +/* 81:41 */waypoints[169].children[1] = 163; +/* 81:41 */waypoints[169].children[2] = 171; +/* 81:41 */waypoints[169].children[3] = 170; +/* 81:41 */waypoints[169].children[4] = 189; +/* 81:41 */waypoints[169].children[5] = 202; +/* 81:41 */waypoints[170] = spawnstruct(); +/* 81:41 */waypoints[170].origin = (803.566, 443.8, -128.064); +/* 81:41 */waypoints[170].type = "stand"; +/* 81:41 */waypoints[170].children[0] = 169; +/* 81:41 */waypoints[170].children[1] = 171; +/* 81:41 */waypoints[170].children[2] = 173; +/* 81:41 */waypoints[170].children[3] = 189; +/* 81:41 */waypoints[170].children[4] = 202; +/* 81:41 */waypoints[171] = spawnstruct(); +/* 81:41 */waypoints[171].origin = (1002.11, 444.115, -143.347); +/* 81:41 */waypoints[171].type = "stand"; +/* 81:41 */waypoints[171].children[0] = 169; +/* 81:41 */waypoints[171].children[1] = 170; +/* 81:41 */waypoints[171].children[2] = 172; +/* 81:41 */waypoints[172] = spawnstruct(); +/* 81:41 */waypoints[172].origin = (1177.47, 788.934, -167.717); +/* 81:41 */waypoints[172].type = "stand"; +/* 81:41 */waypoints[172].children[0] = 171; +/* 81:41 */waypoints[172].children[1] = 173; +/* 81:41 */waypoints[172].children[2] = 174; +/* 81:41 */waypoints[173] = spawnstruct(); +/* 81:41 */waypoints[173].origin = (711.007, 581.527, -112.748); +/* 81:41 */waypoints[173].type = "stand"; +/* 81:41 */waypoints[173].children[0] = 172; +/* 81:41 */waypoints[173].children[1] = 170; +/* 81:41 */waypoints[173].children[2] = 183; +/* 81:41 */waypoints[174] = spawnstruct(); +/* 81:41 */waypoints[174].origin = (1180.94, 1111.15, -175.875); +/* 81:41 */waypoints[174].type = "stand"; +/* 81:41 */waypoints[174].children[0] = 172; +/* 81:41 */waypoints[174].children[1] = 175; +/* 81:41 */waypoints[175] = spawnstruct(); +/* 81:41 */waypoints[175].origin = (1159.08, 1414.16, -175.683); +/* 81:41 */waypoints[175].type = "stand"; +/* 81:41 */waypoints[175].children[0] = 174; +/* 81:41 */waypoints[175].children[1] = 176; +/* 81:41 */waypoints[175].children[2] = 177; +/* 81:41 */waypoints[176] = spawnstruct(); +/* 81:41 */waypoints[176].origin = (383.735, 1388.39, -151.875); +/* 81:41 */waypoints[176].type = "stand"; +/* 81:41 */waypoints[176].children[0] = 175; +/* 81:41 */waypoints[176].children[1] = 187; +/* 81:41 */waypoints[177] = spawnstruct(); +/* 81:41 */waypoints[177].origin = (1558.94, 1410.6, -175.897); +/* 81:41 */waypoints[177].type = "stand"; +/* 81:41 */waypoints[177].children[0] = 175; +/* 81:41 */waypoints[177].children[1] = 178; +/* 81:41 */waypoints[178] = spawnstruct(); +/* 81:41 */waypoints[178].origin = (1678.59, 1209.39, -175.897); +/* 81:41 */waypoints[178].type = "stand"; +/* 81:41 */waypoints[178].children[0] = 177; +/* 81:41 */waypoints[178].children[1] = 179; +/* 81:41 */waypoints[179] = spawnstruct(); +/* 81:41 */waypoints[179].origin = (2006.74, 1196.9, -151.875); +/* 81:41 */waypoints[179].type = "stand"; +/* 81:41 */waypoints[179].children[0] = 180; +/* 81:41 */waypoints[179].children[1] = 178; +/* 81:41 */waypoints[180] = spawnstruct(); +/* 81:41 */waypoints[180].origin = (2006.65, 948.46, -63.875); +/* 81:41 */waypoints[180].type = "stand"; +/* 81:41 */waypoints[180].children[0] = 179; +/* 81:41 */waypoints[180].children[1] = 181; +/* 81:41 */waypoints[181] = spawnstruct(); +/* 81:41 */waypoints[181].origin = (1670.99, 935.794, 87.7462); +/* 81:41 */waypoints[181].type = "stand"; +/* 81:41 */waypoints[181].children[0] = 180; +/* 81:41 */waypoints[181].children[1] = 36; +/* 81:41 */waypoints[181].children[2] = 32; +/* 81:41 */waypoints[181].children[3] = 182; +/* 81:41 */waypoints[182] = spawnstruct(); +/* 81:41 */waypoints[182].origin = (1649.21, 1073.97, 82.6967); +/* 81:41 */waypoints[182].type = "stand"; +/* 81:41 */waypoints[182].children[0] = 181; +/* 81:41 */waypoints[182].children[1] = 24; +/* 81:41 */waypoints[182].children[2] = 36; +/* 81:41 */waypoints[183] = spawnstruct(); +/* 81:41 */waypoints[183].origin = (518.655, 998.338, 20.888); +/* 81:41 */waypoints[183].type = "stand"; +/* 81:41 */waypoints[183].children[0] = 14; +/* 81:41 */waypoints[183].children[1] = 173; +/* 81:41 */waypoints[183].children[2] = 186; +/* 81:41 */waypoints[184] = spawnstruct(); +/* 81:41 */waypoints[184].origin = (966.416, 654.439, 66.4686); +/* 81:41 */waypoints[184].type = "stand"; +/* 81:41 */waypoints[184].children[0] = 149; +/* 81:41 */waypoints[184].children[1] = 185; +/* 81:41 */waypoints[185] = spawnstruct(); +/* 81:41 */waypoints[185].origin = (831.638, 851.069, 38.1579); +/* 81:41 */waypoints[185].type = "stand"; +/* 81:41 */waypoints[185].children[0] = 18; +/* 81:41 */waypoints[185].children[1] = 186; +/* 81:41 */waypoints[185].children[2] = 184; +/* 81:41 */waypoints[186] = spawnstruct(); +/* 81:41 */waypoints[186].origin = (596.64, 836.089, -36.1222); +/* 81:41 */waypoints[186].type = "stand"; +/* 81:41 */waypoints[186].children[0] = 183; +/* 81:41 */waypoints[186].children[1] = 185; +/* 81:41 */waypoints[187] = spawnstruct(); +/* 81:41 */waypoints[187].origin = (379.522, 1616.56, -63.875); +/* 81:41 */waypoints[187].type = "stand"; +/* 81:41 */waypoints[187].children[0] = 11; +/* 81:41 */waypoints[187].children[1] = 176; +/* 81:41 */waypoints[188] = spawnstruct(); +/* 81:41 */waypoints[188].origin = (558.729, -25.117, -84.5143); +/* 81:41 */waypoints[188].type = "stand"; +/* 81:41 */waypoints[188].children[0] = 168; +/* 81:41 */waypoints[188].children[1] = 189; +/* 81:41 */waypoints[188].children[2] = 166; +/* 81:41 */waypoints[189] = spawnstruct(); +/* 81:41 */waypoints[189].origin = (662.189, 143.631, -104.365); +/* 81:41 */waypoints[189].type = "stand"; +/* 81:41 */waypoints[189].children[0] = 169; +/* 81:41 */waypoints[189].children[1] = 170; +/* 81:41 */waypoints[189].children[2] = 168; +/* 81:41 */waypoints[189].children[3] = 188; +/* 81:41 */waypoints[190] = spawnstruct(); +/* 81:41 */waypoints[190].origin = (1826.88, -454.683, 71.9899); +/* 81:41 */waypoints[190].type = "crouch"; +/* 81:41 */waypoints[190].children[0] = 51; +/* 81:41 */waypoints[190].angles = (6.42578, 143.702, 0); +/* 81:41 */waypoints[191] = spawnstruct(); +/* 81:41 */waypoints[191].origin = (1904.87, -200.875, 73.3792); +/* 81:41 */waypoints[191].type = "crouch"; +/* 81:41 */waypoints[191].children[0] = 44; +/* 81:41 */waypoints[191].angles = (2.39929, 89.4625, 0); +/* 81:41 */waypoints[192] = spawnstruct(); +/* 81:41 */waypoints[192].origin = (2096.88, 229.125, 72.288); +/* 81:41 */waypoints[192].type = "crouch"; +/* 81:41 */waypoints[192].children[0] = 45; +/* 81:41 */waypoints[192].angles = (3.93738, 134.787, 0); +/* 81:41 */waypoints[193] = spawnstruct(); +/* 81:41 */waypoints[193].origin = (2142.39, 1353.14, 80.4828); +/* 81:41 */waypoints[193].type = "stand"; +/* 81:41 */waypoints[193].children[0] = 26; +/* 81:41 */waypoints[193].children[1] = 24; +/* 81:41 */waypoints[193].children[2] = 35; +/* 81:41 */waypoints[194] = spawnstruct(); +/* 81:41 */waypoints[194].origin = (1812.88, 321.125, 73.2996); +/* 81:41 */waypoints[194].type = "crouch"; +/* 81:41 */waypoints[194].children[0] = 42; +/* 81:41 */waypoints[194].angles = (3.88794, 143.449, 0); +/* 81:41 */waypoints[195] = spawnstruct(); +/* 81:41 */waypoints[195].origin = (-725.612, -131.875, 69.125); +/* 81:41 */waypoints[195].type = "crouch"; +/* 81:41 */waypoints[195].children[0] = 125; +/* 81:41 */waypoints[195].angles = (3.88794, 43.1716, 0); +/* 81:41 */waypoints[196] = spawnstruct(); +/* 81:41 */waypoints[196].origin = (-1314.88, -499.492, -22.7352); +/* 81:41 */waypoints[196].type = "crouch"; +/* 81:41 */waypoints[196].children[0] = 117; +/* 81:41 */waypoints[196].angles = (-3.41797, 42.1828, 0); +/* 81:41 */waypoints[197] = spawnstruct(); +/* 81:41 */waypoints[197].origin = (312.875, -1848.45, 45.6107); +/* 81:41 */waypoints[197].type = "crouch"; +/* 81:41 */waypoints[197].children[0] = 92; +/* 81:41 */waypoints[197].angles = (6.77185, 139.615, 0); +/* 81:41 */waypoints[198] = spawnstruct(); +/* 81:41 */waypoints[198].origin = (1551.32, -1485.99, 56.1248); +/* 81:41 */waypoints[198].type = "crouch"; +/* 81:41 */waypoints[198].children[0] = 54; +/* 81:41 */waypoints[198].angles = (2.92664, 168.031, 0); +/* 81:41 */waypoints[199] = spawnstruct(); +/* 81:41 */waypoints[199].origin = (1596.88, -1004.74, 71.8575); +/* 81:41 */waypoints[199].type = "crouch"; +/* 81:41 */waypoints[199].children[0] = 52; +/* 81:41 */waypoints[199].angles = (4.27795, 150.53, 0); +/* 81:41 */waypoints[200] = spawnstruct(); +/* 81:41 */waypoints[200].origin = (1692.56, 217.803, 72.851); +/* 81:41 */waypoints[200].type = "claymore"; +/* 81:41 */waypoints[200].children[0] = 40; +/* 81:41 */waypoints[200].children[1] = 44; +/* 81:41 */waypoints[200].angles = (80.589, 177.589, 0); +/* 81:41 */waypoints[201] = spawnstruct(); +/* 81:41 */waypoints[201].origin = (1636.84, 290.032, 73.8082); +/* 81:41 */waypoints[201].type = "claymore"; +/* 81:41 */waypoints[201].children[0] = 43; +/* 81:41 */waypoints[201].angles = (58.2867, 157.753, 0); +/* 81:41 */waypoints[202] = spawnstruct(); +/* 81:41 */waypoints[202].origin = (757.466, 239.907, -127.863); +/* 81:41 */waypoints[202].type = "claymore"; +/* 81:41 */waypoints[202].children[0] = 169; +/* 81:41 */waypoints[202].children[1] = 170; +/* 81:41 */waypoints[202].angles = (75.0024, -10.3978, 0); +/* 81:41 */waypoints[203] = spawnstruct(); +/* 81:41 */waypoints[203].origin = (194.16, -1319.88, -159.119); +/* 81:41 */waypoints[203].type = "crouch"; +/* 81:41 */waypoints[203].children[0] = 158; +/* 81:41 */waypoints[203].angles = (4.08569, 66.6933, 0); +/* 81:41 */waypoints[204] = spawnstruct(); +/* 81:41 */waypoints[204].origin = (-154.722, -2.36982, 229.125); +/* 81:41 */waypoints[204].type = "crouch"; +/* 81:41 */waypoints[204].children[0] = 118; +/* 81:41 */waypoints[204].angles = (6.01379, 127.338, 0); +/* 81:41 */waypoints[205] = spawnstruct(); +/* 81:41 */waypoints[205].origin = (-699.15, -76.7079, 229.125); +/* 81:41 */waypoints[205].type = "crouch"; +/* 81:41 */waypoints[205].children[0] = 118; +/* 81:41 */waypoints[205].angles = (1.97083, 50.8181, 0); +/* 81:41 */waypoints[206] = spawnstruct(); +/* 81:41 */waypoints[206].origin = (-408.24, 1457.26, 80.5091); +/* 81:41 */waypoints[206].type = "claymore"; +/* 81:41 */waypoints[206].children[0] = 6; +/* 81:41 */waypoints[206].children[1] = 2; +/* 81:41 */waypoints[206].angles = (71.3605, -16.3249, 0); +/* 81:41 */waypoints[207] = spawnstruct(); +/* 81:41 */waypoints[207].origin = (-933.475, -498.017, -14.7668); +/* 81:41 */waypoints[207].type = "claymore"; +/* 81:41 */waypoints[207].children[0] = 107; +/* 81:41 */waypoints[207].children[1] = 108; +/* 81:41 */waypoints[207].children[2] = 115; +/* 81:41 */waypoints[207].angles = (82.7039, 19.095, 0); +/* 81:41 */waypoints[208] = spawnstruct(); +/* 81:41 */waypoints[208].origin = (-706.697, 268.612, 229.125); +/* 81:41 */waypoints[208].type = "claymore"; +/* 81:41 */waypoints[208].children[0] = 113; +/* 81:41 */waypoints[208].angles = (48.6902, -120.052, 0); +/* 81:41 */waypoints[209] = spawnstruct(); +/* 81:41 */waypoints[209].origin = (172.974, -1224.32, 48.2083); +/* 81:41 */waypoints[209].type = "claymore"; +/* 81:41 */waypoints[209].children[0] = 91; +/* 81:41 */waypoints[209].angles = (54.6503, -65.9996, 0); +/* 81:41 */waypoints[210] = spawnstruct(); +/* 81:41 */waypoints[210].origin = (-482.741, -1159.49, 42.2996); +/* 81:41 */waypoints[210].type = "claymore"; +/* 81:41 */waypoints[210].children[0] = 87; +/* 81:41 */waypoints[210].children[1] = 93; +/* 81:41 */waypoints[210].angles = (59.4623, -165.019, 0); +/* 81:41 */waypoints[211] = spawnstruct(); +/* 81:41 */waypoints[211].origin = (-15.1691, -1371.27, 46.9439); +/* 81:41 */waypoints[211].type = "claymore"; +/* 81:41 */waypoints[211].children[0] = 94; +/* 81:41 */waypoints[211].children[1] = 91; +/* 81:41 */waypoints[211].angles = (65.2301, -74.6898, 0); +/* 81:41 */waypoints[212] = spawnstruct(); +/* 81:41 */waypoints[212].origin = (-142.663, 136.692, 69.125); +/* 81:41 */waypoints[212].type = "stand"; +/* 81:41 */waypoints[212].children[0] = 125; +/* 81:41 */waypoints[212].children[1] = 124; +/* 81:41 */waypoints[212].children[2] = 109; +/* 81:41 */waypoints[212].children[3] = 213; +/* 81:41 */waypoints[212].children[4] = 214; +/* 81:41 */waypoints[212].children[5] = 218; +/* 81:41 */waypoints[213] = spawnstruct(); +/* 81:41 */waypoints[213].origin = (-131.533, -265.507, 69.125); +/* 81:41 */waypoints[213].type = "crouch"; +/* 81:41 */waypoints[213].children[0] = 212; +/* 81:41 */waypoints[213].angles = (6.96961, 97.4935, 0); +/* 81:41 */waypoints[214] = spawnstruct(); +/* 81:41 */waypoints[214].origin = (-144.31, -221.711, 71.125); +/* 81:41 */waypoints[214].type = "stand"; +/* 81:41 */waypoints[214].children[0] = 212; +/* 81:41 */waypoints[214].children[1] = 215; +/* 81:41 */waypoints[215] = spawnstruct(); +/* 81:41 */waypoints[215].origin = (-703.258, -233.582, 69.125); +/* 81:41 */waypoints[215].type = "stand"; +/* 81:41 */waypoints[215].children[0] = 216; +/* 81:41 */waypoints[215].children[1] = 214; +/* 81:41 */waypoints[216] = spawnstruct(); +/* 81:41 */waypoints[216].origin = (-700.039, 57.4648, 69.125); +/* 81:41 */waypoints[216].type = "stand"; +/* 81:41 */waypoints[216].children[0] = 215; +/* 81:41 */waypoints[216].children[1] = 109; +/* 81:41 */waypoints[216].children[2] = 111; +/* 81:41 */waypoints[217] = spawnstruct(); +/* 81:41 */waypoints[217].origin = (-371.96, 353.125, 69.1249); +/* 81:41 */waypoints[217].type = "claymore"; +/* 81:41 */waypoints[217].children[0] = 126; +/* 81:41 */waypoints[217].children[1] = 125; +/* 81:41 */waypoints[217].angles = (44.6362, -140.915, 0); +/* 81:41 */waypoints[218] = spawnstruct(); +/* 81:41 */waypoints[218].origin = (-351.485, 224.839, 69.1249); +/* 81:41 */waypoints[218].type = "claymore"; +/* 81:41 */waypoints[218].children[0] = 212; +/* 81:41 */waypoints[218].children[1] = 125; +/* 81:41 */waypoints[218].angles = (68.0921, -132.604, 0); +/* 81:41 */waypoints[219] = spawnstruct(); +/* 81:41 */waypoints[219].origin = (579.032, 1307.48, 110.125); +/* 81:41 */waypoints[219].type = "stand"; +/* 81:41 */waypoints[219].children[0] = 220; +/* 81:41 */waypoints[219].children[1] = 15; +/* 81:41 */waypoints[220] = spawnstruct(); +/* 81:41 */waypoints[220].origin = (348.411, 1390.84, 110.125); +/* 81:41 */waypoints[220].type = "stand"; +/* 81:41 */waypoints[220].children[0] = 219; +/* 81:41 */waypoints[220].children[1] = 221; +/* 81:41 */waypoints[221] = spawnstruct(); +/* 81:41 */waypoints[221].origin = (373.372, 1487.64, 79.9235); +/* 81:41 */waypoints[221].type = "stand"; +/* 81:41 */waypoints[221].children[0] = 13; +/* 81:41 */waypoints[221].children[1] = 220; +/* 81:41 */waypoints[221].children[2] = 15; +/* 81:41 */return waypoints; +} diff --git a/raw/maps/mp/bots/waypoints/highrise.gsc b/raw/maps/mp/bots/waypoints/highrise.gsc new file mode 100644 index 0000000..c8c4614 --- /dev/null +++ b/raw/maps/mp/bots/waypoints/highrise.gsc @@ -0,0 +1,1408 @@ +Highrise() +{ + waypoints = []; +waypoints[0] = spawnstruct(); +/* 8:58 */waypoints[0].origin =(1548.28, 7473.05, 2824.13); +/* 8:58 */waypoints[0].type = "stand"; +/* 8:58 */waypoints[0].childCount = 1; +/* 8:58 */waypoints[0].children[0] = 1; +/* 8:58 */waypoints[1] = spawnstruct(); +/* 8:58 */waypoints[1].origin =(1201.67, 7470.51, 2824.13); +/* 8:58 */waypoints[1].type = "stand"; +/* 8:58 */waypoints[1].childCount = 3; +/* 8:58 */waypoints[1].children[0] = 0; +/* 8:58 */waypoints[1].children[1] = 2; +/* 8:58 */waypoints[1].children[2] = 141; +/* 8:58 */waypoints[2] = spawnstruct(); +/* 8:58 */waypoints[2].origin =(1203.93, 7162.68, 2824.13); +/* 8:58 */waypoints[2].type = "stand"; +/* 8:58 */waypoints[2].childCount = 3; +/* 8:58 */waypoints[2].children[0] = 1; +/* 8:58 */waypoints[2].children[1] = 147; +/* 8:58 */waypoints[2].children[2] = 148; +/* 8:58 */waypoints[3] = spawnstruct(); +/* 8:58 */waypoints[3].origin =(1195.14, 6665.43, 2824.13); +/* 8:58 */waypoints[3].type = "stand"; +/* 8:58 */waypoints[3].childCount = 3; +/* 8:58 */waypoints[3].children[0] = 4; +/* 8:58 */waypoints[3].children[1] = 147; +/* 8:58 */waypoints[3].children[2] = 148; +/* 8:58 */waypoints[4] = spawnstruct(); +/* 8:58 */waypoints[4].origin =(903.55, 6672.57, 2824.13); +/* 8:58 */waypoints[4].type = "stand"; +/* 8:58 */waypoints[4].childCount = 3; +/* 8:58 */waypoints[4].children[0] = 3; +/* 8:58 */waypoints[4].children[1] = 5; +/* 8:58 */waypoints[4].children[2] = 136; +/* 8:58 */waypoints[5] = spawnstruct(); +/* 8:58 */waypoints[5].origin =(894.827, 6837.06, 2824.13); +/* 8:58 */waypoints[5].type = "stand"; +/* 8:58 */waypoints[5].childCount = 3; +/* 8:58 */waypoints[5].children[0] = 4; +/* 8:58 */waypoints[5].children[1] = 6; +/* 8:58 */waypoints[5].children[2] = 7; +/* 8:58 */waypoints[6] = spawnstruct(); +/* 8:58 */waypoints[6].origin =(1065.62, 6838.75, 2824.13); +/* 8:58 */waypoints[6].type = "stand"; +/* 8:58 */waypoints[6].childCount = 3; +/* 8:58 */waypoints[6].children[0] = 5; +/* 8:58 */waypoints[6].children[1] = 8; +/* 8:58 */waypoints[6].children[2] = 180; +/* 8:58 */waypoints[7] = spawnstruct(); +/* 8:58 */waypoints[7].origin =(756.149, 6829.9, 2824.13); +/* 8:58 */waypoints[7].type = "stand"; +/* 8:58 */waypoints[7].childCount = 1; +/* 8:58 */waypoints[7].children[0] = 5; +/* 8:58 */waypoints[8] = spawnstruct(); +/* 8:58 */waypoints[8].origin =(1071.08, 6965.36, 2824.13); +/* 8:58 */waypoints[8].type = "stand"; +/* 8:58 */waypoints[8].childCount = 2; +/* 8:58 */waypoints[8].children[0] = 6; +/* 8:58 */waypoints[8].children[1] = 9; +/* 8:58 */waypoints[9] = spawnstruct(); +/* 8:58 */waypoints[9].origin =(640.907, 6955.6, 2648.13); +/* 8:58 */waypoints[9].type = "stand"; +/* 8:58 */waypoints[9].childCount = 2; +/* 8:58 */waypoints[9].children[0] = 8; +/* 8:58 */waypoints[9].children[1] = 10; +/* 8:58 */waypoints[10] = spawnstruct(); +/* 8:58 */waypoints[10].origin =(658.652, 6885.35, 2648.13); +/* 8:58 */waypoints[10].type = "stand"; +/* 8:58 */waypoints[10].childCount = 3; +/* 8:58 */waypoints[10].children[0] = 9; +/* 8:58 */waypoints[10].children[1] = 11; +/* 8:58 */waypoints[10].children[2] = 149; +/* 8:58 */waypoints[11] = spawnstruct(); +/* 8:58 */waypoints[11].origin =(643.003, 6692.25, 2648.13); +/* 8:58 */waypoints[11].type = "stand"; +/* 8:58 */waypoints[11].childCount = 2; +/* 8:58 */waypoints[11].children[0] = 10; +/* 8:58 */waypoints[11].children[1] = 12; +/* 8:58 */waypoints[12] = spawnstruct(); +/* 8:58 */waypoints[12].origin =(341.951, 6695.22, 2648.13); +/* 8:58 */waypoints[12].type = "stand"; +/* 8:58 */waypoints[12].childCount = 2; +/* 8:58 */waypoints[12].children[0] = 11; +/* 8:58 */waypoints[12].children[1] = 13; +/* 8:58 */waypoints[13] = spawnstruct(); +/* 8:58 */waypoints[13].origin =(252.697, 6849.44, 2648.13); +/* 8:58 */waypoints[13].type = "stand"; +/* 8:58 */waypoints[13].childCount = 2; +/* 8:58 */waypoints[13].children[0] = 12; +/* 8:58 */waypoints[13].children[1] = 14; +/* 8:58 */waypoints[14] = spawnstruct(); +/* 8:58 */waypoints[14].origin =(-261.936, 6788, 2648.13); +/* 8:58 */waypoints[14].type = "stand"; +/* 8:58 */waypoints[14].childCount = 3; +/* 8:58 */waypoints[14].children[0] = 13; +/* 8:58 */waypoints[14].children[1] = 15; +/* 8:58 */waypoints[14].children[2] = 181; +/* 8:58 */waypoints[15] = spawnstruct(); +/* 8:58 */waypoints[15].origin =(-517.427, 6734.01, 2648.13); +/* 8:58 */waypoints[15].type = "stand"; +/* 8:58 */waypoints[15].childCount = 4; +/* 8:58 */waypoints[15].children[0] = 14; +/* 8:58 */waypoints[15].children[1] = 16; +/* 8:58 */waypoints[15].children[2] = 19; +/* 8:58 */waypoints[15].children[3] = 197; +/* 8:58 */waypoints[16] = spawnstruct(); +/* 8:58 */waypoints[16].origin =(-891.208, 6554.49, 2648.13); +/* 8:58 */waypoints[16].type = "stand"; +/* 8:58 */waypoints[16].childCount = 4; +/* 8:58 */waypoints[16].children[0] = 15; +/* 8:58 */waypoints[16].children[1] = 17; +/* 8:58 */waypoints[16].children[2] = 18; +/* 8:58 */waypoints[16].children[3] = 23; +/* 8:58 */waypoints[17] = spawnstruct(); +/* 8:58 */waypoints[17].origin =(-629.427, 6555.69, 2648.13); +/* 8:58 */waypoints[17].type = "stand"; +/* 8:58 */waypoints[17].childCount = 1; +/* 8:58 */waypoints[17].children[0] = 16; +/* 8:58 */waypoints[18] = spawnstruct(); +/* 8:58 */waypoints[18].origin =(-899.357, 7066.52, 2648.13); +/* 8:58 */waypoints[18].type = "stand"; +/* 8:58 */waypoints[18].childCount = 3; +/* 8:58 */waypoints[18].children[0] = 16; +/* 8:58 */waypoints[18].children[1] = 19; +/* 8:58 */waypoints[18].children[2] = 30; +/* 8:58 */waypoints[19] = spawnstruct(); +/* 8:58 */waypoints[19].origin =(-518.639, 7060.68, 2648.13); +/* 8:58 */waypoints[19].type = "stand"; +/* 8:58 */waypoints[19].childCount = 4; +/* 8:58 */waypoints[19].children[0] = 18; +/* 8:58 */waypoints[19].children[1] = 20; +/* 8:58 */waypoints[19].children[2] = 15; +/* 8:58 */waypoints[19].children[3] = 194; +/* 8:58 */waypoints[20] = spawnstruct(); +/* 8:58 */waypoints[20].origin =(-417.711, 7076.82, 2648.13); +/* 8:58 */waypoints[20].type = "stand"; +/* 8:58 */waypoints[20].childCount = 2; +/* 8:58 */waypoints[20].children[0] = 19; +/* 8:58 */waypoints[20].children[1] = 21; +/* 8:58 */waypoints[21] = spawnstruct(); +/* 8:58 */waypoints[21].origin =(-415.847, 6846.23, 2722.13); +/* 8:58 */waypoints[21].type = "stand"; +/* 8:58 */waypoints[21].childCount = 2; +/* 8:58 */waypoints[21].children[0] = 20; +/* 8:58 */waypoints[21].children[1] = 22; +/* 8:58 */waypoints[22] = spawnstruct(); +/* 8:58 */waypoints[22].origin =(-233.025, 6853.84, 2776.13); +/* 8:58 */waypoints[22].type = "stand"; +/* 8:58 */waypoints[22].childCount = 4; +/* 8:58 */waypoints[22].children[0] = 21; +/* 8:58 */waypoints[22].children[1] = 82; +/* 8:58 */waypoints[22].children[2] = 115; +/* 8:58 */waypoints[22].children[3] = 116; +/* 8:58 */waypoints[23] = spawnstruct(); +/* 8:58 */waypoints[23].origin =(-1370.92, 6556.74, 2648.13); +/* 8:58 */waypoints[23].type = "stand"; +/* 8:58 */waypoints[23].childCount = 3; +/* 8:58 */waypoints[23].children[0] = 16; +/* 8:58 */waypoints[23].children[1] = 24; +/* 8:58 */waypoints[23].children[2] = 28; +/* 8:58 */waypoints[24] = spawnstruct(); +/* 8:58 */waypoints[24].origin =(-1389.85, 6384.17, 2648.13); +/* 8:58 */waypoints[24].type = "stand"; +/* 8:58 */waypoints[24].childCount = 3; +/* 8:58 */waypoints[24].children[0] = 23; +/* 8:58 */waypoints[24].children[1] = 25; +/* 8:58 */waypoints[24].children[2] = 157; +/* 8:58 */waypoints[25] = spawnstruct(); +/* 8:58 */waypoints[25].origin =(-1369.03, 5993.43, 2648.13); +/* 8:58 */waypoints[25].type = "stand"; +/* 8:58 */waypoints[25].childCount = 2; +/* 8:58 */waypoints[25].children[0] = 24; +/* 8:58 */waypoints[25].children[1] = 26; +/* 8:58 */waypoints[26] = spawnstruct(); +/* 8:58 */waypoints[26].origin =(-1371.6, 5667.87, 2776.13); +/* 8:58 */waypoints[26].type = "stand"; +/* 8:58 */waypoints[26].childCount = 3; +/* 8:58 */waypoints[26].children[0] = 25; +/* 8:58 */waypoints[26].children[1] = 27; +/* 8:58 */waypoints[26].children[2] = 158; +/* 8:58 */waypoints[27] = spawnstruct(); +/* 8:58 */waypoints[27].origin =(-1373.5, 5329.72, 2776.13); +/* 8:58 */waypoints[27].type = "stand"; +/* 8:58 */waypoints[27].childCount = 3; +/* 8:58 */waypoints[27].children[0] = 26; +/* 8:58 */waypoints[27].children[1] = 112; +/* 8:58 */waypoints[27].children[2] = 102; +/* 8:58 */waypoints[28] = spawnstruct(); +/* 8:58 */waypoints[28].origin =(-1514.4, 6650.5, 2648.13); +/* 8:58 */waypoints[28].type = "stand"; +/* 8:58 */waypoints[28].childCount = 3; +/* 8:58 */waypoints[28].children[0] = 23; +/* 8:58 */waypoints[28].children[1] = 29; +/* 8:58 */waypoints[28].children[2] = 34; +/* 8:58 */waypoints[29] = spawnstruct(); +/* 8:58 */waypoints[29].origin =(-1532.21, 6869.18, 2696.13); +/* 8:58 */waypoints[29].type = "stand"; +/* 8:58 */waypoints[29].childCount = 3; +/* 8:58 */waypoints[29].children[0] = 28; +/* 8:58 */waypoints[29].children[1] = 30; +/* 8:58 */waypoints[29].children[2] = 166; +/* 8:58 */waypoints[30] = spawnstruct(); +/* 8:58 */waypoints[30].origin =(-1474.82, 7093.3, 2648.13); +/* 8:58 */waypoints[30].type = "stand"; +/* 8:58 */waypoints[30].childCount = 4; +/* 8:58 */waypoints[30].children[0] = 29; +/* 8:58 */waypoints[30].children[1] = 18; +/* 8:58 */waypoints[30].children[2] = 31; +/* 8:58 */waypoints[30].children[3] = 170; +/* 8:58 */waypoints[31] = spawnstruct(); +/* 8:58 */waypoints[31].origin =(-1856.09, 7114.44, 2648.13); +/* 8:58 */waypoints[31].type = "stand"; +/* 8:58 */waypoints[31].childCount = 4; +/* 8:58 */waypoints[31].children[0] = 30; +/* 8:58 */waypoints[31].children[1] = 32; +/* 8:58 */waypoints[31].children[2] = 42; +/* 8:58 */waypoints[31].children[3] = 195; +/* 8:58 */waypoints[32] = spawnstruct(); +/* 8:58 */waypoints[32].origin =(-1858.17, 6893.2, 2696.13); +/* 8:58 */waypoints[32].type = "stand"; +/* 8:58 */waypoints[32].childCount = 2; +/* 8:58 */waypoints[32].children[0] = 31; +/* 8:58 */waypoints[32].children[1] = 33; +/* 8:58 */waypoints[33] = spawnstruct(); +/* 8:58 */waypoints[33].origin =(-1834.26, 6652.36, 2648.13); +/* 8:58 */waypoints[33].type = "stand"; +/* 8:58 */waypoints[33].childCount = 3; +/* 8:58 */waypoints[33].children[0] = 32; +/* 8:58 */waypoints[33].children[1] = 34; +/* 8:58 */waypoints[33].children[2] = 37; +/* 8:58 */waypoints[34] = spawnstruct(); +/* 8:58 */waypoints[34].origin =(-1722.39, 6657.35, 2648.13); +/* 8:58 */waypoints[34].type = "stand"; +/* 8:58 */waypoints[34].childCount = 3; +/* 8:58 */waypoints[34].children[0] = 33; +/* 8:58 */waypoints[34].children[1] = 28; +/* 8:58 */waypoints[34].children[2] = 35; +/* 8:58 */waypoints[35] = spawnstruct(); +/* 8:58 */waypoints[35].origin =(-1730.32, 6545.11, 2648.13); +/* 8:58 */waypoints[35].type = "stand"; +/* 8:58 */waypoints[35].childCount = 2; +/* 8:58 */waypoints[35].children[0] = 34; +/* 8:58 */waypoints[35].children[1] = 36; +/* 8:58 */waypoints[36] = spawnstruct(); +/* 8:58 */waypoints[36].origin =(-1345.62, 6541.65, 2776.13); +/* 8:58 */waypoints[36].type = "stand"; +/* 8:58 */waypoints[36].childCount = 2; +/* 8:58 */waypoints[36].children[0] = 35; +/* 8:58 */waypoints[36].children[1] = 72; +/* 8:58 */waypoints[37] = spawnstruct(); +/* 8:58 */waypoints[37].origin =(-2173.24, 6660.54, 2648.13); +/* 8:58 */waypoints[37].type = "stand"; +/* 8:58 */waypoints[37].childCount = 4; +/* 8:58 */waypoints[37].children[0] = 33; +/* 8:58 */waypoints[37].children[1] = 38; +/* 8:58 */waypoints[37].children[2] = 41; +/* 8:58 */waypoints[37].children[3] = 196; +/* 8:58 */waypoints[38] = spawnstruct(); +/* 8:58 */waypoints[38].origin =(-2265.59, 6670.22, 2648.13); +/* 8:58 */waypoints[38].type = "stand"; +/* 8:58 */waypoints[38].childCount = 2; +/* 8:58 */waypoints[38].children[0] = 37; +/* 8:58 */waypoints[38].children[1] = 39; +/* 8:58 */waypoints[39] = spawnstruct(); +/* 8:58 */waypoints[39].origin =(-2271.79, 6904.16, 2722.13); +/* 8:58 */waypoints[39].type = "stand"; +/* 8:58 */waypoints[39].childCount = 2; +/* 8:58 */waypoints[39].children[0] = 38; +/* 8:58 */waypoints[39].children[1] = 40; +/* 8:58 */waypoints[40] = spawnstruct(); +/* 8:58 */waypoints[40].origin =(-2483.6, 6892.75, 2776.13); +/* 8:58 */waypoints[40].type = "stand"; +/* 8:58 */waypoints[40].childCount = 3; +/* 8:58 */waypoints[40].children[0] = 39; +/* 8:58 */waypoints[40].children[1] = 88; +/* 8:58 */waypoints[40].children[2] = 90; +/* 8:58 */waypoints[41] = spawnstruct(); +/* 8:58 */waypoints[41].origin =(-2201.08, 6969.32, 2648.13); +/* 8:58 */waypoints[41].type = "stand"; +/* 8:58 */waypoints[41].childCount = 3; +/* 8:58 */waypoints[41].children[0] = 37; +/* 8:58 */waypoints[41].children[1] = 42; +/* 8:58 */waypoints[41].children[2] = 43; +/* 8:58 */waypoints[42] = spawnstruct(); +/* 8:58 */waypoints[42].origin =(-2169.41, 7130.74, 2648.13); +/* 8:58 */waypoints[42].type = "stand"; +/* 8:58 */waypoints[42].childCount = 2; +/* 8:58 */waypoints[42].children[0] = 41; +/* 8:58 */waypoints[42].children[1] = 31; +/* 8:58 */waypoints[43] = spawnstruct(); +/* 8:58 */waypoints[43].origin =(-2463.99, 6965.75, 2648.13); +/* 8:58 */waypoints[43].type = "stand"; +/* 8:58 */waypoints[43].childCount = 3; +/* 8:58 */waypoints[43].children[0] = 41; +/* 8:58 */waypoints[43].children[1] = 44; +/* 8:58 */waypoints[43].children[2] = 171; +/* 8:58 */waypoints[44] = spawnstruct(); +/* 8:58 */waypoints[44].origin =(-3011.98, 6937.72, 2648.13); +/* 8:58 */waypoints[44].type = "stand"; +/* 8:58 */waypoints[44].childCount = 2; +/* 8:58 */waypoints[44].children[0] = 43; +/* 8:58 */waypoints[44].children[1] = 45; +/* 8:58 */waypoints[45] = spawnstruct(); +/* 8:58 */waypoints[45].origin =(-3027.72, 7148.1, 2648.13); +/* 8:58 */waypoints[45].type = "stand"; +/* 8:58 */waypoints[45].childCount = 2; +/* 8:58 */waypoints[45].children[0] = 44; +/* 8:58 */waypoints[45].children[1] = 46; +/* 8:58 */waypoints[46] = spawnstruct(); +/* 8:58 */waypoints[46].origin =(-3338.63, 7151.66, 2648.13); +/* 8:58 */waypoints[46].type = "stand"; +/* 8:58 */waypoints[46].childCount = 3; +/* 8:58 */waypoints[46].children[0] = 45; +/* 8:58 */waypoints[46].children[1] = 47; +/* 8:58 */waypoints[46].children[2] = 172; +/* 8:58 */waypoints[47] = spawnstruct(); +/* 8:58 */waypoints[47].origin =(-3344.02, 7001.01, 2648.13); +/* 8:58 */waypoints[47].type = "stand"; +/* 8:58 */waypoints[47].childCount = 2; +/* 8:58 */waypoints[47].children[0] = 46; +/* 8:58 */waypoints[47].children[1] = 48; +/* 8:58 */waypoints[48] = spawnstruct(); +/* 8:58 */waypoints[48].origin =(-3789.06, 7001.18, 2824.13); +/* 8:58 */waypoints[48].type = "stand"; +/* 8:58 */waypoints[48].childCount = 3; +/* 8:58 */waypoints[48].children[0] = 47; +/* 8:58 */waypoints[48].children[1] = 49; +/* 8:58 */waypoints[48].children[2] = 50; +/* 8:58 */waypoints[49] = spawnstruct(); +/* 8:58 */waypoints[49].origin =(-3790.79, 7174.01, 2824.13); +/* 8:58 */waypoints[49].type = "stand"; +/* 8:58 */waypoints[49].childCount = 2; +/* 8:58 */waypoints[49].children[0] = 48; +/* 8:58 */waypoints[49].children[1] = 173; +/* 8:58 */waypoints[50] = spawnstruct(); +/* 8:58 */waypoints[50].origin =(-3783.07, 6661.72, 2824.13); +/* 8:58 */waypoints[50].type = "stand"; +/* 8:58 */waypoints[50].childCount = 3; +/* 8:58 */waypoints[50].children[0] = 48; +/* 8:58 */waypoints[50].children[1] = 51; +/* 8:58 */waypoints[50].children[2] = 57; +/* 8:58 */waypoints[51] = spawnstruct(); +/* 8:58 */waypoints[51].origin =(-3188.66, 6667.05, 2824.13); +/* 8:58 */waypoints[51].type = "stand"; +/* 8:58 */waypoints[51].childCount = 3; +/* 8:58 */waypoints[51].children[0] = 50; +/* 8:58 */waypoints[51].children[1] = 52; +/* 8:58 */waypoints[51].children[2] = 54; +/* 8:58 */waypoints[52] = spawnstruct(); +/* 8:58 */waypoints[52].origin =(-2915.16, 6672.98, 2824.13); +/* 8:58 */waypoints[52].type = "stand"; +/* 8:58 */waypoints[52].childCount = 3; +/* 8:58 */waypoints[52].children[0] = 51; +/* 8:58 */waypoints[52].children[1] = 53; +/* 8:58 */waypoints[52].children[2] = 60; +/* 8:58 */waypoints[53] = spawnstruct(); +/* 8:58 */waypoints[53].origin =(-2896.98, 7045.69, 2824.13); +/* 8:58 */waypoints[53].type = "stand"; +/* 8:58 */waypoints[53].childCount = 3; +/* 8:58 */waypoints[53].children[0] = 52; +/* 8:58 */waypoints[53].children[1] = 89; +/* 8:58 */waypoints[53].children[2] = 182; +/* 8:58 */waypoints[54] = spawnstruct(); +/* 8:58 */waypoints[54].origin =(-3195.06, 6469.03, 2824.13); +/* 8:58 */waypoints[54].type = "stand"; +/* 8:58 */waypoints[54].childCount = 3; +/* 8:58 */waypoints[54].children[0] = 51; +/* 8:58 */waypoints[54].children[1] = 55; +/* 8:58 */waypoints[54].children[2] = 60; +/* 8:58 */waypoints[55] = spawnstruct(); +/* 8:58 */waypoints[55].origin =(-3374.42, 6272.91, 2824.13); +/* 8:58 */waypoints[55].type = "stand"; +/* 8:58 */waypoints[55].childCount = 3; +/* 8:58 */waypoints[55].children[0] = 54; +/* 8:58 */waypoints[55].children[1] = 56; +/* 8:58 */waypoints[55].children[2] = 186; +/* 8:58 */waypoints[56] = spawnstruct(); +/* 8:58 */waypoints[56].origin =(-3418.17, 6243.08, 2824.13); +/* 8:58 */waypoints[56].type = "stand"; +/* 8:58 */waypoints[56].childCount = 3; +/* 8:58 */waypoints[56].children[0] = 55; +/* 8:58 */waypoints[56].children[1] = 57; +/* 8:58 */waypoints[56].children[2] = 59; +/* 8:58 */waypoints[57] = spawnstruct(); +/* 8:58 */waypoints[57].origin =(-3802.73, 6180.63, 2824.13); +/* 8:58 */waypoints[57].type = "stand"; +/* 8:58 */waypoints[57].childCount = 3; +/* 8:58 */waypoints[57].children[0] = 56; +/* 8:58 */waypoints[57].children[1] = 50; +/* 8:58 */waypoints[57].children[2] = 58; +/* 8:58 */waypoints[58] = spawnstruct(); +/* 8:58 */waypoints[58].origin =(-3789.67, 5908.37, 2824.13); +/* 8:58 */waypoints[58].type = "stand"; +/* 8:58 */waypoints[58].childCount = 2; +/* 8:58 */waypoints[58].children[0] = 57; +/* 8:58 */waypoints[58].children[1] = 59; +/* 8:58 */waypoints[59] = spawnstruct(); +/* 8:58 */waypoints[59].origin =(-3431.51, 5928.46, 2824.13); +/* 8:58 */waypoints[59].type = "stand"; +/* 8:58 */waypoints[59].childCount = 4; +/* 8:58 */waypoints[59].children[0] = 58; +/* 8:58 */waypoints[59].children[1] = 56; +/* 8:58 */waypoints[59].children[2] = 63; +/* 8:58 */waypoints[59].children[3] = 71; +/* 8:58 */waypoints[60] = spawnstruct(); +/* 8:58 */waypoints[60].origin =(-2896.11, 6474.95, 2824.13); +/* 8:58 */waypoints[60].type = "stand"; +/* 8:58 */waypoints[60].childCount = 4; +/* 8:58 */waypoints[60].children[0] = 54; +/* 8:58 */waypoints[60].children[1] = 52; +/* 8:58 */waypoints[60].children[2] = 61; +/* 8:58 */waypoints[60].children[3] = 62; +/* 8:58 */waypoints[61] = spawnstruct(); +/* 8:58 */waypoints[61].origin =(-2704.16, 6371.45, 2824.13); +/* 8:58 */waypoints[61].type = "stand"; +/* 8:58 */waypoints[61].childCount = 3; +/* 8:58 */waypoints[61].children[0] = 60; +/* 8:58 */waypoints[61].children[1] = 62; +/* 8:58 */waypoints[61].children[2] = 90; +/* 8:58 */waypoints[62] = spawnstruct(); +/* 8:58 */waypoints[62].origin =(-2902.78, 6294.34, 2824.13); +/* 8:58 */waypoints[62].type = "stand"; +/* 8:58 */waypoints[62].childCount = 3; +/* 8:58 */waypoints[62].children[0] = 60; +/* 8:58 */waypoints[62].children[1] = 61; +/* 8:58 */waypoints[62].children[2] = 63; +/* 8:58 */waypoints[63] = spawnstruct(); +/* 8:58 */waypoints[63].origin =(-2923.35, 5938.97, 2824.13); +/* 8:58 */waypoints[63].type = "stand"; +/* 8:58 */waypoints[63].childCount = 4; +/* 8:58 */waypoints[63].children[0] = 62; +/* 8:58 */waypoints[63].children[1] = 59; +/* 8:58 */waypoints[63].children[2] = 64; +/* 8:58 */waypoints[63].children[3] = 65; +/* 8:58 */waypoints[64] = spawnstruct(); +/* 8:58 */waypoints[64].origin =(-3056.34, 6087.84, 2824.13); +/* 8:58 */waypoints[64].type = "stand"; +/* 8:58 */waypoints[64].childCount = 1; +/* 8:58 */waypoints[64].children[0] = 63; +/* 8:58 */waypoints[65] = spawnstruct(); +/* 8:58 */waypoints[65].origin =(-2919.01, 5689.37, 2824.13); +/* 8:58 */waypoints[65].type = "stand"; +/* 8:58 */waypoints[65].childCount = 5; +/* 8:58 */waypoints[65].children[0] = 63; +/* 8:58 */waypoints[65].children[1] = 66; +/* 8:58 */waypoints[65].children[2] = 91; +/* 8:58 */waypoints[65].children[3] = 183; +/* 8:58 */waypoints[65].children[4] = 184; +/* 8:58 */waypoints[66] = spawnstruct(); +/* 8:58 */waypoints[66].origin =(-2944.71, 5430.93, 2824.13); +/* 8:58 */waypoints[66].type = "stand"; +/* 8:58 */waypoints[66].childCount = 3; +/* 8:58 */waypoints[66].children[0] = 65; +/* 8:58 */waypoints[66].children[1] = 67; +/* 8:58 */waypoints[66].children[2] = 68; +/* 8:58 */waypoints[67] = spawnstruct(); +/* 8:58 */waypoints[67].origin =(-2966.94, 5205.69, 2824.13); +/* 8:58 */waypoints[67].type = "stand"; +/* 8:58 */waypoints[67].childCount = 1; +/* 8:58 */waypoints[67].children[0] = 66; +/* 8:58 */waypoints[68] = spawnstruct(); +/* 8:58 */waypoints[68].origin =(-3450.16, 5434.28, 2824.13); +/* 8:58 */waypoints[68].type = "stand"; +/* 8:58 */waypoints[68].childCount = 4; +/* 8:58 */waypoints[68].children[0] = 66; +/* 8:58 */waypoints[68].children[1] = 69; +/* 8:58 */waypoints[68].children[2] = 71; +/* 8:58 */waypoints[68].children[3] = 143; +/* 8:58 */waypoints[69] = spawnstruct(); +/* 8:58 */waypoints[69].origin =(-3776.77, 5409.84, 2824.13); +/* 8:58 */waypoints[69].type = "stand"; +/* 8:58 */waypoints[69].childCount = 2; +/* 8:58 */waypoints[69].children[0] = 68; +/* 8:58 */waypoints[69].children[1] = 70; +/* 8:58 */waypoints[70] = spawnstruct(); +/* 8:58 */waypoints[70].origin =(-3756.98, 5220.86, 2824.13); +/* 8:58 */waypoints[70].type = "stand"; +/* 8:58 */waypoints[70].childCount = 1; +/* 8:58 */waypoints[70].children[0] = 69; +/* 8:58 */waypoints[71] = spawnstruct(); +/* 8:58 */waypoints[71].origin =(-3444.84, 5785.35, 2824.13); +/* 8:58 */waypoints[71].type = "stand"; +/* 8:58 */waypoints[71].childCount = 4; +/* 8:58 */waypoints[71].children[0] = 68; +/* 8:58 */waypoints[71].children[1] = 59; +/* 8:58 */waypoints[71].children[2] = 143; +/* 8:58 */waypoints[71].children[3] = 185; +/* 8:58 */waypoints[72] = spawnstruct(); +/* 8:58 */waypoints[72].origin =(-1201.51, 6469.03, 2776.13); +/* 8:58 */waypoints[72].type = "stand"; +/* 8:58 */waypoints[72].childCount = 4; +/* 8:58 */waypoints[72].children[0] = 36; +/* 8:58 */waypoints[72].children[1] = 73; +/* 8:58 */waypoints[72].children[2] = 99; +/* 8:58 */waypoints[72].children[3] = 114; +/* 8:58 */waypoints[73] = spawnstruct(); +/* 8:58 */waypoints[73].origin =(-1198.11, 6770.48, 2775.93); +/* 8:58 */waypoints[73].type = "stand"; +/* 8:58 */waypoints[73].childCount = 4; +/* 8:58 */waypoints[73].children[0] = 74; +/* 8:58 */waypoints[73].children[1] = 72; +/* 8:58 */waypoints[73].children[2] = 75; +/* 8:58 */waypoints[73].children[3] = 144; +/* 8:58 */waypoints[74] = spawnstruct(); +/* 8:58 */waypoints[74].origin =(-1016.04, 6772.15, 2776.04); +/* 8:58 */waypoints[74].type = "stand"; +/* 8:58 */waypoints[74].childCount = 1; +/* 8:58 */waypoints[74].children[0] = 73; +/* 8:58 */waypoints[75] = spawnstruct(); +/* 8:58 */waypoints[75].origin =(-1188.56, 6998.3, 2776.95); +/* 8:58 */waypoints[75].type = "stand"; +/* 8:58 */waypoints[75].childCount = 5; +/* 8:58 */waypoints[75].children[0] = 73; +/* 8:58 */waypoints[75].children[1] = 76; +/* 8:58 */waypoints[75].children[2] = 77; +/* 8:58 */waypoints[75].children[3] = 78; +/* 8:58 */waypoints[75].children[4] = 144; +/* 8:58 */waypoints[76] = spawnstruct(); +/* 8:58 */waypoints[76].origin =(-1020.11, 6998.53, 2793.39); +/* 8:58 */waypoints[76].type = "stand"; +/* 8:58 */waypoints[76].childCount = 1; +/* 8:58 */waypoints[76].children[0] = 75; +/* 8:58 */waypoints[77] = spawnstruct(); +/* 8:58 */waypoints[77].origin =(-1349.62, 6967.99, 2780.28); +/* 8:58 */waypoints[77].type = "stand"; +/* 8:58 */waypoints[77].childCount = 2; +/* 8:58 */waypoints[77].children[0] = 75; +/* 8:58 */waypoints[77].children[1] = 167; +/* 8:58 */waypoints[78] = spawnstruct(); +/* 8:58 */waypoints[78].origin =(-1228.96, 7238.79, 2776.13); +/* 8:58 */waypoints[78].type = "stand"; +/* 8:58 */waypoints[78].childCount = 4; +/* 8:58 */waypoints[78].children[0] = 75; +/* 8:58 */waypoints[78].children[1] = 79; +/* 8:58 */waypoints[78].children[2] = 84; +/* 8:58 */waypoints[78].children[3] = 165; +/* 8:58 */waypoints[79] = spawnstruct(); +/* 8:58 */waypoints[79].origin =(-1021.71, 7261.05, 2776.13); +/* 8:58 */waypoints[79].type = "stand"; +/* 8:58 */waypoints[79].childCount = 3; +/* 8:58 */waypoints[79].children[0] = 78; +/* 8:58 */waypoints[79].children[1] = 80; +/* 8:58 */waypoints[79].children[2] = 81; +/* 8:58 */waypoints[80] = spawnstruct(); +/* 8:58 */waypoints[80].origin =(-1015.36, 7473.04, 2776.13); +/* 8:58 */waypoints[80].type = "stand"; +/* 8:58 */waypoints[80].childCount = 1; +/* 8:58 */waypoints[80].children[0] = 79; +/* 8:58 */waypoints[81] = spawnstruct(); +/* 8:58 */waypoints[81].origin =(-433.039, 7248.11, 2776.13); +/* 8:58 */waypoints[81].type = "stand"; +/* 8:58 */waypoints[81].childCount = 2; +/* 8:58 */waypoints[81].children[0] = 79; +/* 8:58 */waypoints[81].children[1] = 82; +/* 8:58 */waypoints[82] = spawnstruct(); +/* 8:58 */waypoints[82].origin =(-177.963, 7122.44, 2776.13); +/* 8:58 */waypoints[82].type = "stand"; +/* 8:58 */waypoints[82].childCount = 4; +/* 8:58 */waypoints[82].children[0] = 81; +/* 8:58 */waypoints[82].children[1] = 22; +/* 8:58 */waypoints[82].children[2] = 83; +/* 8:58 */waypoints[82].children[3] = 192; +/* 8:58 */waypoints[83] = spawnstruct(); +/* 8:58 */waypoints[83].origin =(60.6855, 7138.43, 2776.13); +/* 8:58 */waypoints[83].type = "stand"; +/* 8:58 */waypoints[83].childCount = 2; +/* 8:58 */waypoints[83].children[0] = 82; +/* 8:58 */waypoints[83].children[1] = 142; +/* 8:58 */waypoints[84] = spawnstruct(); +/* 8:58 */waypoints[84].origin =(-1491.31, 7225.58, 2776.13); +/* 8:58 */waypoints[84].type = "stand"; +/* 8:58 */waypoints[84].childCount = 3; +/* 8:58 */waypoints[84].children[0] = 78; +/* 8:58 */waypoints[84].children[1] = 85; +/* 8:58 */waypoints[84].children[2] = 164; +/* 8:58 */waypoints[85] = spawnstruct(); +/* 8:58 */waypoints[85].origin =(-1744.24, 7254.95, 2776.13); +/* 8:58 */waypoints[85].type = "stand"; +/* 8:58 */waypoints[85].childCount = 3; +/* 8:58 */waypoints[85].children[0] = 84; +/* 8:58 */waypoints[85].children[1] = 86; +/* 8:58 */waypoints[85].children[2] = 87; +/* 8:58 */waypoints[86] = spawnstruct(); +/* 8:58 */waypoints[86].origin =(-1715.01, 7469.54, 2776.13); +/* 8:58 */waypoints[86].type = "stand"; +/* 8:58 */waypoints[86].childCount = 2; +/* 8:58 */waypoints[86].children[0] = 85; +/* 8:58 */waypoints[86].children[1] = 169; +/* 8:58 */waypoints[87] = spawnstruct(); +/* 8:58 */waypoints[87].origin =(-2316.71, 7261.93, 2776.13); +/* 8:58 */waypoints[87].type = "stand"; +/* 8:58 */waypoints[87].childCount = 2; +/* 8:58 */waypoints[87].children[0] = 85; +/* 8:58 */waypoints[87].children[1] = 88; +/* 8:58 */waypoints[88] = spawnstruct(); +/* 8:58 */waypoints[88].origin =(-2505.91, 7088.26, 2776.13); +/* 8:58 */waypoints[88].type = "stand"; +/* 8:58 */waypoints[88].childCount = 4; +/* 8:58 */waypoints[88].children[0] = 87; +/* 8:58 */waypoints[88].children[1] = 40; +/* 8:58 */waypoints[88].children[2] = 89; +/* 8:58 */waypoints[88].children[3] = 191; +/* 8:58 */waypoints[89] = spawnstruct(); +/* 8:58 */waypoints[89].origin =(-2733.32, 7058.41, 2776.13); +/* 8:58 */waypoints[89].type = "stand"; +/* 8:58 */waypoints[89].childCount = 2; +/* 8:58 */waypoints[89].children[0] = 88; +/* 8:58 */waypoints[89].children[1] = 53; +/* 8:58 */waypoints[90] = spawnstruct(); +/* 8:58 */waypoints[90].origin =(-2545.3, 6358.84, 2776.13); +/* 8:58 */waypoints[90].type = "stand"; +/* 8:58 */waypoints[90].childCount = 4; +/* 8:58 */waypoints[90].children[0] = 61; +/* 8:58 */waypoints[90].children[1] = 40; +/* 8:58 */waypoints[90].children[2] = 92; +/* 8:58 */waypoints[90].children[3] = 97; +/* 8:58 */waypoints[91] = spawnstruct(); +/* 8:58 */waypoints[91].origin =(-2742.22, 5687.79, 2776.13); +/* 8:58 */waypoints[91].type = "stand"; +/* 8:58 */waypoints[91].childCount = 3; +/* 8:58 */waypoints[91].children[0] = 65; +/* 8:58 */waypoints[91].children[1] = 92; +/* 8:58 */waypoints[91].children[2] = 93; +/* 8:58 */waypoints[92] = spawnstruct(); +/* 8:58 */waypoints[92].origin =(-2513.47, 5821.98, 2776.13); +/* 8:58 */waypoints[92].type = "stand"; +/* 8:58 */waypoints[92].childCount = 4; +/* 8:58 */waypoints[92].children[0] = 90; +/* 8:58 */waypoints[92].children[1] = 91; +/* 8:58 */waypoints[92].children[2] = 94; +/* 8:58 */waypoints[92].children[3] = 190; +/* 8:58 */waypoints[93] = spawnstruct(); +/* 8:58 */waypoints[93].origin =(-2313.27, 5459.63, 2776.13); +/* 8:58 */waypoints[93].type = "stand"; +/* 8:58 */waypoints[93].childCount = 3; +/* 8:58 */waypoints[93].children[0] = 91; +/* 8:58 */waypoints[93].children[1] = 102; +/* 8:58 */waypoints[93].children[2] = 94; +/* 8:58 */waypoints[94] = spawnstruct(); +/* 8:58 */waypoints[94].origin =(-2207.63, 5858.79, 2776.13); +/* 8:58 */waypoints[94].type = "stand"; +/* 8:58 */waypoints[94].childCount = 4; +/* 8:58 */waypoints[94].children[0] = 92; +/* 8:58 */waypoints[94].children[1] = 95; +/* 8:58 */waypoints[94].children[2] = 96; +/* 8:58 */waypoints[94].children[3] = 93; +/* 8:58 */waypoints[95] = spawnstruct(); +/* 8:58 */waypoints[95].origin =(-2222.11, 6071.49, 2776.13); +/* 8:58 */waypoints[95].type = "stand"; +/* 8:58 */waypoints[95].childCount = 2; +/* 8:58 */waypoints[95].children[0] = 94; +/* 8:58 */waypoints[95].children[1] = 178; +/* 8:58 */waypoints[96] = spawnstruct(); +/* 8:58 */waypoints[96].origin =(-1977.67, 5843.37, 2776.13); +/* 8:58 */waypoints[96].type = "stand"; +/* 8:58 */waypoints[96].childCount = 2; +/* 8:58 */waypoints[96].children[0] = 94; +/* 8:58 */waypoints[96].children[1] = 97; +/* 8:58 */waypoints[97] = spawnstruct(); +/* 8:58 */waypoints[97].origin =(-2020.93, 6404.13, 2776.13); +/* 8:58 */waypoints[97].type = "stand"; +/* 8:58 */waypoints[97].childCount = 3; +/* 8:58 */waypoints[97].children[0] = 96; +/* 8:58 */waypoints[97].children[1] = 90; +/* 8:58 */waypoints[97].children[2] = 98; +/* 8:58 */waypoints[98] = spawnstruct(); +/* 8:58 */waypoints[98].origin =(-1724.62, 6397.65, 2776.13); +/* 8:58 */waypoints[98].type = "stand"; +/* 8:58 */waypoints[98].childCount = 3; +/* 8:58 */waypoints[98].children[0] = 97; +/* 8:58 */waypoints[98].children[1] = 99; +/* 8:58 */waypoints[98].children[2] = 100; +/* 8:58 */waypoints[99] = spawnstruct(); +/* 8:58 */waypoints[99].origin =(-1225.82, 6447.18, 2776.13); +/* 8:58 */waypoints[99].type = "stand"; +/* 8:58 */waypoints[99].childCount = 2; +/* 8:58 */waypoints[99].children[0] = 98; +/* 8:58 */waypoints[99].children[1] = 72; +/* 8:58 */waypoints[100] = spawnstruct(); +/* 8:58 */waypoints[100].origin =(-1646.14, 5985.41, 2776.13); +/* 8:58 */waypoints[100].type = "stand"; +/* 8:58 */waypoints[100].childCount = 3; +/* 8:58 */waypoints[100].children[0] = 98; +/* 8:58 */waypoints[100].children[1] = 101; +/* 8:58 */waypoints[100].children[2] = 103; +/* 8:58 */waypoints[101] = spawnstruct(); +/* 8:58 */waypoints[101].origin =(-1844.5, 5981.53, 2776.13); +/* 8:58 */waypoints[101].type = "stand"; +/* 8:58 */waypoints[101].childCount = 2; +/* 8:58 */waypoints[101].children[0] = 100; +/* 8:58 */waypoints[101].children[1] = 102; +/* 8:58 */waypoints[102] = spawnstruct(); +/* 8:58 */waypoints[102].origin =(-1823.49, 5411.2, 2776.13); +/* 8:58 */waypoints[102].type = "stand"; +/* 8:58 */waypoints[102].childCount = 4; +/* 8:58 */waypoints[102].children[0] = 101; +/* 8:58 */waypoints[102].children[1] = 93; +/* 8:58 */waypoints[102].children[2] = 27; +/* 8:58 */waypoints[102].children[3] = 189; +/* 8:58 */waypoints[103] = spawnstruct(); +/* 8:58 */waypoints[103].origin =(-1633.33, 5552.08, 2847.63); +/* 8:58 */waypoints[103].type = "stand"; +/* 8:58 */waypoints[103].childCount = 2; +/* 8:58 */waypoints[103].children[0] = 100; +/* 8:58 */waypoints[103].children[1] = 104; +/* 8:58 */waypoints[104] = spawnstruct(); +/* 8:58 */waypoints[104].origin =(-1546.83, 5563.22, 2847.63); +/* 8:58 */waypoints[104].type = "stand"; +/* 8:58 */waypoints[104].childCount = 2; +/* 8:58 */waypoints[104].children[0] = 103; +/* 8:58 */waypoints[104].children[1] = 105; +/* 8:58 */waypoints[105] = spawnstruct(); +/* 8:58 */waypoints[105].origin =(-1548.71, 5843.5, 2976.13); +/* 8:58 */waypoints[105].type = "stand"; +/* 8:58 */waypoints[105].childCount = 3; +/* 8:58 */waypoints[105].children[0] = 104; +/* 8:58 */waypoints[105].children[1] = 106; +/* 8:58 */waypoints[105].children[2] = 113; +/* 8:58 */waypoints[106] = spawnstruct(); +/* 8:58 */waypoints[106].origin =(-1559.02, 6202.96, 2976.13); +/* 8:58 */waypoints[106].type = "stand"; +/* 8:58 */waypoints[106].childCount = 2; +/* 8:58 */waypoints[106].children[0] = 105; +/* 8:58 */waypoints[106].children[1] = 107; +/* 8:58 */waypoints[107] = spawnstruct(); +/* 8:58 */waypoints[107].origin =(-1323.06, 6219.81, 2976.13); +/* 8:58 */waypoints[107].type = "stand"; +/* 8:58 */waypoints[107].childCount = 3; +/* 8:58 */waypoints[107].children[0] = 106; +/* 8:58 */waypoints[107].children[1] = 108; +/* 8:58 */waypoints[107].children[2] = 198; +/* 8:58 */waypoints[108] = spawnstruct(); +/* 8:58 */waypoints[108].origin =(-1180.06, 5948.97, 2976.13); +/* 8:58 */waypoints[108].type = "stand"; +/* 8:58 */waypoints[108].childCount = 3; +/* 8:58 */waypoints[108].children[0] = 107; +/* 8:58 */waypoints[108].children[1] = 109; +/* 8:58 */waypoints[108].children[2] = 113; +/* 8:58 */waypoints[109] = spawnstruct(); +/* 8:58 */waypoints[109].origin =(-1169.57, 6215.8, 2847.63); +/* 8:58 */waypoints[109].type = "stand"; +/* 8:58 */waypoints[109].childCount = 2; +/* 8:58 */waypoints[109].children[0] = 108; +/* 8:58 */waypoints[109].children[1] = 110; +/* 8:58 */waypoints[110] = spawnstruct(); +/* 8:58 */waypoints[110].origin =(-1091.59, 6211.58, 2847.63); +/* 8:58 */waypoints[110].type = "stand"; +/* 8:58 */waypoints[110].childCount = 2; +/* 8:58 */waypoints[110].children[0] = 109; +/* 8:58 */waypoints[110].children[1] = 111; +/* 8:58 */waypoints[111] = spawnstruct(); +/* 8:58 */waypoints[111].origin =(-1086.42, 6017.09, 2776.13); +/* 8:58 */waypoints[111].type = "stand"; +/* 8:58 */waypoints[111].childCount = 3; +/* 8:58 */waypoints[111].children[0] = 110; +/* 8:58 */waypoints[111].children[1] = 112; +/* 8:58 */waypoints[111].children[2] = 124; +/* 8:58 */waypoints[112] = spawnstruct(); +/* 8:58 */waypoints[112].origin =(-1060.13, 5418.14, 2776.13); +/* 8:58 */waypoints[112].type = "stand"; +/* 8:58 */waypoints[112].childCount = 3; +/* 8:58 */waypoints[112].children[0] = 111; +/* 8:58 */waypoints[112].children[1] = 27; +/* 8:58 */waypoints[112].children[2] = 121; +/* 8:58 */waypoints[113] = spawnstruct(); +/* 8:58 */waypoints[113].origin =(-1341.63, 5610.86, 2976.13); +/* 8:58 */waypoints[113].type = "stand"; +/* 8:58 */waypoints[113].childCount = 4; +/* 8:58 */waypoints[113].children[0] = 108; +/* 8:58 */waypoints[113].children[1] = 105; +/* 8:58 */waypoints[113].children[2] = 159; +/* 8:58 */waypoints[113].children[3] = 160; +/* 8:58 */waypoints[114] = spawnstruct(); +/* 8:58 */waypoints[114].origin =(-916.935, 6445.48, 2776.13); +/* 8:58 */waypoints[114].type = "stand"; +/* 8:58 */waypoints[114].childCount = 3; +/* 8:58 */waypoints[114].children[0] = 72; +/* 8:58 */waypoints[114].children[1] = 115; +/* 8:58 */waypoints[114].children[2] = 124; +/* 8:58 */waypoints[115] = spawnstruct(); +/* 8:58 */waypoints[115].origin =(-338.318, 6501.06, 2776.13); +/* 8:58 */waypoints[115].type = "stand"; +/* 8:58 */waypoints[115].childCount = 4; +/* 8:58 */waypoints[115].children[0] = 114; +/* 8:58 */waypoints[115].children[1] = 22; +/* 8:58 */waypoints[115].children[2] = 116; +/* 8:58 */waypoints[115].children[3] = 117; +/* 8:58 */waypoints[116] = spawnstruct(); +/* 8:58 */waypoints[116].origin =(-119.21, 6541.41, 2776.13); +/* 8:58 */waypoints[116].type = "stand"; +/* 8:58 */waypoints[116].childCount = 4; +/* 8:58 */waypoints[116].children[0] = 115; +/* 8:58 */waypoints[116].children[1] = 138; +/* 8:58 */waypoints[116].children[2] = 152; +/* 8:58 */waypoints[116].children[3] = 22; +/* 8:58 */waypoints[117] = spawnstruct(); +/* 8:58 */waypoints[117].origin =(-271.211, 6105.11, 2776.13); +/* 8:58 */waypoints[117].type = "stand"; +/* 8:58 */waypoints[117].childCount = 4; +/* 8:58 */waypoints[117].children[0] = 115; +/* 8:58 */waypoints[117].children[1] = 118; +/* 8:58 */waypoints[117].children[2] = 123; +/* 8:58 */waypoints[117].children[3] = 152; +/* 8:58 */waypoints[118] = spawnstruct(); +/* 8:58 */waypoints[118].origin =(-60.6272, 5694.79, 2792.13); +/* 8:58 */waypoints[118].type = "stand"; +/* 8:58 */waypoints[118].childCount = 3; +/* 8:58 */waypoints[118].children[0] = 117; +/* 8:58 */waypoints[118].children[1] = 119; +/* 8:58 */waypoints[118].children[2] = 125; +/* 8:58 */waypoints[119] = spawnstruct(); +/* 8:58 */waypoints[119].origin =(-161.204, 5418.03, 2776.13); +/* 8:58 */waypoints[119].type = "stand"; +/* 8:58 */waypoints[119].childCount = 3; +/* 8:58 */waypoints[119].children[0] = 118; +/* 8:58 */waypoints[119].children[1] = 120; +/* 8:58 */waypoints[119].children[2] = 154; +/* 8:58 */waypoints[120] = spawnstruct(); +/* 8:58 */waypoints[120].origin =(-487.003, 5444.35, 2776.13); +/* 8:58 */waypoints[120].type = "stand"; +/* 8:58 */waypoints[120].childCount = 3; +/* 8:58 */waypoints[120].children[0] = 119; +/* 8:58 */waypoints[120].children[1] = 121; +/* 8:58 */waypoints[120].children[2] = 188; +/* 8:58 */waypoints[121] = spawnstruct(); +/* 8:58 */waypoints[121].origin =(-505.762, 5564.9, 2776.13); +/* 8:58 */waypoints[121].type = "stand"; +/* 8:58 */waypoints[121].childCount = 5; +/* 8:58 */waypoints[121].children[0] = 120; +/* 8:58 */waypoints[121].children[1] = 122; +/* 8:58 */waypoints[121].children[2] = 112; +/* 8:58 */waypoints[121].children[3] = 123; +/* 8:58 */waypoints[121].children[4] = 145; +/* 8:58 */waypoints[122] = spawnstruct(); +/* 8:58 */waypoints[122].origin =(-278.537, 5572.11, 2776.13); +/* 8:58 */waypoints[122].type = "stand"; +/* 8:58 */waypoints[122].childCount = 2; +/* 8:58 */waypoints[122].children[0] = 121; +/* 8:58 */waypoints[122].children[1] = 153; +/* 8:58 */waypoints[123] = spawnstruct(); +/* 8:58 */waypoints[123].origin =(-597.844, 6078.92, 2776.13); +/* 8:58 */waypoints[123].type = "stand"; +/* 8:58 */waypoints[123].childCount = 4; +/* 8:58 */waypoints[123].children[0] = 121; +/* 8:58 */waypoints[123].children[1] = 117; +/* 8:58 */waypoints[123].children[2] = 124; +/* 8:58 */waypoints[123].children[3] = 145; +/* 8:58 */waypoints[124] = spawnstruct(); +/* 8:58 */waypoints[124].origin =(-901.849, 6062.84, 2776.13); +/* 8:58 */waypoints[124].type = "stand"; +/* 8:58 */waypoints[124].childCount = 3; +/* 8:58 */waypoints[124].children[0] = 123; +/* 8:58 */waypoints[124].children[1] = 111; +/* 8:58 */waypoints[124].children[2] = 114; +/* 8:58 */waypoints[125] = spawnstruct(); +/* 8:58 */waypoints[125].origin =(89.0847, 5698.95, 2776.13); +/* 8:58 */waypoints[125].type = "stand"; +/* 8:58 */waypoints[125].childCount = 2; +/* 8:58 */waypoints[125].children[0] = 118; +/* 8:58 */waypoints[125].children[1] = 126; +/* 8:58 */waypoints[126] = spawnstruct(); +/* 8:58 */waypoints[126].origin =(228.904, 5707.09, 2824.13); +/* 8:58 */waypoints[126].type = "stand"; +/* 8:58 */waypoints[126].childCount = 3; +/* 8:58 */waypoints[126].children[0] = 125; +/* 8:58 */waypoints[126].children[1] = 127; +/* 8:58 */waypoints[126].children[2] = 128; +/* 8:58 */waypoints[127] = spawnstruct(); +/* 8:58 */waypoints[127].origin =(276.101, 5273.2, 2824.13); +/* 8:58 */waypoints[127].type = "stand"; +/* 8:58 */waypoints[127].childCount = 2; +/* 8:58 */waypoints[127].children[0] = 126; +/* 8:58 */waypoints[127].children[1] = 150; +/* 8:58 */waypoints[128] = spawnstruct(); +/* 8:58 */waypoints[128].origin =(287.385, 5963.93, 2824.13); +/* 8:58 */waypoints[128].type = "stand"; +/* 8:58 */waypoints[128].childCount = 5; +/* 8:58 */waypoints[128].children[0] = 126; +/* 8:58 */waypoints[128].children[1] = 129; +/* 8:58 */waypoints[128].children[2] = 134; +/* 8:58 */waypoints[128].children[3] = 135; +/* 8:58 */waypoints[128].children[4] = 151; +/* 8:58 */waypoints[129] = spawnstruct(); +/* 8:58 */waypoints[129].origin =(584.511, 5948.52, 2824.13); +/* 8:58 */waypoints[129].type = "stand"; +/* 8:58 */waypoints[129].childCount = 2; +/* 8:58 */waypoints[129].children[0] = 128; +/* 8:58 */waypoints[129].children[1] = 130; +/* 8:58 */waypoints[130] = spawnstruct(); +/* 8:58 */waypoints[130].origin =(534.324, 6390.42, 2808.13); +/* 8:58 */waypoints[130].type = "stand"; +/* 8:58 */waypoints[130].childCount = 4; +/* 8:58 */waypoints[130].children[0] = 129; +/* 8:58 */waypoints[130].children[1] = 131; +/* 8:58 */waypoints[130].children[2] = 136; +/* 8:58 */waypoints[130].children[3] = 132; +/* 8:58 */waypoints[131] = spawnstruct(); +/* 8:58 */waypoints[131].origin =(281.696, 6377.04, 2824.13); +/* 8:58 */waypoints[131].type = "stand"; +/* 8:58 */waypoints[131].childCount = 4; +/* 8:58 */waypoints[131].children[0] = 130; +/* 8:58 */waypoints[131].children[1] = 132; +/* 8:58 */waypoints[131].children[2] = 133; +/* 8:58 */waypoints[131].children[3] = 135; +/* 8:58 */waypoints[132] = spawnstruct(); +/* 8:58 */waypoints[132].origin =(323.984, 6404.17, 2824.13); +/* 8:58 */waypoints[132].type = "stand"; +/* 8:58 */waypoints[132].childCount = 2; +/* 8:58 */waypoints[132].children[0] = 131; +/* 8:58 */waypoints[132].children[1] = 130; +/* 8:58 */waypoints[133] = spawnstruct(); +/* 8:58 */waypoints[133].origin =(151.652, 6395.08, 2824.13); +/* 8:58 */waypoints[133].type = "stand"; +/* 8:58 */waypoints[133].childCount = 4; +/* 8:58 */waypoints[133].children[0] = 131; +/* 8:58 */waypoints[133].children[1] = 134; +/* 8:58 */waypoints[133].children[2] = 138; +/* 8:58 */waypoints[133].children[3] = 152; +/* 8:58 */waypoints[134] = spawnstruct(); +/* 8:58 */waypoints[134].origin =(151.562, 6130.9, 2824.13); +/* 8:58 */waypoints[134].type = "stand"; +/* 8:58 */waypoints[134].childCount = 2; +/* 8:58 */waypoints[134].children[0] = 133; +/* 8:58 */waypoints[134].children[1] = 128; +/* 8:58 */waypoints[135] = spawnstruct(); +/* 8:58 */waypoints[135].origin =(418.988, 6217.42, 2824.13); +/* 8:58 */waypoints[135].type = "stand"; +/* 8:58 */waypoints[135].childCount = 2; +/* 8:58 */waypoints[135].children[0] = 128; +/* 8:58 */waypoints[135].children[1] = 131; +/* 8:58 */waypoints[136] = spawnstruct(); +/* 8:58 */waypoints[136].origin =(526.124, 6672.07, 2824.13); +/* 8:58 */waypoints[136].type = "stand"; +/* 8:58 */waypoints[136].childCount = 3; +/* 8:58 */waypoints[136].children[0] = 130; +/* 8:58 */waypoints[136].children[1] = 4; +/* 8:58 */waypoints[136].children[2] = 137; +/* 8:58 */waypoints[137] = spawnstruct(); +/* 8:58 */waypoints[137].origin =(312.619, 6699.81, 2824.13); +/* 8:58 */waypoints[137].type = "stand"; +/* 8:58 */waypoints[137].childCount = 4; +/* 8:58 */waypoints[137].children[0] = 136; +/* 8:58 */waypoints[137].children[1] = 138; +/* 8:58 */waypoints[137].children[2] = 139; +/* 8:58 */waypoints[137].children[3] = 174; +/* 8:58 */waypoints[138] = spawnstruct(); +/* 8:58 */waypoints[138].origin =(36.8313, 6576.92, 2824.13); +/* 8:58 */waypoints[138].type = "stand"; +/* 8:58 */waypoints[138].childCount = 4; +/* 8:58 */waypoints[138].children[0] = 137; +/* 8:58 */waypoints[138].children[1] = 133; +/* 8:58 */waypoints[138].children[2] = 116; +/* 8:58 */waypoints[138].children[3] = 179; +/* 8:58 */waypoints[139] = spawnstruct(); +/* 8:58 */waypoints[139].origin =(331.281, 7190.18, 2824.13); +/* 8:58 */waypoints[139].type = "stand"; +/* 8:58 */waypoints[139].childCount = 5; +/* 8:58 */waypoints[139].children[0] = 137; +/* 8:58 */waypoints[139].children[1] = 140; +/* 8:58 */waypoints[139].children[2] = 142; +/* 8:58 */waypoints[139].children[3] = 177; +/* 8:58 */waypoints[139].children[4] = 176; +/* 8:58 */waypoints[140] = spawnstruct(); +/* 8:58 */waypoints[140].origin =(321.682, 7458.74, 2824.13); +/* 8:58 */waypoints[140].type = "stand"; +/* 8:58 */waypoints[140].childCount = 2; +/* 8:58 */waypoints[140].children[0] = 139; +/* 8:58 */waypoints[140].children[1] = 141; +/* 8:58 */waypoints[141] = spawnstruct(); +/* 8:58 */waypoints[141].origin =(802.414, 7465.92, 2824.13); +/* 8:58 */waypoints[141].type = "stand"; +/* 8:58 */waypoints[141].childCount = 3; +/* 8:58 */waypoints[141].children[0] = 140; +/* 8:58 */waypoints[141].children[1] = 1; +/* 8:58 */waypoints[141].children[2] = 175; +/* 8:58 */waypoints[142] = spawnstruct(); +/* 8:58 */waypoints[142].origin =(172.893, 7138.98, 2824.13); +/* 8:58 */waypoints[142].type = "stand"; +/* 8:58 */waypoints[142].childCount = 2; +/* 8:58 */waypoints[142].children[0] = 139; +/* 8:58 */waypoints[142].children[1] = 83; +/* 8:58 */waypoints[143] = spawnstruct(); +/* 8:58 */waypoints[143].origin =(-3387.78, 5571.43, 2824.13); +/* 8:58 */waypoints[143].type = "stand"; +/* 8:58 */waypoints[143].childCount = 2; +/* 8:58 */waypoints[143].children[0] = 68; +/* 8:58 */waypoints[143].children[1] = 71; +/* 8:58 */waypoints[144] = spawnstruct(); +/* 8:58 */waypoints[144].origin =(-1227.16, 6861.18, 2769.65); +/* 8:58 */waypoints[144].type = "stand"; +/* 8:58 */waypoints[144].childCount = 2; +/* 8:58 */waypoints[144].children[0] = 73; +/* 8:58 */waypoints[144].children[1] = 75; +/* 8:58 */waypoints[145] = spawnstruct(); +/* 8:58 */waypoints[145].origin =(-589.384, 5978.78, 2776.13); +/* 8:58 */waypoints[145].type = "stand"; +/* 8:58 */waypoints[145].childCount = 2; +/* 8:58 */waypoints[145].children[0] = 123; +/* 8:58 */waypoints[145].children[1] = 121; +/* 8:58 */waypoints[146] = spawnstruct(); +/* 8:58 */waypoints[146].origin =(-1552.13, 7393.11, 2944.13); +/* 8:58 */waypoints[146].type = "stand"; +/* 8:58 */waypoints[146].childCount = 4; +/* 8:58 */waypoints[146].children[0] = 162; +/* 8:58 */waypoints[146].children[1] = 163; +/* 8:58 */waypoints[146].children[2] = 168; +/* 8:58 */waypoints[146].children[3] = 207; +/* 8:58 */waypoints[146].angles = (18.6865, -68.3514, 0); +/* 8:58 */waypoints[147] = spawnstruct(); +/* 8:58 */waypoints[147].origin =(1136.09, 6965.99, 2824.13); +/* 8:58 */waypoints[147].type = "stand"; +/* 8:58 */waypoints[147].childCount = 2; +/* 8:58 */waypoints[147].children[0] = 3; +/* 8:58 */waypoints[147].children[1] = 2; +/* 8:58 */waypoints[147].angles = (18.7701, 83.2599, 0); +/* 8:58 */waypoints[148] = spawnstruct(); +/* 8:58 */waypoints[148].origin =(1328.87, 6981.81, 2824.13); +/* 8:58 */waypoints[148].type = "stand"; +/* 8:58 */waypoints[148].childCount = 2; +/* 8:58 */waypoints[148].children[0] = 2; +/* 8:58 */waypoints[148].children[1] = 3; +/* 8:58 */waypoints[148].angles = (18.6877, 167.206, 0); +/* 8:58 */waypoints[149] = spawnstruct(); +/* 8:58 */waypoints[149].origin =(885.902, 6877.58, 2648.13); +/* 8:58 */waypoints[149].type = "crouch"; +/* 8:58 */waypoints[149].childCount = 1; +/* 8:58 */waypoints[149].children[0] = 10; +/* 8:58 */waypoints[149].angles = (-1.81274, 174.946, 0); +/* 8:58 */waypoints[150] = spawnstruct(); +/* 8:58 */waypoints[150].origin =(163.835, 5514.94, 2824.13); +/* 8:58 */waypoints[150].type = "claymore"; +/* 8:58 */waypoints[150].childCount = 1; +/* 8:58 */waypoints[150].children[0] = 127; +/* 8:58 */waypoints[150].angles = (1.23596, 74.4214, 0); +/* 8:58 */waypoints[151] = spawnstruct(); +/* 8:58 */waypoints[151].origin =(21.8173, 5942.06, 2824.13); +/* 8:58 */waypoints[151].type = "crouch"; +/* 8:58 */waypoints[151].childCount = 1; +/* 8:58 */waypoints[151].children[0] = 128; +/* 8:58 */waypoints[151].angles = (2.63672, 3.6969, 0); +/* 8:58 */waypoints[152] = spawnstruct(); +/* 8:58 */waypoints[152].origin =(-191.624, 6364.93, 2776.13); +/* 8:58 */waypoints[152].type = "stand"; +/* 8:58 */waypoints[152].childCount = 4; +/* 8:58 */waypoints[152].children[0] = 133; +/* 8:58 */waypoints[152].children[1] = 117; +/* 8:58 */waypoints[152].children[2] = 116; +/* 8:58 */waypoints[152].children[3] = 187; +/* 8:58 */waypoints[152].angles = (11.8817, 97.3993, 0); +/* 8:58 */waypoints[153] = spawnstruct(); +/* 8:58 */waypoints[153].origin =(-289.587, 5675.42, 2776.13); +/* 8:58 */waypoints[153].type = "crouch"; +/* 8:58 */waypoints[153].childCount = 1; +/* 8:58 */waypoints[153].children[0] = 122; +/* 8:58 */waypoints[153].angles = (-0.137329, -121.124, 0); +/* 8:58 */waypoints[154] = spawnstruct(); +/* 8:58 */waypoints[154].origin =(-172.875, 5564.35, 2777.1); +/* 8:58 */waypoints[154].type = "climb"; +/* 8:58 */waypoints[154].childCount = 2; +/* 8:58 */waypoints[154].children[0] = 119; +/* 8:58 */waypoints[154].children[1] = 155; +/* 8:58 */waypoints[154].angles = (5.625, -179.714, 0); +/* 8:58 */waypoints[155] = spawnstruct(); +/* 8:58 */waypoints[155].origin =(-172.875, 5569.22, 2894.65); +/* 8:58 */waypoints[155].type = "climb"; +/* 8:58 */waypoints[155].childCount = 2; +/* 8:58 */waypoints[155].children[0] = 154; +/* 8:58 */waypoints[155].children[1] = 156; +/* 8:58 */waypoints[155].angles = (7.93213, 178.555, 0); +/* 8:58 */waypoints[156] = spawnstruct(); +/* 8:58 */waypoints[156].origin =(-309.531, 5571.71, 2912.13); +/* 8:58 */waypoints[156].type = "crouch"; +/* 8:58 */waypoints[156].childCount = 1; +/* 8:58 */waypoints[156].children[0] = 155; +/* 8:58 */waypoints[156].angles = (1.34583, 151.304, 0); +/* 8:58 */waypoints[157] = spawnstruct(); +/* 8:58 */waypoints[157].origin =(-1471.78, 6450.71, 2648.13); +/* 8:58 */waypoints[157].type = "claymore"; +/* 8:58 */waypoints[157].childCount = 1; +/* 8:58 */waypoints[157].children[0] = 24; +/* 8:58 */waypoints[157].angles = (8.8385, -11.3269, 0); +/* 8:58 */waypoints[158] = spawnstruct(); +/* 8:58 */waypoints[158].origin =(-1368, 5487.11, 2776.13); +/* 8:58 */waypoints[158].type = "claymore"; +/* 8:58 */waypoints[158].childCount = 1; +/* 8:58 */waypoints[158].children[0] = 26; +/* 8:58 */waypoints[158].angles = (16.908, -89.0497, 0); +/* 8:58 */waypoints[159] = spawnstruct(); +/* 8:58 */waypoints[159].origin =(-1380.47, 5311.52, 2940.13); +/* 8:58 */waypoints[159].type = "crouch"; +/* 8:58 */waypoints[159].childCount = 1; +/* 8:58 */waypoints[159].children[0] = 113; +/* 8:58 */waypoints[159].angles = (5.87219, 147.272, 0); +/* 8:58 */waypoints[160] = spawnstruct(); +/* 8:58 */waypoints[160].origin =(-1320.62, 5312.88, 2940.13); +/* 8:58 */waypoints[160].type = "crouch"; +/* 8:58 */waypoints[160].childCount = 1; +/* 8:58 */waypoints[160].children[0] = 113; +/* 8:58 */waypoints[160].angles = (7.52014, 42.3798, 0); +/* 8:58 */waypoints[161] = spawnstruct(); +/* 8:58 */waypoints[161].origin =(-1187.24, 7487.19, 2944.13); +/* 8:58 */waypoints[161].type = "crouch"; +/* 8:58 */waypoints[161].childCount = 1; +/* 8:58 */waypoints[161].children[0] = 162; +/* 8:58 */waypoints[161].angles = (11.5521, -31.4374, 0); +/* 8:58 */waypoints[162] = spawnstruct(); +/* 8:58 */waypoints[162].origin =(-1529.89, 7488.57, 2944.13); +/* 8:58 */waypoints[162].type = "stand"; +/* 8:58 */waypoints[162].childCount = 2; +/* 8:58 */waypoints[162].children[0] = 161; +/* 8:58 */waypoints[162].children[1] = 146; +/* 8:58 */waypoints[162].angles = (10.0787, -3.47168, 0); +/* 8:58 */waypoints[163] = spawnstruct(); +/* 8:58 */waypoints[163].origin =(-1509.59, 7411.38, 2944.13); +/* 8:58 */waypoints[163].type = "claymore"; +/* 8:58 */waypoints[163].childCount = 1; +/* 8:58 */waypoints[163].children[0] = 146; +/* 8:58 */waypoints[163].angles = (17.6538, 149.299, 0); +/* 8:58 */waypoints[164] = spawnstruct(); +/* 8:58 */waypoints[164].origin =(-1481.85, 7429.19, 2776.13); +/* 8:58 */waypoints[164].type = "crouch"; +/* 8:58 */waypoints[164].childCount = 1; +/* 8:58 */waypoints[164].children[0] = 84; +/* 8:58 */waypoints[164].angles = (1.1853, -96.7181, 0); +/* 8:58 */waypoints[165] = spawnstruct(); +/* 8:58 */waypoints[165].origin =(-1234.04, 7435.05, 2776.13); +/* 8:58 */waypoints[165].type = "crouch"; +/* 8:58 */waypoints[165].childCount = 1; +/* 8:58 */waypoints[165].children[0] = 78; +/* 8:58 */waypoints[165].angles = (-0.0506592, -94.9878, 0); +/* 8:58 */waypoints[166] = spawnstruct(); +/* 8:58 */waypoints[166].origin =(-1439.13, 6959.94, 2696.13); +/* 8:58 */waypoints[166].type = "climb"; +/* 8:58 */waypoints[166].childCount = 2; +/* 8:58 */waypoints[166].children[0] = 167; +/* 8:58 */waypoints[166].children[1] = 29; +/* 8:58 */waypoints[166].angles = (5.22278, -3.21899, 0); +/* 8:58 */waypoints[167] = spawnstruct(); +/* 8:58 */waypoints[167].origin =(-1432.46, 6959.94, 2824.13); +/* 8:58 */waypoints[167].type = "climb"; +/* 8:58 */waypoints[167].childCount = 2; +/* 8:58 */waypoints[167].children[0] = 77; +/* 8:58 */waypoints[167].children[1] = 166; +/* 8:58 */waypoints[167].angles = (14.0173, 1.17554, 0); +/* 8:58 */waypoints[168] = spawnstruct(); +/* 8:58 */waypoints[168].origin =(-1626.41, 7476.82, 2944.13); +/* 8:58 */waypoints[168].type = "climb"; +/* 8:58 */waypoints[168].childCount = 2; +/* 8:58 */waypoints[168].children[0] = 169; +/* 8:58 */waypoints[168].children[1] = 146; +/* 8:58 */waypoints[168].angles = (5.92833, -4.27917, 0); +/* 8:58 */waypoints[169] = spawnstruct(); +/* 8:58 */waypoints[169].origin =(-1647.13, 7474.15, 2776.13); +/* 8:58 */waypoints[169].type = "climb"; +/* 8:58 */waypoints[169].childCount = 2; +/* 8:58 */waypoints[169].children[0] = 168; +/* 8:58 */waypoints[169].children[1] = 86; +/* 8:58 */waypoints[169].angles = (5.70311, -2.51038, 0); +/* 8:58 */waypoints[170] = spawnstruct(); +/* 8:58 */waypoints[170].origin =(-1423.86, 7191.9, 2648.13); +/* 8:58 */waypoints[170].type = "claymore"; +/* 8:58 */waypoints[170].childCount = 1; +/* 8:58 */waypoints[170].children[0] = 30; +/* 8:58 */waypoints[170].angles = (4.16502, -119.471, 0); +/* 8:58 */waypoints[171] = spawnstruct(); +/* 8:58 */waypoints[171].origin =(-2411.59, 6863.81, 2648.13); +/* 8:58 */waypoints[171].type = "claymore"; +/* 8:58 */waypoints[171].childCount = 1; +/* 8:58 */waypoints[171].children[0] = 43; +/* 8:58 */waypoints[171].angles = (7.62022, 117.779, 0); +/* 8:58 */waypoints[172] = spawnstruct(); +/* 8:58 */waypoints[172].origin =(-3384.32, 7199.97, 2648.13); +/* 8:58 */waypoints[172].type = "claymore"; +/* 8:58 */waypoints[172].childCount = 1; +/* 8:58 */waypoints[172].children[0] = 46; +/* 8:58 */waypoints[172].angles = (11.3281, -43.808, 0); +/* 8:58 */waypoints[173] = spawnstruct(); +/* 8:58 */waypoints[173].origin =(-3732.83, 7122.17, 2824.13); +/* 8:58 */waypoints[173].type = "claymore"; +/* 8:58 */waypoints[173].childCount = 1; +/* 8:58 */waypoints[173].children[0] = 49; +/* 8:58 */waypoints[173].angles = (14.9481, -106.875, 0); +/* 8:58 */waypoints[174] = spawnstruct(); +/* 8:58 */waypoints[174].origin =(6.86213, 6814.49, 2824.13); +/* 8:58 */waypoints[174].type = "crouch"; +/* 8:58 */waypoints[174].childCount = 1; +/* 8:58 */waypoints[174].children[0] = 137; +/* 8:58 */waypoints[174].angles = (3.91783, -11.0083, 0); +/* 8:58 */waypoints[175] = spawnstruct(); +/* 8:58 */waypoints[175].origin =(1054.6, 7355.64, 2824.13); +/* 8:58 */waypoints[175].type = "claymore"; +/* 8:58 */waypoints[175].childCount = 1; +/* 8:58 */waypoints[175].children[0] = 141; +/* 8:58 */waypoints[175].angles = (16.0193, 130.6, 0); +/* 8:58 */waypoints[176] = spawnstruct(); +/* 8:58 */waypoints[176].origin =(180.423, 7280.84, 2824.13); +/* 8:58 */waypoints[176].type = "claymore"; +/* 8:58 */waypoints[176].childCount = 1; +/* 8:58 */waypoints[176].children[0] = 139; +/* 8:58 */waypoints[176].angles = (11.4105, -73.3832, 0); +/* 8:58 */waypoints[177] = spawnstruct(); +/* 8:58 */waypoints[177].origin =(679.208, 7209.77, 2824.13); +/* 8:58 */waypoints[177].type = "crouch"; +/* 8:58 */waypoints[177].childCount = 1; +/* 8:58 */waypoints[177].children[0] = 139; +/* 8:58 */waypoints[177].angles = (2.92906, -175.556, 0); +/* 8:58 */waypoints[178] = spawnstruct(); +/* 8:58 */waypoints[178].origin =(-2333.4, 6098.55, 2776.13); +/* 8:58 */waypoints[178].type = "crouch"; +/* 8:58 */waypoints[178].childCount = 1; +/* 8:58 */waypoints[178].children[0] = 95; +/* 8:58 */waypoints[178].angles = (5.1483, -20.7202, 0); +/* 8:58 */waypoints[179] = spawnstruct(); +/* 8:58 */waypoints[179].origin =(1.94629, 6463.13, 2824.13); +/* 8:58 */waypoints[179].type = "claymore"; +/* 8:58 */waypoints[179].childCount = 1; +/* 8:58 */waypoints[179].children[0] = 138; +/* 8:58 */waypoints[179].angles = (5.51514, 80.6561, 0); +/* 8:58 */waypoints[180] = spawnstruct(); +/* 8:58 */waypoints[180].origin =(958.959, 6860.33, 2824.13); +/* 8:58 */waypoints[180].type = "claymore"; +/* 8:58 */waypoints[180].childCount = 1; +/* 8:58 */waypoints[180].children[0] = 6; +/* 8:58 */waypoints[180].angles = (7.90466, 107.413, 0); +/* 8:58 */waypoints[181] = spawnstruct(); +/* 8:58 */waypoints[181].origin =(-296.875, 6868.14, 2648.13); +/* 8:58 */waypoints[181].type = "claymore"; +/* 8:58 */waypoints[181].childCount = 1; +/* 8:58 */waypoints[181].children[0] = 14; +/* 8:58 */waypoints[181].angles = (9.47021, -40.2539, 0); +/* 8:58 */waypoints[182] = spawnstruct(); +/* 8:58 */waypoints[182].origin =(-2847.13, 6947.2, 2824.13); +/* 8:58 */waypoints[182].type = "claymore"; +/* 8:58 */waypoints[182].childCount = 1; +/* 8:58 */waypoints[182].children[0] = 53; +/* 8:58 */waypoints[182].angles = (12.5134, 117.164, 0); +/* 8:58 */waypoints[183] = spawnstruct(); +/* 8:58 */waypoints[183].origin =(-3102.28, 5688.78, 2824.13); +/* 8:58 */waypoints[183].type = "stand"; +/* 8:58 */waypoints[183].childCount = 1; +/* 8:58 */waypoints[183].children[0] = 65; +/* 8:58 */waypoints[183].angles = (9.55261, -0.0439453, 0); +/* 8:58 */waypoints[184] = spawnstruct(); +/* 8:58 */waypoints[184].origin =(-2847.13, 5790.1, 2824.13); +/* 8:58 */waypoints[184].type = "claymore"; +/* 8:58 */waypoints[184].childCount = 1; +/* 8:58 */waypoints[184].children[0] = 65; +/* 8:58 */waypoints[184].angles = (12.2662, -117.449, 0); +/* 8:58 */waypoints[185] = spawnstruct(); +/* 8:58 */waypoints[185].origin =(-3244.81, 5780.17, 2824.13); +/* 8:58 */waypoints[185].type = "crouch"; +/* 8:58 */waypoints[185].childCount = 1; +/* 8:58 */waypoints[185].children[0] = 71; +/* 8:58 */waypoints[185].angles = (0.741577, -177.764, 0); +/* 8:58 */waypoints[186] = spawnstruct(); +/* 8:58 */waypoints[186].origin =(-3005.35, 6299.13, 2824.13); +/* 8:58 */waypoints[186].type = "crouch"; +/* 8:58 */waypoints[186].childCount = 1; +/* 8:58 */waypoints[186].children[0] = 55; +/* 8:58 */waypoints[186].angles = (1.56555, 171.37, 0); +/* 8:58 */waypoints[187] = spawnstruct(); +/* 8:58 */waypoints[187].origin =(-293.372, 6310.56, 2776.13); +/* 8:58 */waypoints[187].type = "grenade"; +/* 8:58 */waypoints[187].childCount = 1; +/* 8:58 */waypoints[187].children[0] = 152; +/* 8:58 */waypoints[187].angles = (-36.3098, -179.659, 0); +/* 8:58 */waypoints[188] = spawnstruct(); +/* 8:58 */waypoints[188].origin =(-666.001, 5634.91, 2776.13); +/* 8:58 */waypoints[188].type = "grenade"; +/* 8:58 */waypoints[188].childCount = 1; +/* 8:58 */waypoints[188].children[0] = 120; +/* 8:58 */waypoints[188].angles = (-40.8362, 137.368, 0); +/* 8:58 */waypoints[189] = spawnstruct(); +/* 8:58 */waypoints[189].origin =(-1959.84, 5514.89, 2776.13); +/* 8:58 */waypoints[189].type = "grenade"; +/* 8:58 */waypoints[189].childCount = 1; +/* 8:58 */waypoints[189].children[0] = 102; +/* 8:58 */waypoints[189].angles = (-39.0729, 14.2383, 0); +/* 8:58 */waypoints[190] = spawnstruct(); +/* 8:58 */waypoints[190].origin =(-2505.73, 5922.56, 2776.13); +/* 8:58 */waypoints[190].type = "grenade"; +/* 8:58 */waypoints[190].childCount = 1; +/* 8:58 */waypoints[190].children[0] = 92; +/* 8:58 */waypoints[190].angles = (-40.8801, 36.2164, 0); +/* 8:58 */waypoints[191] = spawnstruct(); +/* 8:58 */waypoints[191].origin =(-2372.95, 7090.16, 2776.13); +/* 8:58 */waypoints[191].type = "grenade"; +/* 8:58 */waypoints[191].childCount = 1; +/* 8:58 */waypoints[191].children[0] = 88; +/* 8:58 */waypoints[191].angles = (-32.8162, 11.1072, 0); +/* 8:58 */waypoints[192] = spawnstruct(); +/* 8:58 */waypoints[192].origin =(-324.821, 7116.21, 2776.13); +/* 8:58 */waypoints[192].type = "grenade"; +/* 8:58 */waypoints[192].childCount = 2; +/* 8:58 */waypoints[192].children[0] = 82; +/* 8:58 */waypoints[192].children[1] = 193; +/* 8:58 */waypoints[192].angles = (-32.4866, -179.324, 0); +/* 8:58 */waypoints[193] = spawnstruct(); +/* 8:58 */waypoints[193].origin =(-304.896, 7082.52, 2776.13); +/* 8:58 */waypoints[193].type = "grenade"; +/* 8:58 */waypoints[193].childCount = 1; +/* 8:58 */waypoints[193].children[0] = 192; +/* 8:58 */waypoints[193].angles = (-48.3728, -133.138, 0); +/* 8:58 */waypoints[194] = spawnstruct(); +/* 8:58 */waypoints[194].origin =(-639.832, 7027.05, 2648.13); +/* 8:58 */waypoints[194].type = "grenade"; +/* 8:58 */waypoints[194].childCount = 1; +/* 8:58 */waypoints[194].children[0] = 19; +/* 8:58 */waypoints[194].angles = (-34.4586, 169.036, 0); +/* 8:58 */waypoints[195] = spawnstruct(); +/* 8:58 */waypoints[195].origin =(-1853.91, 7031.13, 2648.13); +/* 8:58 */waypoints[195].type = "grenade"; +/* 8:58 */waypoints[195].childCount = 1; +/* 8:58 */waypoints[195].children[0] = 31; +/* 8:58 */waypoints[195].angles = (-30.921, 11.651, 0); +/* 8:58 */waypoints[196] = spawnstruct(); +/* 8:58 */waypoints[196].origin =(-1980.02, 6706.18, 2648.13); +/* 8:58 */waypoints[196].type = "grenade"; +/* 8:58 */waypoints[196].childCount = 1; +/* 8:58 */waypoints[196].children[0] = 37; +/* 8:58 */waypoints[196].angles = (-23.0988, -10.3271, 0); +/* 8:58 */waypoints[197] = spawnstruct(); +/* 8:58 */waypoints[197].origin =(-628.848, 6756.64, 2648.13); +/* 8:58 */waypoints[197].type = "grenade"; +/* 8:58 */waypoints[197].childCount = 1; +/* 8:58 */waypoints[197].children[0] = 15; +/* 8:58 */waypoints[197].angles = (-34.0466, -163.762, 0); +/* 8:58 */waypoints[198] = spawnstruct(); +/* 8:58 */waypoints[198].origin =(-1353.12, 6315.2, 2980.13); +/* 8:58 */waypoints[198].type = "climb"; +/* 8:58 */waypoints[198].childCount = 2; +/* 8:58 */waypoints[198].children[0] = 107; +/* 8:58 */waypoints[198].children[1] = 199; +/* 8:58 */waypoints[198].angles = (1.64795, 67.868, 0); +/* 8:58 */waypoints[199] = spawnstruct(); +/* 8:58 */waypoints[199].origin =(-1325.22, 6384.88, 3042.13); +/* 8:58 */waypoints[199].type = "climb"; +/* 8:58 */waypoints[199].childCount = 2; +/* 8:58 */waypoints[199].children[0] = 198; +/* 8:58 */waypoints[199].children[1] = 200; +/* 8:58 */waypoints[199].angles = (1.26892, 70.1477, 0); +/* 8:58 */waypoints[200] = spawnstruct(); +/* 8:58 */waypoints[200].origin =(-1293.11, 6457.9, 3042.13); +/* 8:58 */waypoints[200].type = "stand"; +/* 8:58 */waypoints[200].childCount = 2; +/* 8:58 */waypoints[200].children[0] = 199; +/* 8:58 */waypoints[200].children[1] = 201; +/* 8:58 */waypoints[200].angles = (17.4023, 70.5597, 0); +/* 8:58 */waypoints[201] = spawnstruct(); +/* 8:58 */waypoints[201].origin =(-1161.74, 6799.53, 3042.13); +/* 8:58 */waypoints[201].type = "stand"; +/* 8:58 */waypoints[201].childCount = 3; +/* 8:58 */waypoints[201].children[0] = 200; +/* 8:58 */waypoints[201].children[1] = 202; +/* 8:58 */waypoints[201].children[2] = 208; +/* 8:58 */waypoints[201].angles = (3.73535, 115.345, 0); +/* 8:58 */waypoints[202] = spawnstruct(); +/* 8:58 */waypoints[202].origin =(-1196.28, 6851, 3034.13); +/* 8:58 */waypoints[202].type = "climb"; +/* 8:58 */waypoints[202].childCount = 2; +/* 8:58 */waypoints[202].children[0] = 201; +/* 8:58 */waypoints[202].children[1] = 203; +/* 8:58 */waypoints[202].angles = (-0.609741, -53.8385, 0); +/* 8:58 */waypoints[203] = spawnstruct(); +/* 8:58 */waypoints[203].origin =(-1245.83, 6902.69, 3002.13); +/* 8:58 */waypoints[203].type = "climb"; +/* 8:58 */waypoints[203].childCount = 2; +/* 8:58 */waypoints[203].children[0] = 202; +/* 8:58 */waypoints[203].children[1] = 204; +/* 8:58 */waypoints[203].angles = (-3.1488, -42.7368, 0); +/* 8:58 */waypoints[204] = spawnstruct(); +/* 8:58 */waypoints[204].origin =(-1270.42, 6925.87, 3002.13); +/* 8:58 */waypoints[204].type = "stand"; +/* 8:58 */waypoints[204].childCount = 2; +/* 8:58 */waypoints[204].children[0] = 203; +/* 8:58 */waypoints[204].children[1] = 205; +/* 8:58 */waypoints[204].angles = (14.6326, 136.829, 0); +/* 8:58 */waypoints[205] = spawnstruct(); +/* 8:58 */waypoints[205].origin =(-1561.52, 7210.88, 3002.13); +/* 8:58 */waypoints[205].type = "stand"; +/* 8:58 */waypoints[205].childCount = 2; +/* 8:58 */waypoints[205].children[0] = 204; +/* 8:58 */waypoints[205].children[1] = 206; +/* 8:58 */waypoints[205].angles = (29.9475, 108.094, 0); +/* 8:58 */waypoints[206] = spawnstruct(); +/* 8:58 */waypoints[206].origin =(-1579.32, 7285.04, 2994.13); +/* 8:58 */waypoints[206].type = "climb"; +/* 8:58 */waypoints[206].childCount = 2; +/* 8:58 */waypoints[206].children[0] = 205; +/* 8:58 */waypoints[206].children[1] = 207; +/* 8:58 */waypoints[206].angles = (1.80603, -100.497, 0); +/* 8:58 */waypoints[207] = spawnstruct(); +/* 8:58 */waypoints[207].origin =(-1583.51, 7334.3, 2944.13); +/* 8:58 */waypoints[207].type = "climb"; +/* 8:58 */waypoints[207].childCount = 2; +/* 8:58 */waypoints[207].children[0] = 206; +/* 8:58 */waypoints[207].children[1] = 146; +/* 8:58 */waypoints[207].angles = (-1.66016, -88.3191, 0); +/* 8:58 */waypoints[208] = spawnstruct(); +/* 8:58 */waypoints[208].origin =(-1221.41, 6622.71, 3042.13); +/* 8:58 */waypoints[208].type = "crouch"; +/* 8:58 */waypoints[208].childCount = 1; +/* 8:58 */waypoints[208].children[0] = 201; +/* 8:58 */waypoints[208].angles = (20.7355, -7.43774, 0); + return waypoints; +} \ No newline at end of file diff --git a/raw/maps/mp/bots/waypoints/resistance.gsc b/raw/maps/mp/bots/waypoints/resistance.gsc new file mode 100644 index 0000000..8fe2ea9 --- /dev/null +++ b/raw/maps/mp/bots/waypoints/resistance.gsc @@ -0,0 +1,1228 @@ +Resistance() +{ +/* 0:56 */waypoints = []; +/* 0:56 */waypoints[0] = spawnstruct(); +/* 0:56 */waypoints[0].origin = (1392, -520, -16.6671); +/* 0:56 */waypoints[0].type = "stand"; +/* 0:56 */waypoints[0].children[0] = 1; +/* 0:56 */waypoints[0].children[1] = 3; +/* 0:56 */waypoints[1] = spawnstruct(); +/* 0:56 */waypoints[1].origin = (1143.2, -697.812, -13.9698); +/* 0:56 */waypoints[1].type = "stand"; +/* 0:56 */waypoints[1].children[0] = 4; +/* 0:56 */waypoints[1].children[1] = 0; +/* 0:56 */waypoints[1].children[2] = 3; +/* 0:56 */waypoints[1].children[3] = 2; +/* 0:56 */waypoints[2] = spawnstruct(); +/* 0:56 */waypoints[2].origin = (930.907, -529.97, -14.8001); +/* 0:56 */waypoints[2].type = "stand"; +/* 0:56 */waypoints[2].children[0] = 1; +/* 0:56 */waypoints[2].children[1] = 3; +/* 0:56 */waypoints[2].children[2] = 206; +/* 0:56 */waypoints[2].children[3] = 205; +/* 0:56 */waypoints[2].children[4] = 207; +/* 0:56 */waypoints[3] = spawnstruct(); +/* 0:56 */waypoints[3].origin = (1121.84, -316.911, -12.0141); +/* 0:56 */waypoints[3].type = "stand"; +/* 0:56 */waypoints[3].children[0] = 0; +/* 0:56 */waypoints[3].children[1] = 1; +/* 0:56 */waypoints[3].children[2] = 2; +/* 0:56 */waypoints[3].children[3] = 10; +/* 0:56 */waypoints[3].children[4] = 11; +/* 0:56 */waypoints[4] = spawnstruct(); +/* 0:56 */waypoints[4].origin = (1108.77, -891.934, -14.4142); +/* 0:56 */waypoints[4].type = "stand"; +/* 0:56 */waypoints[4].children[0] = 5; +/* 0:56 */waypoints[4].children[1] = 1; +/* 0:56 */waypoints[5] = spawnstruct(); +/* 0:56 */waypoints[5].origin = (938.181, -917.195, 45.4097); +/* 0:56 */waypoints[5].type = "stand"; +/* 0:56 */waypoints[5].children[0] = 6; +/* 0:56 */waypoints[5].children[1] = 4; +/* 0:56 */waypoints[6] = spawnstruct(); +/* 0:56 */waypoints[6].origin = (792.247, -924.391, 112.125); +/* 0:56 */waypoints[6].type = "stand"; +/* 0:56 */waypoints[6].children[0] = 9; +/* 0:56 */waypoints[6].children[1] = 7; +/* 0:56 */waypoints[6].children[2] = 8; +/* 0:56 */waypoints[6].children[3] = 5; +/* 0:56 */waypoints[7] = spawnstruct(); +/* 0:56 */waypoints[7].origin = (653.789, -1011.53, 112.125); +/* 0:56 */waypoints[7].type = "stand"; +/* 0:56 */waypoints[7].children[0] = 6; +/* 0:56 */waypoints[8] = spawnstruct(); +/* 0:56 */waypoints[8].origin = (642.365, -832.325, 112.125); +/* 0:56 */waypoints[8].type = "stand"; +/* 0:56 */waypoints[8].children[0] = 6; +/* 0:56 */waypoints[9] = spawnstruct(); +/* 0:56 */waypoints[9].origin = (538.338, -898.901, 112.125); +/* 0:56 */waypoints[9].type = "stand"; +/* 0:56 */waypoints[9].children[0] = 6; +/* 0:56 */waypoints[10] = spawnstruct(); +/* 0:56 */waypoints[10].origin = (1034.66, -165.792, -15.2008); +/* 0:56 */waypoints[10].type = "stand"; +/* 0:56 */waypoints[10].children[0] = 204; +/* 0:56 */waypoints[10].children[1] = 3; +/* 0:56 */waypoints[11] = spawnstruct(); +/* 0:56 */waypoints[11].origin = (1203.42, -143.898, -15.3708); +/* 0:56 */waypoints[11].type = "stand"; +/* 0:56 */waypoints[11].children[0] = 12; +/* 0:56 */waypoints[11].children[1] = 204; +/* 0:56 */waypoints[11].children[2] = 3; +/* 0:56 */waypoints[12] = spawnstruct(); +/* 0:56 */waypoints[12].origin = (1286.94, -49.1666, -15.875); +/* 0:56 */waypoints[12].type = "stand"; +/* 0:56 */waypoints[12].children[0] = 11; +/* 0:56 */waypoints[12].children[1] = 16; +/* 0:56 */waypoints[12].children[2] = 19; +/* 0:56 */waypoints[13] = spawnstruct(); +/* 0:56 */waypoints[13].origin = (1140.06, 113.879, -18.1965); +/* 0:56 */waypoints[13].type = "stand"; +/* 0:56 */waypoints[13].children[0] = 14; +/* 0:56 */waypoints[13].children[1] = 204; +/* 0:56 */waypoints[14] = spawnstruct(); +/* 0:56 */waypoints[14].origin = (1277.07, 320.175, -18.721); +/* 0:56 */waypoints[14].type = "stand"; +/* 0:56 */waypoints[14].children[0] = 197; +/* 0:56 */waypoints[14].children[1] = 198; +/* 0:56 */waypoints[14].children[2] = 15; +/* 0:56 */waypoints[14].children[3] = 13; +/* 0:56 */waypoints[15] = spawnstruct(); +/* 0:56 */waypoints[15].origin = (1398.54, 275.466, -15.875); +/* 0:56 */waypoints[15].type = "stand"; +/* 0:56 */waypoints[15].children[0] = 14; +/* 0:56 */waypoints[15].children[1] = 16; +/* 0:56 */waypoints[16] = spawnstruct(); +/* 0:56 */waypoints[16].origin = (1495.87, 182.922, -14.6134); +/* 0:56 */waypoints[16].type = "stand"; +/* 0:56 */waypoints[16].children[0] = 17; +/* 0:56 */waypoints[16].children[1] = 12; +/* 0:56 */waypoints[16].children[2] = 15; +/* 0:56 */waypoints[17] = spawnstruct(); +/* 0:56 */waypoints[17].origin = (1592.43, 361.66, -15.875); +/* 0:56 */waypoints[17].type = "stand"; +/* 0:56 */waypoints[17].children[0] = 16; +/* 0:56 */waypoints[17].children[1] = 22; +/* 0:56 */waypoints[17].children[2] = 203; +/* 0:56 */waypoints[18] = spawnstruct(); +/* 0:56 */waypoints[18].origin = (1577.53, 720.005, -15.7167); +/* 0:56 */waypoints[18].type = "stand"; +/* 0:56 */waypoints[18].children[0] = 194; +/* 0:56 */waypoints[18].children[1] = 191; +/* 0:56 */waypoints[18].children[2] = 22; +/* 0:56 */waypoints[19] = spawnstruct(); +/* 0:56 */waypoints[19].origin = (1608.55, -74.2682, 112.125); +/* 0:56 */waypoints[19].type = "stand"; +/* 0:56 */waypoints[19].children[0] = 12; +/* 0:56 */waypoints[19].children[1] = 20; +/* 0:56 */waypoints[20] = spawnstruct(); +/* 0:56 */waypoints[20].origin = (1776.34, -6.2197, 112.125); +/* 0:56 */waypoints[20].type = "stand"; +/* 0:56 */waypoints[20].children[0] = 19; +/* 0:56 */waypoints[20].children[1] = 21; +/* 0:56 */waypoints[21] = spawnstruct(); +/* 0:56 */waypoints[21].origin = (1776.08, 318.134, 109.974); +/* 0:56 */waypoints[21].type = "stand"; +/* 0:56 */waypoints[21].children[0] = 20; +/* 0:56 */waypoints[21].children[1] = 22; +/* 0:56 */waypoints[22] = spawnstruct(); +/* 0:56 */waypoints[22].origin = (1576.49, 588.528, -15.875); +/* 0:56 */waypoints[22].type = "stand"; +/* 0:56 */waypoints[22].children[0] = 18; +/* 0:56 */waypoints[22].children[1] = 21; +/* 0:56 */waypoints[22].children[2] = 17; +/* 0:56 */waypoints[22].children[3] = 23; +/* 0:56 */waypoints[22].children[4] = 203; +/* 0:56 */waypoints[23] = spawnstruct(); +/* 0:56 */waypoints[23].origin = (1911.98, 660.923, -16.2005); +/* 0:56 */waypoints[23].type = "stand"; +/* 0:56 */waypoints[23].children[0] = 22; +/* 0:56 */waypoints[23].children[1] = 24; +/* 0:56 */waypoints[24] = spawnstruct(); +/* 0:56 */waypoints[24].origin = (1908.57, 931.097, -11.7768); +/* 0:56 */waypoints[24].type = "stand"; +/* 0:56 */waypoints[24].children[0] = 193; +/* 0:56 */waypoints[24].children[1] = 25; +/* 0:56 */waypoints[24].children[2] = 23; +/* 0:56 */waypoints[25] = spawnstruct(); +/* 0:56 */waypoints[25].origin = (1903.41, 1139.97, 62.125); +/* 0:56 */waypoints[25].type = "stand"; +/* 0:56 */waypoints[25].children[0] = 24; +/* 0:56 */waypoints[25].children[1] = 26; +/* 0:56 */waypoints[26] = spawnstruct(); +/* 0:56 */waypoints[26].origin = (1680.73, 1166.25, 122.125); +/* 0:56 */waypoints[26].type = "stand"; +/* 0:56 */waypoints[26].children[0] = 25; +/* 0:56 */waypoints[26].children[1] = 27; +/* 0:56 */waypoints[27] = spawnstruct(); +/* 0:56 */waypoints[27].origin = (1007.99, 1165.98, 112.125); +/* 0:56 */waypoints[27].type = "stand"; +/* 0:56 */waypoints[27].children[0] = 26; +/* 0:56 */waypoints[27].children[1] = 29; +/* 0:56 */waypoints[27].children[2] = 28; +/* 0:56 */waypoints[28] = spawnstruct(); +/* 0:56 */waypoints[28].origin = (1007.92, 1428.9, 112.125); +/* 0:56 */waypoints[28].type = "stand"; +/* 0:56 */waypoints[28].children[0] = 27; +/* 0:56 */waypoints[29] = spawnstruct(); +/* 0:56 */waypoints[29].origin = (841.402, 1152.59, 98.125); +/* 0:56 */waypoints[29].type = "stand"; +/* 0:56 */waypoints[29].children[0] = 27; +/* 0:56 */waypoints[29].children[1] = 30; +/* 0:56 */waypoints[30] = spawnstruct(); +/* 0:56 */waypoints[30].origin = (849.167, 1574.62, -21.875); +/* 0:56 */waypoints[30].type = "stand"; +/* 0:56 */waypoints[30].children[0] = 161; +/* 0:56 */waypoints[30].children[1] = 31; +/* 0:56 */waypoints[30].children[2] = 162; +/* 0:56 */waypoints[30].children[3] = 29; +/* 0:56 */waypoints[31] = spawnstruct(); +/* 0:56 */waypoints[31].origin = (1037.64, 1574.55, -15.875); +/* 0:56 */waypoints[31].type = "stand"; +/* 0:56 */waypoints[31].children[0] = 30; +/* 0:56 */waypoints[32] = spawnstruct(); +/* 0:56 */waypoints[32].origin = (591.206, 1399.16, -21.875); +/* 0:56 */waypoints[32].type = "stand"; +/* 0:56 */waypoints[32].children[0] = 35; +/* 0:56 */waypoints[32].children[1] = 33; +/* 0:56 */waypoints[32].children[2] = 34; +/* 0:56 */waypoints[33] = spawnstruct(); +/* 0:56 */waypoints[33].origin = (707.777, 1406.46, -21.875); +/* 0:56 */waypoints[33].type = "stand"; +/* 0:56 */waypoints[33].children[0] = 32; +/* 0:56 */waypoints[33].children[1] = 34; +/* 0:56 */waypoints[33].children[2] = 161; +/* 0:56 */waypoints[34] = spawnstruct(); +/* 0:56 */waypoints[34].origin = (648.757, 1212.73, -21.875); +/* 0:56 */waypoints[34].type = "stand"; +/* 0:56 */waypoints[34].children[0] = 33; +/* 0:56 */waypoints[34].children[1] = 32; +/* 0:56 */waypoints[34].children[2] = 35; +/* 0:56 */waypoints[35] = spawnstruct(); +/* 0:56 */waypoints[35].origin = (740.51, 1146.42, -21.875); +/* 0:56 */waypoints[35].type = "stand"; +/* 0:56 */waypoints[35].children[0] = 36; +/* 0:56 */waypoints[35].children[1] = 32; +/* 0:56 */waypoints[35].children[2] = 34; +/* 0:56 */waypoints[36] = spawnstruct(); +/* 0:56 */waypoints[36].origin = (678.051, 961.245, -19.875); +/* 0:56 */waypoints[36].type = "stand"; +/* 0:56 */waypoints[36].children[0] = 39; +/* 0:56 */waypoints[36].children[1] = 35; +/* 0:56 */waypoints[36].children[2] = 37; +/* 0:56 */waypoints[36].children[3] = 200; +/* 0:56 */waypoints[37] = spawnstruct(); +/* 0:56 */waypoints[37].origin = (569.251, 870.144, -15.8607); +/* 0:56 */waypoints[37].type = "stand"; +/* 0:56 */waypoints[37].children[0] = 38; +/* 0:56 */waypoints[37].children[1] = 36; +/* 0:56 */waypoints[38] = spawnstruct(); +/* 0:56 */waypoints[38].origin = (491.526, 773.27, -14.0434); +/* 0:56 */waypoints[38].type = "stand"; +/* 0:56 */waypoints[38].children[0] = 41; +/* 0:56 */waypoints[38].children[1] = 37; +/* 0:56 */waypoints[38].children[2] = 42; +/* 0:56 */waypoints[38].children[3] = 173; +/* 0:56 */waypoints[39] = spawnstruct(); +/* 0:56 */waypoints[39].origin = (505.037, 1050.77, -20.9744); +/* 0:56 */waypoints[39].type = "stand"; +/* 0:56 */waypoints[39].children[0] = 43; +/* 0:56 */waypoints[39].children[1] = 36; +/* 0:56 */waypoints[39].children[2] = 171; +/* 0:56 */waypoints[39].children[3] = 41; +/* 0:56 */waypoints[40] = spawnstruct(); +/* 0:56 */waypoints[40].origin = (390.035, 1385.34, -34.2069); +/* 0:56 */waypoints[40].type = "stand"; +/* 0:56 */waypoints[40].children[0] = 45; +/* 0:56 */waypoints[40].children[1] = 44; +/* 0:56 */waypoints[40].children[2] = 171; +/* 0:56 */waypoints[40].children[3] = 46; +/* 0:56 */waypoints[41] = spawnstruct(); +/* 0:56 */waypoints[41].origin = (371.059, 672.978, -18.0536); +/* 0:56 */waypoints[41].type = "stand"; +/* 0:56 */waypoints[41].children[0] = 39; +/* 0:56 */waypoints[41].children[1] = 38; +/* 0:56 */waypoints[41].children[2] = 173; +/* 0:56 */waypoints[42] = spawnstruct(); +/* 0:56 */waypoints[42].origin = (214.185, 700.835, -15.7399); +/* 0:56 */waypoints[42].type = "stand"; +/* 0:56 */waypoints[42].children[0] = 38; +/* 0:56 */waypoints[42].children[1] = 172; +/* 0:56 */waypoints[42].children[2] = 43; +/* 0:56 */waypoints[43] = spawnstruct(); +/* 0:56 */waypoints[43].origin = (217.88, 1082.17, -21.684); +/* 0:56 */waypoints[43].type = "stand"; +/* 0:56 */waypoints[43].children[0] = 127; +/* 0:56 */waypoints[43].children[1] = 39; +/* 0:56 */waypoints[43].children[2] = 44; +/* 0:56 */waypoints[43].children[3] = 42; +/* 0:56 */waypoints[44] = spawnstruct(); +/* 0:56 */waypoints[44].origin = (301.762, 1220.5, -29.0081); +/* 0:56 */waypoints[44].type = "stand"; +/* 0:56 */waypoints[44].children[0] = 40; +/* 0:56 */waypoints[44].children[1] = 43; +/* 0:56 */waypoints[44].children[2] = 171; +/* 0:56 */waypoints[45] = spawnstruct(); +/* 0:56 */waypoints[45].origin = (309.659, 1649.48, -31.343); +/* 0:56 */waypoints[45].type = "stand"; +/* 0:56 */waypoints[45].children[0] = 54; +/* 0:56 */waypoints[45].children[1] = 46; +/* 0:56 */waypoints[45].children[2] = 40; +/* 0:56 */waypoints[46] = spawnstruct(); +/* 0:56 */waypoints[46].origin = (545.608, 1713.19, -35.6809); +/* 0:56 */waypoints[46].type = "stand"; +/* 0:56 */waypoints[46].children[0] = 45; +/* 0:56 */waypoints[46].children[1] = 47; +/* 0:56 */waypoints[46].children[2] = 162; +/* 0:56 */waypoints[46].children[3] = 40; +/* 0:56 */waypoints[47] = spawnstruct(); +/* 0:56 */waypoints[47].origin = (675.458, 1956.42, -29.9682); +/* 0:56 */waypoints[47].type = "stand"; +/* 0:56 */waypoints[47].children[0] = 162; +/* 0:56 */waypoints[47].children[1] = 48; +/* 0:56 */waypoints[47].children[2] = 46; +/* 0:56 */waypoints[48] = spawnstruct(); +/* 0:56 */waypoints[48].origin = (696.641, 2157.39, -30.2928); +/* 0:56 */waypoints[48].type = "stand"; +/* 0:56 */waypoints[48].children[0] = 47; +/* 0:56 */waypoints[48].children[1] = 49; +/* 0:56 */waypoints[48].children[2] = 50; +/* 0:56 */waypoints[48].children[3] = 51; +/* 0:56 */waypoints[49] = spawnstruct(); +/* 0:56 */waypoints[49].origin = (940.462, 2133.65, -21.3246); +/* 0:56 */waypoints[49].type = "stand"; +/* 0:56 */waypoints[49].children[0] = 48; +/* 0:56 */waypoints[49].children[1] = 50; +/* 0:56 */waypoints[50] = spawnstruct(); +/* 0:56 */waypoints[50].origin = (913.261, 2246.97, -25.1555); +/* 0:56 */waypoints[50].type = "stand"; +/* 0:56 */waypoints[50].children[0] = 49; +/* 0:56 */waypoints[50].children[1] = 48; +/* 0:56 */waypoints[51] = spawnstruct(); +/* 0:56 */waypoints[51].origin = (586.349, 2288.41, -23.875); +/* 0:56 */waypoints[51].type = "stand"; +/* 0:56 */waypoints[51].children[0] = 48; +/* 0:56 */waypoints[51].children[1] = 52; +/* 0:56 */waypoints[52] = spawnstruct(); +/* 0:56 */waypoints[52].origin = (403.948, 2215.44, -23.875); +/* 0:56 */waypoints[52].type = "stand"; +/* 0:56 */waypoints[52].children[0] = 51; +/* 0:56 */waypoints[52].children[1] = 53; +/* 0:56 */waypoints[52].children[2] = 54; +/* 0:56 */waypoints[53] = spawnstruct(); +/* 0:56 */waypoints[53].origin = (243.719, 2298.02, -23.875); +/* 0:56 */waypoints[53].type = "stand"; +/* 0:56 */waypoints[53].children[0] = 52; +/* 0:56 */waypoints[53].children[1] = 55; +/* 0:56 */waypoints[54] = spawnstruct(); +/* 0:56 */waypoints[54].origin = (270.038, 2116.19, -23.875); +/* 0:56 */waypoints[54].type = "stand"; +/* 0:56 */waypoints[54].children[0] = 45; +/* 0:56 */waypoints[54].children[1] = 170; +/* 0:56 */waypoints[54].children[2] = 52; +/* 0:56 */waypoints[54].children[3] = 55; +/* 0:56 */waypoints[55] = spawnstruct(); +/* 0:56 */waypoints[55].origin = (35.2252, 2210.99, -23.875); +/* 0:56 */waypoints[55].type = "stand"; +/* 0:56 */waypoints[55].children[0] = 53; +/* 0:56 */waypoints[55].children[1] = 58; +/* 0:56 */waypoints[55].children[2] = 54; +/* 0:56 */waypoints[56] = spawnstruct(); +/* 0:56 */waypoints[56].origin = (156.959, 1905.54, -23.875); +/* 0:56 */waypoints[56].type = "stand"; +/* 0:56 */waypoints[56].children[0] = 57; +/* 0:56 */waypoints[56].children[1] = 170; +/* 0:56 */waypoints[57] = spawnstruct(); +/* 0:56 */waypoints[57].origin = (-18.1612, 1894.66, -24.7394); +/* 0:56 */waypoints[57].type = "stand"; +/* 0:56 */waypoints[57].children[0] = 60; +/* 0:56 */waypoints[57].children[1] = 56; +/* 0:56 */waypoints[57].children[2] = 58; +/* 0:56 */waypoints[58] = spawnstruct(); +/* 0:56 */waypoints[58].origin = (-147.412, 2158.74, -26.7123); +/* 0:56 */waypoints[58].type = "stand"; +/* 0:56 */waypoints[58].children[0] = 55; +/* 0:56 */waypoints[58].children[1] = 59; +/* 0:56 */waypoints[58].children[2] = 57; +/* 0:56 */waypoints[59] = spawnstruct(); +/* 0:56 */waypoints[59].origin = (-436.41, 2032.45, 61.125); +/* 0:56 */waypoints[59].type = "stand"; +/* 0:56 */waypoints[59].children[0] = 58; +/* 0:56 */waypoints[59].children[1] = 62; +/* 0:56 */waypoints[59].children[2] = 60; +/* 0:56 */waypoints[60] = spawnstruct(); +/* 0:56 */waypoints[60].origin = (-333.721, 1782.69, 61.125); +/* 0:56 */waypoints[60].type = "stand"; +/* 0:56 */waypoints[60].children[0] = 61; +/* 0:56 */waypoints[60].children[1] = 57; +/* 0:56 */waypoints[60].children[2] = 59; +/* 0:56 */waypoints[61] = spawnstruct(); +/* 0:56 */waypoints[61].origin = (-461.604, 1822.1, 94.4982); +/* 0:56 */waypoints[61].type = "stand"; +/* 0:56 */waypoints[61].children[0] = 64; +/* 0:56 */waypoints[61].children[1] = 60; +/* 0:56 */waypoints[62] = spawnstruct(); +/* 0:56 */waypoints[62].origin = (-523.785, 1903.59, 108.494); +/* 0:56 */waypoints[62].type = "stand"; +/* 0:56 */waypoints[62].children[0] = 59; +/* 0:56 */waypoints[62].children[1] = 63; +/* 0:56 */waypoints[63] = spawnstruct(); +/* 0:56 */waypoints[63].origin = (-789.603, 1802.86, 223.125); +/* 0:56 */waypoints[63].type = "stand"; +/* 0:56 */waypoints[63].children[0] = 62; +/* 0:56 */waypoints[63].children[1] = 65; +/* 0:56 */waypoints[63].children[2] = 66; +/* 0:56 */waypoints[64] = spawnstruct(); +/* 0:56 */waypoints[64].origin = (-731.119, 1710.79, 223.125); +/* 0:56 */waypoints[64].type = "stand"; +/* 0:56 */waypoints[64].children[0] = 65; +/* 0:56 */waypoints[64].children[1] = 66; +/* 0:56 */waypoints[64].children[2] = 61; +/* 0:56 */waypoints[65] = spawnstruct(); +/* 0:56 */waypoints[65].origin = (-847.065, 1580.89, 224.458); +/* 0:56 */waypoints[65].type = "stand"; +/* 0:56 */waypoints[65].children[0] = 63; +/* 0:56 */waypoints[65].children[1] = 64; +/* 0:56 */waypoints[65].children[2] = 163; +/* 0:56 */waypoints[65].children[3] = 73; +/* 0:56 */waypoints[65].children[4] = 68; +/* 0:56 */waypoints[65].children[5] = 182; +/* 0:56 */waypoints[66] = spawnstruct(); +/* 0:56 */waypoints[66].origin = (-1005.08, 1852.52, 229.301); +/* 0:56 */waypoints[66].type = "stand"; +/* 0:56 */waypoints[66].children[0] = 64; +/* 0:56 */waypoints[66].children[1] = 63; +/* 0:56 */waypoints[66].children[2] = 67; +/* 0:56 */waypoints[67] = spawnstruct(); +/* 0:56 */waypoints[67].origin = (-1292.79, 1869.86, 236.712); +/* 0:56 */waypoints[67].type = "stand"; +/* 0:56 */waypoints[67].children[0] = 66; +/* 0:56 */waypoints[67].children[1] = 68; +/* 0:56 */waypoints[68] = spawnstruct(); +/* 0:56 */waypoints[68].origin = (-1494.2, 1721.09, 250.797); +/* 0:56 */waypoints[68].type = "stand"; +/* 0:56 */waypoints[68].children[0] = 67; +/* 0:56 */waypoints[68].children[1] = 71; +/* 0:56 */waypoints[68].children[2] = 65; +/* 0:56 */waypoints[68].children[3] = 69; +/* 0:56 */waypoints[69] = spawnstruct(); +/* 0:56 */waypoints[69].origin = (-1957.79, 1681.68, 259.49); +/* 0:56 */waypoints[69].type = "stand"; +/* 0:56 */waypoints[69].children[0] = 76; +/* 0:56 */waypoints[69].children[1] = 68; +/* 0:56 */waypoints[69].children[2] = 70; +/* 0:56 */waypoints[70] = spawnstruct(); +/* 0:56 */waypoints[70].origin = (-2027.62, 1409.75, 258.811); +/* 0:56 */waypoints[70].type = "stand"; +/* 0:56 */waypoints[70].children[0] = 71; +/* 0:56 */waypoints[70].children[1] = 76; +/* 0:56 */waypoints[70].children[2] = 69; +/* 0:56 */waypoints[70].children[3] = 130; +/* 0:56 */waypoints[71] = spawnstruct(); +/* 0:56 */waypoints[71].origin = (-1653.39, 1470.34, 254.698); +/* 0:56 */waypoints[71].type = "stand"; +/* 0:56 */waypoints[71].children[0] = 68; +/* 0:56 */waypoints[71].children[1] = 70; +/* 0:56 */waypoints[71].children[2] = 72; +/* 0:56 */waypoints[72] = spawnstruct(); +/* 0:56 */waypoints[72].origin = (-1345.41, 1521.13, 248.372); +/* 0:56 */waypoints[72].type = "stand"; +/* 0:56 */waypoints[72].children[0] = 71; +/* 0:56 */waypoints[72].children[1] = 73; +/* 0:56 */waypoints[73] = spawnstruct(); +/* 0:56 */waypoints[73].origin = (-1167.17, 1394.56, 214.989); +/* 0:56 */waypoints[73].type = "stand"; +/* 0:56 */waypoints[73].children[0] = 72; +/* 0:56 */waypoints[73].children[1] = 163; +/* 0:56 */waypoints[73].children[2] = 65; +/* 0:56 */waypoints[73].children[3] = 182; +/* 0:56 */waypoints[74] = spawnstruct(); +/* 0:56 */waypoints[74].origin = (-1070.33, 885.805, 136.822); +/* 0:56 */waypoints[74].type = "stand"; +/* 0:56 */waypoints[74].children[0] = 82; +/* 0:56 */waypoints[74].children[1] = 182; +/* 0:56 */waypoints[75] = spawnstruct(); +/* 0:56 */waypoints[75].origin = (-900.157, 1037.81, 147.768); +/* 0:56 */waypoints[75].type = "stand"; +/* 0:56 */waypoints[75].children[0] = 163; +/* 0:56 */waypoints[75].children[1] = 109; +/* 0:56 */waypoints[76] = spawnstruct(); +/* 0:56 */waypoints[76].origin = (-1744.75, 1378.43, 254.656); +/* 0:56 */waypoints[76].type = "stand"; +/* 0:56 */waypoints[76].children[0] = 70; +/* 0:56 */waypoints[76].children[1] = 69; +/* 0:56 */waypoints[76].children[2] = 77; +/* 0:56 */waypoints[77] = spawnstruct(); +/* 0:56 */waypoints[77].origin = (-1387.02, 1396.85, 123.125); +/* 0:56 */waypoints[77].type = "stand"; +/* 0:56 */waypoints[77].children[0] = 76; +/* 0:56 */waypoints[77].children[1] = 79; +/* 0:56 */waypoints[77].children[2] = 78; +/* 0:56 */waypoints[78] = spawnstruct(); +/* 0:56 */waypoints[78].origin = (-1198.6, 1291, 120.125); +/* 0:56 */waypoints[78].type = "stand"; +/* 0:56 */waypoints[78].children[0] = 77; +/* 0:56 */waypoints[78].children[1] = 164; +/* 0:56 */waypoints[78].children[2] = 80; +/* 0:56 */waypoints[79] = spawnstruct(); +/* 0:56 */waypoints[79].origin = (-1262.92, 1257.05, 121.7); +/* 0:56 */waypoints[79].type = "stand"; +/* 0:56 */waypoints[79].children[0] = 77; +/* 0:56 */waypoints[79].children[1] = 80; +/* 0:56 */waypoints[79].children[2] = 164; +/* 0:56 */waypoints[80] = spawnstruct(); +/* 0:56 */waypoints[80].origin = (-1245.75, 885.161, 121.508); +/* 0:56 */waypoints[80].type = "stand"; +/* 0:56 */waypoints[80].children[0] = 79; +/* 0:56 */waypoints[80].children[1] = 78; +/* 0:56 */waypoints[81] = spawnstruct(); +/* 0:56 */waypoints[81].origin = (-1246.24, 663.305, 101.808); +/* 0:56 */waypoints[81].type = "stand"; +/* 0:56 */waypoints[81].children[0] = 164; +/* 0:56 */waypoints[81].children[1] = 83; +/* 0:56 */waypoints[81].children[2] = 109; +/* 0:56 */waypoints[82] = spawnstruct(); +/* 0:56 */waypoints[82].origin = (-1243.73, 486.968, 75.7456); +/* 0:56 */waypoints[82].type = "stand"; +/* 0:56 */waypoints[82].children[0] = 84; +/* 0:56 */waypoints[82].children[1] = 74; +/* 0:56 */waypoints[83] = spawnstruct(); +/* 0:56 */waypoints[83].origin = (-1369.72, 480.28, 69.0327); +/* 0:56 */waypoints[83].type = "stand"; +/* 0:56 */waypoints[83].children[0] = 81; +/* 0:56 */waypoints[83].children[1] = 84; +/* 0:56 */waypoints[84] = spawnstruct(); +/* 0:56 */waypoints[84].origin = (-1332.28, 306.904, 66.5352); +/* 0:56 */waypoints[84].type = "stand"; +/* 0:56 */waypoints[84].children[0] = 82; +/* 0:56 */waypoints[84].children[1] = 86; +/* 0:56 */waypoints[84].children[2] = 181; +/* 0:56 */waypoints[84].children[3] = 83; +/* 0:56 */waypoints[85] = spawnstruct(); +/* 0:56 */waypoints[85].origin = (-1152.63, 157.894, 70.6467); +/* 0:56 */waypoints[85].type = "stand"; +/* 0:56 */waypoints[85].children[0] = 86; +/* 0:56 */waypoints[85].children[1] = 88; +/* 0:56 */waypoints[85].children[2] = 165; +/* 0:56 */waypoints[86] = spawnstruct(); +/* 0:56 */waypoints[86].origin = (-1268.85, 200.251, 61.6436); +/* 0:56 */waypoints[86].type = "stand"; +/* 0:56 */waypoints[86].children[0] = 84; +/* 0:56 */waypoints[86].children[1] = 85; +/* 0:56 */waypoints[86].children[2] = 87; +/* 0:56 */waypoints[86].children[3] = 165; +/* 0:56 */waypoints[86].children[4] = 181; +/* 0:56 */waypoints[86].children[5] = 211; +/* 0:56 */waypoints[87] = spawnstruct(); +/* 0:56 */waypoints[87].origin = (-1441.26, -312.851, 60.0749); +/* 0:56 */waypoints[87].type = "stand"; +/* 0:56 */waypoints[87].children[0] = 147; +/* 0:56 */waypoints[87].children[1] = 88; +/* 0:56 */waypoints[87].children[2] = 86; +/* 0:56 */waypoints[87].children[3] = 165; +/* 0:56 */waypoints[88] = spawnstruct(); +/* 0:56 */waypoints[88].origin = (-1077.86, -282.17, 58.7146); +/* 0:56 */waypoints[88].type = "stand"; +/* 0:56 */waypoints[88].children[0] = 85; +/* 0:56 */waypoints[88].children[1] = 87; +/* 0:56 */waypoints[88].children[2] = 165; +/* 0:56 */waypoints[88].children[3] = 179; +/* 0:56 */waypoints[89] = spawnstruct(); +/* 0:56 */waypoints[89].origin = (-857.695, -865.125, 48.6137); +/* 0:56 */waypoints[89].type = "stand"; +/* 0:56 */waypoints[89].children[0] = 90; +/* 0:56 */waypoints[89].children[1] = 179; +/* 0:56 */waypoints[89].children[2] = 91; +/* 0:56 */waypoints[89].children[3] = 156; +/* 0:56 */waypoints[90] = spawnstruct(); +/* 0:56 */waypoints[90].origin = (-478.312, -1012.72, 49.9551); +/* 0:56 */waypoints[90].type = "stand"; +/* 0:56 */waypoints[90].children[0] = 91; +/* 0:56 */waypoints[90].children[1] = 157; +/* 0:56 */waypoints[90].children[2] = 92; +/* 0:56 */waypoints[90].children[3] = 89; +/* 0:56 */waypoints[91] = spawnstruct(); +/* 0:56 */waypoints[91].origin = (-473.214, -873.622, 51.0867); +/* 0:56 */waypoints[91].type = "stand"; +/* 0:56 */waypoints[91].children[0] = 92; +/* 0:56 */waypoints[91].children[1] = 90; +/* 0:56 */waypoints[91].children[2] = 89; +/* 0:56 */waypoints[92] = spawnstruct(); +/* 0:56 */waypoints[92].origin = (-126.377, -823.88, 21.8322); +/* 0:56 */waypoints[92].type = "stand"; +/* 0:56 */waypoints[92].children[0] = 93; +/* 0:56 */waypoints[92].children[1] = 91; +/* 0:56 */waypoints[92].children[2] = 90; +/* 0:56 */waypoints[92].children[3] = 176; +/* 0:56 */waypoints[93] = spawnstruct(); +/* 0:56 */waypoints[93].origin = (-39.3153, -1018.82, 15.2649); +/* 0:56 */waypoints[93].type = "stand"; +/* 0:56 */waypoints[93].children[0] = 94; +/* 0:56 */waypoints[93].children[1] = 92; +/* 0:56 */waypoints[93].children[2] = 177; +/* 0:56 */waypoints[94] = spawnstruct(); +/* 0:56 */waypoints[94].origin = (255.922, -777.853, 4.125); +/* 0:56 */waypoints[94].type = "stand"; +/* 0:56 */waypoints[94].children[0] = 176; +/* 0:56 */waypoints[94].children[1] = 93; +/* 0:56 */waypoints[94].children[2] = 209; +/* 0:56 */waypoints[95] = spawnstruct(); +/* 0:56 */waypoints[95].origin = (437.469, -792.165, 5.02271); +/* 0:56 */waypoints[95].type = "stand"; +/* 0:56 */waypoints[95].children[0] = 96; +/* 0:56 */waypoints[95].children[1] = 176; +/* 0:56 */waypoints[95].children[2] = 205; +/* 0:56 */waypoints[95].children[3] = 207; +/* 0:56 */waypoints[96] = spawnstruct(); +/* 0:56 */waypoints[96].origin = (427.263, -480.1, 12.1523); +/* 0:56 */waypoints[96].type = "stand"; +/* 0:56 */waypoints[96].children[0] = 97; +/* 0:56 */waypoints[96].children[1] = 95; +/* 0:56 */waypoints[96].children[2] = 205; +/* 0:56 */waypoints[97] = spawnstruct(); +/* 0:56 */waypoints[97].origin = (275.828, -263.982, 3.16463); +/* 0:56 */waypoints[97].type = "stand"; +/* 0:56 */waypoints[97].children[0] = 175; +/* 0:56 */waypoints[97].children[1] = 96; +/* 0:56 */waypoints[97].children[2] = 209; +/* 0:56 */waypoints[98] = spawnstruct(); +/* 0:56 */waypoints[98].origin = (350.425, -8.116, 1.25366); +/* 0:56 */waypoints[98].type = "stand"; +/* 0:56 */waypoints[98].children[0] = 172; +/* 0:56 */waypoints[98].children[1] = 99; +/* 0:56 */waypoints[98].children[2] = 175; +/* 0:56 */waypoints[99] = spawnstruct(); +/* 0:56 */waypoints[99].origin = (28.408, -15.0345, 0.82334); +/* 0:56 */waypoints[99].type = "stand"; +/* 0:56 */waypoints[99].children[0] = 174; +/* 0:56 */waypoints[99].children[1] = 98; +/* 0:56 */waypoints[100] = spawnstruct(); +/* 0:56 */waypoints[100].origin = (-365.8, 31.337, 3.125); +/* 0:56 */waypoints[100].type = "stand"; +/* 0:56 */waypoints[100].children[0] = 102; +/* 0:56 */waypoints[100].children[1] = 101; +/* 0:56 */waypoints[101] = spawnstruct(); +/* 0:56 */waypoints[101].origin = (-307.97, 280.598, 53.2095); +/* 0:56 */waypoints[101].type = "stand"; +/* 0:56 */waypoints[101].children[0] = 100; +/* 0:56 */waypoints[101].children[1] = 110; +/* 0:56 */waypoints[102] = spawnstruct(); +/* 0:56 */waypoints[102].origin = (-458.326, 271.282, 3.12499); +/* 0:56 */waypoints[102].type = "stand"; +/* 0:56 */waypoints[102].children[0] = 103; +/* 0:56 */waypoints[102].children[1] = 100; +/* 0:56 */waypoints[103] = spawnstruct(); +/* 0:56 */waypoints[103].origin = (-454.926, 513.545, 55.125); +/* 0:56 */waypoints[103].type = "stand"; +/* 0:56 */waypoints[103].children[0] = 104; +/* 0:56 */waypoints[103].children[1] = 102; +/* 0:56 */waypoints[103].children[2] = 110; +/* 0:56 */waypoints[104] = spawnstruct(); +/* 0:56 */waypoints[104].origin = (-577.254, 518.798, 55.125); +/* 0:56 */waypoints[104].type = "stand"; +/* 0:56 */waypoints[104].children[0] = 105; +/* 0:56 */waypoints[104].children[1] = 103; +/* 0:56 */waypoints[105] = spawnstruct(); +/* 0:56 */waypoints[105].origin = (-615.367, 302.959, 55.9744); +/* 0:56 */waypoints[105].type = "stand"; +/* 0:56 */waypoints[105].children[0] = 159; +/* 0:56 */waypoints[105].children[1] = 107; +/* 0:56 */waypoints[105].children[2] = 106; +/* 0:56 */waypoints[105].children[3] = 104; +/* 0:56 */waypoints[106] = spawnstruct(); +/* 0:56 */waypoints[106].origin = (-797.733, 262.938, 55.0013); +/* 0:56 */waypoints[106].type = "stand"; +/* 0:56 */waypoints[106].children[0] = 105; +/* 0:56 */waypoints[106].children[1] = 160; +/* 0:56 */waypoints[107] = spawnstruct(); +/* 0:56 */waypoints[107].origin = (-569.082, -110.585, 62.9647); +/* 0:56 */waypoints[107].type = "stand"; +/* 0:56 */waypoints[107].children[0] = 105; +/* 0:56 */waypoints[107].children[1] = 108; +/* 0:56 */waypoints[108] = spawnstruct(); +/* 0:56 */waypoints[108].origin = (-906.801, -79.8971, 59.7002); +/* 0:56 */waypoints[108].type = "stand"; +/* 0:56 */waypoints[108].children[0] = 107; +/* 0:56 */waypoints[108].children[1] = 158; +/* 0:56 */waypoints[108].children[2] = 160; +/* 0:56 */waypoints[108].children[3] = 210; +/* 0:56 */waypoints[109] = spawnstruct(); +/* 0:56 */waypoints[109].origin = (-980.148, 581.014, 97.4698); +/* 0:56 */waypoints[109].type = "stand"; +/* 0:56 */waypoints[109].children[0] = 75; +/* 0:56 */waypoints[109].children[1] = 114; +/* 0:56 */waypoints[109].children[2] = 81; +/* 0:56 */waypoints[109].children[3] = 211; +/* 0:56 */waypoints[110] = spawnstruct(); +/* 0:56 */waypoints[110].origin = (-321.556, 458.926, 103.125); +/* 0:56 */waypoints[110].type = "stand"; +/* 0:56 */waypoints[110].children[0] = 115; +/* 0:56 */waypoints[110].children[1] = 101; +/* 0:56 */waypoints[110].children[2] = 111; +/* 0:56 */waypoints[110].children[3] = 103; +/* 0:56 */waypoints[111] = spawnstruct(); +/* 0:56 */waypoints[111].origin = (-331.607, 642.211, 103.125); +/* 0:56 */waypoints[111].type = "stand"; +/* 0:56 */waypoints[111].children[0] = 110; +/* 0:56 */waypoints[111].children[1] = 112; +/* 0:56 */waypoints[112] = spawnstruct(); +/* 0:56 */waypoints[112].origin = (-478.549, 683.519, 103.125); +/* 0:56 */waypoints[112].type = "stand"; +/* 0:56 */waypoints[112].children[0] = 111; +/* 0:56 */waypoints[112].children[1] = 113; +/* 0:56 */waypoints[113] = spawnstruct(); +/* 0:56 */waypoints[113].origin = (-688.132, 677.033, 55.125); +/* 0:56 */waypoints[113].type = "stand"; +/* 0:56 */waypoints[113].children[0] = 114; +/* 0:56 */waypoints[113].children[1] = 112; +/* 0:56 */waypoints[114] = spawnstruct(); +/* 0:56 */waypoints[114].origin = (-833.207, 553.48, 58.8799); +/* 0:56 */waypoints[114].type = "stand"; +/* 0:56 */waypoints[114].children[0] = 113; +/* 0:56 */waypoints[114].children[1] = 109; +/* 0:56 */waypoints[115] = spawnstruct(); +/* 0:56 */waypoints[115].origin = (-78.8689, 458.301, 103.125); +/* 0:56 */waypoints[115].type = "stand"; +/* 0:56 */waypoints[115].children[0] = 129; +/* 0:56 */waypoints[115].children[1] = 110; +/* 0:56 */waypoints[115].children[2] = 117; +/* 0:56 */waypoints[115].children[3] = 116; +/* 0:56 */waypoints[116] = spawnstruct(); +/* 0:56 */waypoints[116].origin = (-117.672, 614.052, 108.495); +/* 0:56 */waypoints[116].type = "stand"; +/* 0:56 */waypoints[116].children[0] = 115; +/* 0:56 */waypoints[116].children[1] = 118; +/* 0:56 */waypoints[117] = spawnstruct(); +/* 0:56 */waypoints[117].origin = (6.85877, 606.574, 106.686); +/* 0:56 */waypoints[117].type = "stand"; +/* 0:56 */waypoints[117].children[0] = 115; +/* 0:56 */waypoints[117].children[1] = 118; +/* 0:56 */waypoints[118] = spawnstruct(); +/* 0:56 */waypoints[118].origin = (-36.3375, 718.541, 103.125); +/* 0:56 */waypoints[118].type = "stand"; +/* 0:56 */waypoints[118].children[0] = 117; +/* 0:56 */waypoints[118].children[1] = 119; +/* 0:56 */waypoints[118].children[2] = 116; +/* 0:56 */waypoints[119] = spawnstruct(); +/* 0:56 */waypoints[119].origin = (-50.1934, 815.45, 103.125); +/* 0:56 */waypoints[119].type = "stand"; +/* 0:56 */waypoints[119].children[0] = 120; +/* 0:56 */waypoints[119].children[1] = 128; +/* 0:56 */waypoints[119].children[2] = 118; +/* 0:56 */waypoints[120] = spawnstruct(); +/* 0:56 */waypoints[120].origin = (56.7203, 793.17, 103.125); +/* 0:56 */waypoints[120].type = "stand"; +/* 0:56 */waypoints[120].children[0] = 121; +/* 0:56 */waypoints[120].children[1] = 119; +/* 0:56 */waypoints[121] = spawnstruct(); +/* 0:56 */waypoints[121].origin = (161.89, 787.364, 103.125); +/* 0:56 */waypoints[121].type = "stand"; +/* 0:56 */waypoints[121].children[0] = 122; +/* 0:56 */waypoints[121].children[1] = 120; +/* 0:56 */waypoints[122] = spawnstruct(); +/* 0:56 */waypoints[122].origin = (89.9066, 984.992, 106.455); +/* 0:56 */waypoints[122].type = "stand"; +/* 0:56 */waypoints[122].children[0] = 123; +/* 0:56 */waypoints[122].children[1] = 121; +/* 0:56 */waypoints[123] = spawnstruct(); +/* 0:56 */waypoints[123].origin = (-20.326, 1082.74, 47.4058); +/* 0:56 */waypoints[123].type = "stand"; +/* 0:56 */waypoints[123].children[0] = 127; +/* 0:56 */waypoints[123].children[1] = 124; +/* 0:56 */waypoints[123].children[2] = 122; +/* 0:56 */waypoints[124] = spawnstruct(); +/* 0:56 */waypoints[124].origin = (-154.302, 1079.64, 105.932); +/* 0:56 */waypoints[124].type = "stand"; +/* 0:56 */waypoints[124].children[0] = 123; +/* 0:56 */waypoints[124].children[1] = 128; +/* 0:56 */waypoints[125] = spawnstruct(); +/* 0:56 */waypoints[125].origin = (123.859, 994.753, -12.0641); +/* 0:56 */waypoints[125].type = "stand"; +/* 0:56 */waypoints[125].children[0] = 127; +/* 0:56 */waypoints[125].children[1] = 126; +/* 0:56 */waypoints[126] = spawnstruct(); +/* 0:56 */waypoints[126].origin = (49.8415, 797.869, -20.875); +/* 0:56 */waypoints[126].type = "stand"; +/* 0:56 */waypoints[126].children[0] = 125; +/* 0:56 */waypoints[127] = spawnstruct(); +/* 0:56 */waypoints[127].origin = (122.002, 1083.15, -11.6797); +/* 0:56 */waypoints[127].type = "stand"; +/* 0:56 */waypoints[127].children[0] = 43; +/* 0:56 */waypoints[127].children[1] = 125; +/* 0:56 */waypoints[127].children[2] = 123; +/* 0:56 */waypoints[128] = spawnstruct(); +/* 0:56 */waypoints[128].origin = (-47.4947, 954.628, 103.125); +/* 0:56 */waypoints[128].type = "stand"; +/* 0:56 */waypoints[128].children[0] = 119; +/* 0:56 */waypoints[128].children[1] = 124; +/* 0:56 */waypoints[129] = spawnstruct(); +/* 0:56 */waypoints[129].origin = (-62.1533, 211.812, 103.125); +/* 0:56 */waypoints[129].type = "stand"; +/* 0:56 */waypoints[129].children[0] = 115; +/* 0:56 */waypoints[130] = spawnstruct(); +/* 0:56 */waypoints[130].origin = (-2045.64, 1160.32, 250.318); +/* 0:56 */waypoints[130].type = "stand"; +/* 0:56 */waypoints[130].children[0] = 132; +/* 0:56 */waypoints[130].children[1] = 131; +/* 0:56 */waypoints[130].children[2] = 70; +/* 0:56 */waypoints[131] = spawnstruct(); +/* 0:56 */waypoints[131].origin = (-1813.13, 1012.73, 248.125); +/* 0:56 */waypoints[131].type = "stand"; +/* 0:56 */waypoints[131].children[0] = 130; +/* 0:56 */waypoints[131].children[1] = 133; +/* 0:56 */waypoints[132] = spawnstruct(); +/* 0:56 */waypoints[132].origin = (-2159.67, 971.181, 248.125); +/* 0:56 */waypoints[132].type = "stand"; +/* 0:56 */waypoints[132].children[0] = 133; +/* 0:56 */waypoints[132].children[1] = 134; +/* 0:56 */waypoints[132].children[2] = 130; +/* 0:56 */waypoints[133] = spawnstruct(); +/* 0:56 */waypoints[133].origin = (-1977.11, 841.033, 248.125); +/* 0:56 */waypoints[133].type = "stand"; +/* 0:56 */waypoints[133].children[0] = 135; +/* 0:56 */waypoints[133].children[1] = 132; +/* 0:56 */waypoints[133].children[2] = 131; +/* 0:56 */waypoints[134] = spawnstruct(); +/* 0:56 */waypoints[134].origin = (-2189.43, 796.395, 248.125); +/* 0:56 */waypoints[134].type = "stand"; +/* 0:56 */waypoints[134].children[0] = 135; +/* 0:56 */waypoints[134].children[1] = 132; +/* 0:56 */waypoints[135] = spawnstruct(); +/* 0:56 */waypoints[135].origin = (-2144.1, 602.903, 242.447); +/* 0:56 */waypoints[135].type = "stand"; +/* 0:56 */waypoints[135].children[0] = 136; +/* 0:56 */waypoints[135].children[1] = 134; +/* 0:56 */waypoints[135].children[2] = 133; +/* 0:56 */waypoints[136] = spawnstruct(); +/* 0:56 */waypoints[136].origin = (-2142.86, 301.457, 185.125); +/* 0:56 */waypoints[136].type = "stand"; +/* 0:56 */waypoints[136].children[0] = 137; +/* 0:56 */waypoints[136].children[1] = 138; +/* 0:56 */waypoints[136].children[2] = 135; +/* 0:56 */waypoints[136].children[3] = 142; +/* 0:56 */waypoints[137] = spawnstruct(); +/* 0:56 */waypoints[137].origin = (-1931.64, 436.764, 185.409); +/* 0:56 */waypoints[137].type = "stand"; +/* 0:56 */waypoints[137].children[0] = 138; +/* 0:56 */waypoints[137].children[1] = 136; +/* 0:56 */waypoints[138] = spawnstruct(); +/* 0:56 */waypoints[138].origin = (-1777.84, 300.705, 194.125); +/* 0:56 */waypoints[138].type = "stand"; +/* 0:56 */waypoints[138].children[0] = 139; +/* 0:56 */waypoints[138].children[1] = 137; +/* 0:56 */waypoints[138].children[2] = 136; +/* 0:56 */waypoints[139] = spawnstruct(); +/* 0:56 */waypoints[139].origin = (-1638.23, 288.388, 194.125); +/* 0:56 */waypoints[139].type = "stand"; +/* 0:56 */waypoints[139].children[0] = 141; +/* 0:56 */waypoints[139].children[1] = 138; +/* 0:56 */waypoints[139].children[2] = 180; +/* 0:56 */waypoints[140] = spawnstruct(); +/* 0:56 */waypoints[140].origin = (-1560.55, 77.1267, 190.125); +/* 0:56 */waypoints[140].type = "stand"; +/* 0:56 */waypoints[140].children[0] = 141; +/* 0:56 */waypoints[140].children[1] = 180; +/* 0:56 */waypoints[141] = spawnstruct(); +/* 0:56 */waypoints[141].origin = (-1666.65, -84.0683, 188.125); +/* 0:56 */waypoints[141].type = "stand"; +/* 0:56 */waypoints[141].children[0] = 169; +/* 0:56 */waypoints[141].children[1] = 140; +/* 0:56 */waypoints[141].children[2] = 139; +/* 0:56 */waypoints[142] = spawnstruct(); +/* 0:56 */waypoints[142].origin = (-2125.98, 13.5769, 185.972); +/* 0:56 */waypoints[142].type = "stand"; +/* 0:56 */waypoints[142].children[0] = 136; +/* 0:56 */waypoints[142].children[1] = 169; +/* 0:56 */waypoints[143] = spawnstruct(); +/* 0:56 */waypoints[143].origin = (-1912.02, -224.193, 127.814); +/* 0:56 */waypoints[143].type = "stand"; +/* 0:56 */waypoints[143].children[0] = 147; +/* 0:56 */waypoints[143].children[1] = 169; +/* 0:56 */waypoints[144] = spawnstruct(); +/* 0:56 */waypoints[144].origin = (-1837.79, -239.91, 123.856); +/* 0:56 */waypoints[144].type = "stand"; +/* 0:56 */waypoints[144].children[0] = 145; +/* 0:56 */waypoints[144].children[1] = 169; +/* 0:56 */waypoints[145] = spawnstruct(); +/* 0:56 */waypoints[145].origin = (-1899.77, -543.913, 126.821); +/* 0:56 */waypoints[145].type = "stand"; +/* 0:56 */waypoints[145].children[0] = 144; +/* 0:56 */waypoints[145].children[1] = 146; +/* 0:56 */waypoints[146] = spawnstruct(); +/* 0:56 */waypoints[146].origin = (-1899.67, -686.663, 129.625); +/* 0:56 */waypoints[146].type = "stand"; +/* 0:56 */waypoints[146].children[0] = 148; +/* 0:56 */waypoints[146].children[1] = 145; +/* 0:56 */waypoints[147] = spawnstruct(); +/* 0:56 */waypoints[147].origin = (-1634.64, -326.44, 80.4669); +/* 0:56 */waypoints[147].type = "stand"; +/* 0:56 */waypoints[147].children[0] = 143; +/* 0:56 */waypoints[147].children[1] = 87; +/* 0:56 */waypoints[148] = spawnstruct(); +/* 0:56 */waypoints[148].origin = (-1886.5, -891.819, 129.625); +/* 0:56 */waypoints[148].type = "stand"; +/* 0:56 */waypoints[148].children[0] = 149; +/* 0:56 */waypoints[148].children[1] = 146; +/* 0:56 */waypoints[149] = spawnstruct(); +/* 0:56 */waypoints[149].origin = (-1599.34, -890.485, 94.625); +/* 0:56 */waypoints[149].type = "stand"; +/* 0:56 */waypoints[149].children[0] = 150; +/* 0:56 */waypoints[149].children[1] = 148; +/* 0:56 */waypoints[150] = spawnstruct(); +/* 0:56 */waypoints[150].origin = (-1609.65, -685.987, 52.625); +/* 0:56 */waypoints[150].type = "stand"; +/* 0:56 */waypoints[150].children[0] = 151; +/* 0:56 */waypoints[150].children[1] = 149; +/* 0:56 */waypoints[151] = spawnstruct(); +/* 0:56 */waypoints[151].origin = (-1463.75, -685.973, 52.625); +/* 0:56 */waypoints[151].type = "stand"; +/* 0:56 */waypoints[151].children[0] = 168; +/* 0:56 */waypoints[151].children[1] = 150; +/* 0:56 */waypoints[151].children[2] = 152; +/* 0:56 */waypoints[152] = spawnstruct(); +/* 0:56 */waypoints[152].origin = (-1471.89, -825.504, 52.625); +/* 0:56 */waypoints[152].type = "stand"; +/* 0:56 */waypoints[152].children[0] = 153; +/* 0:56 */waypoints[152].children[1] = 151; +/* 0:56 */waypoints[153] = spawnstruct(); +/* 0:56 */waypoints[153].origin = (-1475.35, -1049.96, 52.625); +/* 0:56 */waypoints[153].type = "stand"; +/* 0:56 */waypoints[153].children[0] = 152; +/* 0:56 */waypoints[154] = spawnstruct(); +/* 0:56 */waypoints[154].origin = (-1275.95, -872.374, 54.625); +/* 0:56 */waypoints[154].type = "stand"; +/* 0:56 */waypoints[154].children[0] = 155; +/* 0:56 */waypoints[154].children[1] = 168; +/* 0:56 */waypoints[155] = spawnstruct(); +/* 0:56 */waypoints[155].origin = (-1146.58, -820.559, 47.7326); +/* 0:56 */waypoints[155].type = "stand"; +/* 0:56 */waypoints[155].children[0] = 167; +/* 0:56 */waypoints[155].children[1] = 156; +/* 0:56 */waypoints[155].children[2] = 154; +/* 0:56 */waypoints[156] = spawnstruct(); +/* 0:56 */waypoints[156].origin = (-1011.81, -1047.35, 46.1855); +/* 0:56 */waypoints[156].type = "stand"; +/* 0:56 */waypoints[156].children[0] = 155; +/* 0:56 */waypoints[156].children[1] = 157; +/* 0:56 */waypoints[156].children[2] = 89; +/* 0:56 */waypoints[157] = spawnstruct(); +/* 0:56 */waypoints[157].origin = (-785.569, -1030.59, 48.7415); +/* 0:56 */waypoints[157].type = "stand"; +/* 0:56 */waypoints[157].children[0] = 90; +/* 0:56 */waypoints[157].children[1] = 156; +/* 0:56 */waypoints[158] = spawnstruct(); +/* 0:56 */waypoints[158].origin = (-900.028, 163.255, 54.7039); +/* 0:56 */waypoints[158].type = "stand"; +/* 0:56 */waypoints[158].children[0] = 108; +/* 0:56 */waypoints[158].children[1] = 159; +/* 0:56 */waypoints[159] = spawnstruct(); +/* 0:56 */waypoints[159].origin = (-885.784, 378.669, 72.5626); +/* 0:56 */waypoints[159].type = "stand"; +/* 0:56 */waypoints[159].children[0] = 105; +/* 0:56 */waypoints[159].children[1] = 158; +/* 0:56 */waypoints[160] = spawnstruct(); +/* 0:56 */waypoints[160].origin = (-1024.02, 259.722, 80.8934); +/* 0:56 */waypoints[160].type = "stand"; +/* 0:56 */waypoints[160].children[0] = 106; +/* 0:56 */waypoints[160].children[1] = 108; +/* 0:56 */waypoints[161] = spawnstruct(); +/* 0:56 */waypoints[161].origin = (734.745, 1515.62, -21.875); +/* 0:56 */waypoints[161].type = "stand"; +/* 0:56 */waypoints[161].children[0] = 33; +/* 0:56 */waypoints[161].children[1] = 30; +/* 0:56 */waypoints[162] = spawnstruct(); +/* 0:56 */waypoints[162].origin = (849.604, 1727.51, -19.0474); +/* 0:56 */waypoints[162].type = "stand"; +/* 0:56 */waypoints[162].children[0] = 30; +/* 0:56 */waypoints[162].children[1] = 47; +/* 0:56 */waypoints[162].children[2] = 46; +/* 0:56 */waypoints[162].children[3] = 183; +/* 0:56 */waypoints[162].children[4] = 184; +/* 0:56 */waypoints[163] = spawnstruct(); +/* 0:56 */waypoints[163].origin = (-890.456, 1202.74, 172.811); +/* 0:56 */waypoints[163].type = "stand"; +/* 0:56 */waypoints[163].children[0] = 73; +/* 0:56 */waypoints[163].children[1] = 75; +/* 0:56 */waypoints[163].children[2] = 65; +/* 0:56 */waypoints[164] = spawnstruct(); +/* 0:56 */waypoints[164].origin = (-1183.34, 852.299, 121.182); +/* 0:56 */waypoints[164].type = "stand"; +/* 0:56 */waypoints[164].children[0] = 78; +/* 0:56 */waypoints[164].children[1] = 79; +/* 0:56 */waypoints[164].children[2] = 81; +/* 0:56 */waypoints[165] = spawnstruct(); +/* 0:56 */waypoints[165].origin = (-1264.8, -149.897, 58.9351); +/* 0:56 */waypoints[165].type = "stand"; +/* 0:56 */waypoints[165].children[0] = 87; +/* 0:56 */waypoints[165].children[1] = 86; +/* 0:56 */waypoints[165].children[2] = 85; +/* 0:56 */waypoints[165].children[3] = 88; +/* 0:56 */waypoints[165].children[4] = 166; +/* 0:56 */waypoints[165].children[5] = 210; +/* 0:56 */waypoints[166] = spawnstruct(); +/* 0:56 */waypoints[166].origin = (-1288.84, -470.011, 51.0874); +/* 0:56 */waypoints[166].type = "stand"; +/* 0:56 */waypoints[166].children[0] = 165; +/* 0:56 */waypoints[166].children[1] = 167; +/* 0:56 */waypoints[167] = spawnstruct(); +/* 0:56 */waypoints[167].origin = (-1192.4, -682.031, 49.8982); +/* 0:56 */waypoints[167].type = "stand"; +/* 0:56 */waypoints[167].children[0] = 166; +/* 0:56 */waypoints[167].children[1] = 155; +/* 0:56 */waypoints[167].children[2] = 179; +/* 0:56 */waypoints[168] = spawnstruct(); +/* 0:56 */waypoints[168].origin = (-1361.82, -706.339, 52.625); +/* 0:56 */waypoints[168].type = "stand"; +/* 0:56 */waypoints[168].children[0] = 154; +/* 0:56 */waypoints[168].children[1] = 151; +/* 0:56 */waypoints[169] = spawnstruct(); +/* 0:56 */waypoints[169].origin = (-1861.71, -41.8006, 185.584); +/* 0:56 */waypoints[169].type = "stand"; +/* 0:56 */waypoints[169].children[0] = 144; +/* 0:56 */waypoints[169].children[1] = 143; +/* 0:56 */waypoints[169].children[2] = 141; +/* 0:56 */waypoints[169].children[3] = 142; +/* 0:56 */waypoints[170] = spawnstruct(); +/* 0:56 */waypoints[170].origin = (139.905, 1986, -23.875); +/* 0:56 */waypoints[170].type = "stand"; +/* 0:56 */waypoints[170].children[0] = 56; +/* 0:56 */waypoints[170].children[1] = 54; +/* 0:56 */waypoints[171] = spawnstruct(); +/* 0:56 */waypoints[171].origin = (421.15, 1216.51, -31.6999); +/* 0:56 */waypoints[171].type = "stand"; +/* 0:56 */waypoints[171].children[0] = 44; +/* 0:56 */waypoints[171].children[1] = 39; +/* 0:56 */waypoints[171].children[2] = 40; +/* 0:56 */waypoints[172] = spawnstruct(); +/* 0:56 */waypoints[172].origin = (147.337, 235.014, -5.68532); +/* 0:56 */waypoints[172].type = "stand"; +/* 0:56 */waypoints[172].children[0] = 42; +/* 0:56 */waypoints[172].children[1] = 98; +/* 0:56 */waypoints[173] = spawnstruct(); +/* 0:56 */waypoints[173].origin = (481.696, 397.045, -1.75769); +/* 0:56 */waypoints[173].type = "stand"; +/* 0:56 */waypoints[173].children[0] = 174; +/* 0:56 */waypoints[173].children[1] = 38; +/* 0:56 */waypoints[173].children[2] = 41; +/* 0:56 */waypoints[174] = spawnstruct(); +/* 0:56 */waypoints[174].origin = (364.132, 127.523, -1.77519); +/* 0:56 */waypoints[174].type = "stand"; +/* 0:56 */waypoints[174].children[0] = 173; +/* 0:56 */waypoints[174].children[1] = 99; +/* 0:56 */waypoints[175] = spawnstruct(); +/* 0:56 */waypoints[175].origin = (267.607, -106.827, -0.455149); +/* 0:56 */waypoints[175].type = "stand"; +/* 0:56 */waypoints[175].children[0] = 98; +/* 0:56 */waypoints[175].children[1] = 97; +/* 0:56 */waypoints[175].children[2] = 208; +/* 0:56 */waypoints[176] = spawnstruct(); +/* 0:56 */waypoints[176].origin = (362.187, -910.972, 0.124999); +/* 0:56 */waypoints[176].type = "stand"; +/* 0:56 */waypoints[176].children[0] = 95; +/* 0:56 */waypoints[176].children[1] = 94; +/* 0:56 */waypoints[176].children[2] = 178; +/* 0:56 */waypoints[176].children[3] = 92; +/* 0:56 */waypoints[177] = spawnstruct(); +/* 0:56 */waypoints[177].origin = (114.824, -1023.94, 4.51506); +/* 0:56 */waypoints[177].type = "stand"; +/* 0:56 */waypoints[177].children[0] = 178; +/* 0:56 */waypoints[177].children[1] = 93; +/* 0:56 */waypoints[178] = spawnstruct(); +/* 0:56 */waypoints[178].origin = (352.475, -1310.31, 5.79433); +/* 0:56 */waypoints[178].type = "stand"; +/* 0:56 */waypoints[178].children[0] = 177; +/* 0:56 */waypoints[178].children[1] = 176; +/* 0:56 */waypoints[179] = spawnstruct(); +/* 0:56 */waypoints[179].origin = (-1029.91, -556.43, 50.4056); +/* 0:56 */waypoints[179].type = "stand"; +/* 0:56 */waypoints[179].children[0] = 88; +/* 0:56 */waypoints[179].children[1] = 89; +/* 0:56 */waypoints[179].children[2] = 167; +/* 0:56 */waypoints[180] = spawnstruct(); +/* 0:56 */waypoints[180].origin = (-1512.5, 201.434, 192.125); +/* 0:56 */waypoints[180].type = "stand"; +/* 0:56 */waypoints[180].children[0] = 139; +/* 0:56 */waypoints[180].children[1] = 140; +/* 0:56 */waypoints[180].children[2] = 181; +/* 0:56 */waypoints[181] = spawnstruct(); +/* 0:56 */waypoints[181].origin = (-1395.72, 217.158, 109.429); +/* 0:56 */waypoints[181].type = "stand"; +/* 0:56 */waypoints[181].children[0] = 180; +/* 0:56 */waypoints[181].children[1] = 86; +/* 0:56 */waypoints[181].children[2] = 84; +/* 0:56 */waypoints[182] = spawnstruct(); +/* 0:56 */waypoints[182].origin = (-1066.9, 1232.34, 182.056); +/* 0:56 */waypoints[182].type = "stand"; +/* 0:56 */waypoints[182].children[0] = 74; +/* 0:56 */waypoints[182].children[1] = 73; +/* 0:56 */waypoints[182].children[2] = 65; +/* 0:56 */waypoints[183] = spawnstruct(); +/* 0:56 */waypoints[183].origin = (1107.07, 1714.41, -11.6449); +/* 0:56 */waypoints[183].type = "stand"; +/* 0:56 */waypoints[183].children[0] = 162; +/* 0:56 */waypoints[183].children[1] = 185; +/* 0:56 */waypoints[184] = spawnstruct(); +/* 0:56 */waypoints[184].origin = (1237.51, 1861.97, -3.32589); +/* 0:56 */waypoints[184].type = "stand"; +/* 0:56 */waypoints[184].children[0] = 162; +/* 0:56 */waypoints[184].children[1] = 186; +/* 0:56 */waypoints[185] = spawnstruct(); +/* 0:56 */waypoints[185].origin = (1414.3, 1667.56, -15.3129); +/* 0:56 */waypoints[185].type = "stand"; +/* 0:56 */waypoints[185].children[0] = 183; +/* 0:56 */waypoints[185].children[1] = 188; +/* 0:56 */waypoints[185].children[2] = 186; +/* 0:56 */waypoints[186] = spawnstruct(); +/* 0:56 */waypoints[186].origin = (1596.54, 1826, -11.7663); +/* 0:56 */waypoints[186].type = "stand"; +/* 0:56 */waypoints[186].children[0] = 184; +/* 0:56 */waypoints[186].children[1] = 187; +/* 0:56 */waypoints[186].children[2] = 185; +/* 0:56 */waypoints[187] = spawnstruct(); +/* 0:56 */waypoints[187].origin = (1710.76, 1693, -10.8852); +/* 0:56 */waypoints[187].type = "stand"; +/* 0:56 */waypoints[187].children[0] = 186; +/* 0:56 */waypoints[187].children[1] = 188; +/* 0:56 */waypoints[188] = spawnstruct(); +/* 0:56 */waypoints[188].origin = (1593.27, 1361.94, -15.875); +/* 0:56 */waypoints[188].type = "stand"; +/* 0:56 */waypoints[188].children[0] = 187; +/* 0:56 */waypoints[188].children[1] = 189; +/* 0:56 */waypoints[188].children[2] = 190; +/* 0:56 */waypoints[188].children[3] = 192; +/* 0:56 */waypoints[188].children[4] = 191; +/* 0:56 */waypoints[188].children[5] = 185; +/* 0:56 */waypoints[189] = spawnstruct(); +/* 0:56 */waypoints[189].origin = (1694.75, 1354.68, -15.875); +/* 0:56 */waypoints[189].type = "stand"; +/* 0:56 */waypoints[189].children[0] = 188; +/* 0:56 */waypoints[189].children[1] = 192; +/* 0:56 */waypoints[190] = spawnstruct(); +/* 0:56 */waypoints[190].origin = (1450.79, 1329.58, -15.875); +/* 0:56 */waypoints[190].type = "stand"; +/* 0:56 */waypoints[190].children[0] = 188; +/* 0:56 */waypoints[190].children[1] = 191; +/* 0:56 */waypoints[191] = spawnstruct(); +/* 0:56 */waypoints[191].origin = (1507.72, 1158.98, -15.875); +/* 0:56 */waypoints[191].type = "stand"; +/* 0:56 */waypoints[191].children[0] = 190; +/* 0:56 */waypoints[191].children[1] = 192; +/* 0:56 */waypoints[191].children[2] = 188; +/* 0:56 */waypoints[191].children[3] = 18; +/* 0:56 */waypoints[192] = spawnstruct(); +/* 0:56 */waypoints[192].origin = (1646.55, 1113.69, -15.875); +/* 0:56 */waypoints[192].type = "stand"; +/* 0:56 */waypoints[192].children[0] = 191; +/* 0:56 */waypoints[192].children[1] = 189; +/* 0:56 */waypoints[192].children[2] = 188; +/* 0:56 */waypoints[192].children[3] = 193; +/* 0:56 */waypoints[193] = spawnstruct(); +/* 0:56 */waypoints[193].origin = (1782.81, 913.444, -17.3225); +/* 0:56 */waypoints[193].type = "stand"; +/* 0:56 */waypoints[193].children[0] = 194; +/* 0:56 */waypoints[193].children[1] = 24; +/* 0:56 */waypoints[193].children[2] = 192; +/* 0:56 */waypoints[194] = spawnstruct(); +/* 0:56 */waypoints[194].origin = (1402.58, 919.722, -18.2091); +/* 0:56 */waypoints[194].type = "stand"; +/* 0:56 */waypoints[194].children[0] = 202; +/* 0:56 */waypoints[194].children[1] = 18; +/* 0:56 */waypoints[194].children[2] = 199; +/* 0:56 */waypoints[194].children[3] = 193; +/* 0:56 */waypoints[195] = spawnstruct(); +/* 0:56 */waypoints[195].origin = (1099.94, 676.596, -15.875); +/* 0:56 */waypoints[195].type = "stand"; +/* 0:56 */waypoints[195].children[0] = 201; +/* 0:56 */waypoints[195].children[1] = 196; +/* 0:56 */waypoints[196] = spawnstruct(); +/* 0:56 */waypoints[196].origin = (1020.48, 560.938, -16.3828); +/* 0:56 */waypoints[196].type = "stand"; +/* 0:56 */waypoints[196].children[0] = 195; +/* 0:56 */waypoints[196].children[1] = 197; +/* 0:56 */waypoints[197] = spawnstruct(); +/* 0:56 */waypoints[197].origin = (1132.68, 423.139, -17.693); +/* 0:56 */waypoints[197].type = "stand"; +/* 0:56 */waypoints[197].children[0] = 196; +/* 0:56 */waypoints[197].children[1] = 14; +/* 0:56 */waypoints[198] = spawnstruct(); +/* 0:56 */waypoints[198].origin = (1216.93, 512.599, -18.8148); +/* 0:56 */waypoints[198].type = "stand"; +/* 0:56 */waypoints[198].children[0] = 14; +/* 0:56 */waypoints[198].children[1] = 202; +/* 0:56 */waypoints[198].children[2] = 203; +/* 0:56 */waypoints[199] = spawnstruct(); +/* 0:56 */waypoints[199].origin = (1085.75, 924.762, -15.875); +/* 0:56 */waypoints[199].type = "stand"; +/* 0:56 */waypoints[199].children[0] = 200; +/* 0:56 */waypoints[199].children[1] = 201; +/* 0:56 */waypoints[199].children[2] = 194; +/* 0:56 */waypoints[200] = spawnstruct(); +/* 0:56 */waypoints[200].origin = (858.924, 935.964, -15.8829); +/* 0:56 */waypoints[200].type = "stand"; +/* 0:56 */waypoints[200].children[0] = 36; +/* 0:56 */waypoints[200].children[1] = 199; +/* 0:56 */waypoints[201] = spawnstruct(); +/* 0:56 */waypoints[201].origin = (1137.79, 834.948, -15.875); +/* 0:56 */waypoints[201].type = "stand"; +/* 0:56 */waypoints[201].children[0] = 199; +/* 0:56 */waypoints[201].children[1] = 195; +/* 0:56 */waypoints[201].children[2] = 202; +/* 0:56 */waypoints[202] = spawnstruct(); +/* 0:56 */waypoints[202].origin = (1191.33, 711.024, -15.875); +/* 0:56 */waypoints[202].type = "stand"; +/* 0:56 */waypoints[202].children[0] = 201; +/* 0:56 */waypoints[202].children[1] = 198; +/* 0:56 */waypoints[202].children[2] = 194; +/* 0:56 */waypoints[203] = spawnstruct(); +/* 0:56 */waypoints[203].origin = (1544.34, 470.265, -15.4676); +/* 0:56 */waypoints[203].type = "stand"; +/* 0:56 */waypoints[203].children[0] = 17; +/* 0:56 */waypoints[203].children[1] = 22; +/* 0:56 */waypoints[203].children[2] = 198; +/* 0:56 */waypoints[204] = spawnstruct(); +/* 0:56 */waypoints[204].origin = (1080.41, -49.9459, -15.4027); +/* 0:56 */waypoints[204].type = "stand"; +/* 0:56 */waypoints[204].children[0] = 13; +/* 0:56 */waypoints[204].children[1] = 10; +/* 0:56 */waypoints[204].children[2] = 11; +/* 0:56 */waypoints[205] = spawnstruct(); +/* 0:56 */waypoints[205].origin = (508.406, -583.439, 9.43097); +/* 0:56 */waypoints[205].type = "stand"; +/* 0:56 */waypoints[205].children[0] = 95; +/* 0:56 */waypoints[205].children[1] = 96; +/* 0:56 */waypoints[205].children[2] = 206; +/* 0:56 */waypoints[205].children[3] = 2; +/* 0:56 */waypoints[205].children[4] = 208; +/* 0:56 */waypoints[206] = spawnstruct(); +/* 0:56 */waypoints[206].origin = (802.691, -645.524, -11.1701); +/* 0:56 */waypoints[206].type = "stand"; +/* 0:56 */waypoints[206].children[0] = 205; +/* 0:56 */waypoints[206].children[1] = 2; +/* 0:56 */waypoints[207] = spawnstruct(); +/* 0:56 */waypoints[207].origin = (788.167, -489.855, -10.9774); +/* 0:56 */waypoints[207].type = "stand"; +/* 0:56 */waypoints[207].children[0] = 2; +/* 0:56 */waypoints[207].children[1] = 95; +/* 0:56 */waypoints[208] = spawnstruct(); +/* 0:56 */waypoints[208].origin = (492.677, -395.982, 13.125); +/* 0:56 */waypoints[208].type = "stand"; +/* 0:56 */waypoints[208].children[0] = 205; +/* 0:56 */waypoints[208].children[1] = 175; +/* 0:56 */waypoints[209] = spawnstruct(); +/* 0:56 */waypoints[209].origin = (312.529, -489.802, 4.97186); +/* 0:56 */waypoints[209].type = "stand"; +/* 0:56 */waypoints[209].children[0] = 97; +/* 0:56 */waypoints[209].children[1] = 94; +/* 0:56 */waypoints[210] = spawnstruct(); +/* 0:56 */waypoints[210].origin = (-1020.97, -111.173, 65.7073); +/* 0:56 */waypoints[210].type = "climb"; +/* 0:56 */waypoints[210].children[0] = 108; +/* 0:56 */waypoints[210].children[1] = 165; +/* 0:56 */waypoints[210].angles = (7.37732, -157.244, 0); +/* 0:56 */waypoints[211] = spawnstruct(); +/* 0:56 */waypoints[211].origin = (-1120.33, 353.708, 76.715); +/* 0:56 */waypoints[211].type = "stand"; +/* 0:56 */waypoints[211].children[0] = 86; +/* 0:56 */waypoints[211].children[1] = 109; +/* 0:56 */return waypoints; +} \ No newline at end of file diff --git a/raw/maps/mp/bots/waypoints/rust.gsc b/raw/maps/mp/bots/waypoints/rust.gsc new file mode 100644 index 0000000..eeed2e4 --- /dev/null +++ b/raw/maps/mp/bots/waypoints/rust.gsc @@ -0,0 +1,1210 @@ +Rust() +{ +/* 1:40 */waypoints = []; +/* 1:40 */waypoints[0] = spawnstruct(); +/* 1:40 */waypoints[0].origin = (1583, 1654, -223); +/* 1:40 */waypoints[0].type = "stand"; +/* 1:40 */waypoints[0].childCount = 5; +/* 1:40 */waypoints[0].children[0] = 1; +/* 1:40 */waypoints[0].children[1] = 81; +/* 1:40 */waypoints[0].children[2] = 82; +/* 1:40 */waypoints[0].children[3] = 83; +/* 1:40 */waypoints[0].children[4] = 147; +/* 1:40 */waypoints[1] = spawnstruct(); +/* 1:40 */waypoints[1].origin = (1598, 1358, -228); +/* 1:40 */waypoints[1].type = "stand"; +/* 1:40 */waypoints[1].childCount = 3; +/* 1:40 */waypoints[1].children[0] = 0; +/* 1:40 */waypoints[1].children[1] = 2; +/* 1:40 */waypoints[1].children[2] = 81; +/* 1:40 */waypoints[2] = spawnstruct(); +/* 1:40 */waypoints[2].origin = (1600, 1089, -224); +/* 1:40 */waypoints[2].type = "stand"; +/* 1:40 */waypoints[2].childCount = 3; +/* 1:40 */waypoints[2].children[0] = 1; +/* 1:40 */waypoints[2].children[1] = 3; +/* 1:40 */waypoints[2].children[2] = 134; +/* 1:40 */waypoints[3] = spawnstruct(); +/* 1:40 */waypoints[3].origin = (1504, 1101, -234); +/* 1:40 */waypoints[3].type = "stand"; +/* 1:40 */waypoints[3].childCount = 4; +/* 1:40 */waypoints[3].children[0] = 2; +/* 1:40 */waypoints[3].children[1] = 74; +/* 1:40 */waypoints[3].children[2] = 162; +/* 1:40 */waypoints[3].children[3] = 81; +/* 1:40 */waypoints[4] = spawnstruct(); +/* 1:40 */waypoints[4].origin = (1510, 710, -233); +/* 1:40 */waypoints[4].type = "stand"; +/* 1:40 */waypoints[4].childCount = 3; +/* 1:40 */waypoints[4].children[0] = 5; +/* 1:40 */waypoints[4].children[1] = 71; +/* 1:40 */waypoints[4].children[2] = 162; +/* 1:40 */waypoints[5] = spawnstruct(); +/* 1:40 */waypoints[5].origin = (1601, 704, -225); +/* 1:40 */waypoints[5].type = "stand"; +/* 1:40 */waypoints[5].childCount = 3; +/* 1:40 */waypoints[5].children[0] = 4; +/* 1:40 */waypoints[5].children[1] = 133; +/* 1:40 */waypoints[5].children[2] = 157; +/* 1:40 */waypoints[6] = spawnstruct(); +/* 1:40 */waypoints[6].origin = (1611, -183, -228); +/* 1:40 */waypoints[6].type = "stand"; +/* 1:40 */waypoints[6].childCount = 2; +/* 1:40 */waypoints[6].children[0] = 7; +/* 1:40 */waypoints[6].children[1] = 163; +/* 1:40 */waypoints[7] = spawnstruct(); +/* 1:40 */waypoints[7].origin = (1310, -169, -232); +/* 1:40 */waypoints[7].type = "stand"; +/* 1:40 */waypoints[7].childCount = 4; +/* 1:40 */waypoints[7].children[0] = 6; +/* 1:40 */waypoints[7].children[1] = 8; +/* 1:40 */waypoints[7].children[2] = 128; +/* 1:40 */waypoints[7].children[3] = 160; +/* 1:40 */waypoints[8] = spawnstruct(); +/* 1:40 */waypoints[8].origin = (1034, -169, -233); +/* 1:40 */waypoints[8].type = "stand"; +/* 1:40 */waypoints[8].childCount = 2; +/* 1:40 */waypoints[8].children[0] = 7; +/* 1:40 */waypoints[8].children[1] = 9; +/* 1:40 */waypoints[9] = spawnstruct(); +/* 1:40 */waypoints[9].origin = (1054, -25, -245); +/* 1:40 */waypoints[9].type = "stand"; +/* 1:40 */waypoints[9].childCount = 3; +/* 1:40 */waypoints[9].children[0] = 8; +/* 1:40 */waypoints[9].children[1] = 10; +/* 1:40 */waypoints[9].children[2] = 111; +/* 1:40 */waypoints[10] = spawnstruct(); +/* 1:40 */waypoints[10].origin = (831, -18, -241); +/* 1:40 */waypoints[10].type = "stand"; +/* 1:40 */waypoints[10].childCount = 4; +/* 1:40 */waypoints[10].children[0] = 9; +/* 1:40 */waypoints[10].children[1] = 11; +/* 1:40 */waypoints[10].children[2] = 41; +/* 1:40 */waypoints[10].children[3] = 142; +/* 1:40 */waypoints[11] = spawnstruct(); +/* 1:40 */waypoints[11].origin = (589, -19, -221); +/* 1:40 */waypoints[11].type = "stand"; +/* 1:40 */waypoints[11].childCount = 3; +/* 1:40 */waypoints[11].children[0] = 10; +/* 1:40 */waypoints[11].children[1] = 12; +/* 1:40 */waypoints[11].children[2] = 131; +/* 1:40 */waypoints[12] = spawnstruct(); +/* 1:40 */waypoints[12].origin = (571, -173, -228); +/* 1:40 */waypoints[12].type = "stand"; +/* 1:40 */waypoints[12].childCount = 2; +/* 1:40 */waypoints[12].children[0] = 13; +/* 1:40 */waypoints[12].children[1] = 11; +/* 1:40 */waypoints[13] = spawnstruct(); +/* 1:40 */waypoints[13].origin = (489, -174, -231); +/* 1:40 */waypoints[13].type = "stand"; +/* 1:40 */waypoints[13].childCount = 3; +/* 1:40 */waypoints[13].children[0] = 12; +/* 1:40 */waypoints[13].children[1] = 14; +/* 1:40 */waypoints[13].children[2] = 40; +/* 1:40 */waypoints[14] = spawnstruct(); +/* 1:40 */waypoints[14].origin = (342, -191, -236); +/* 1:40 */waypoints[14].type = "stand"; +/* 1:40 */waypoints[14].childCount = 3; +/* 1:40 */waypoints[14].children[0] = 13; +/* 1:40 */waypoints[14].children[1] = 15; +/* 1:40 */waypoints[14].children[2] = 42; +/* 1:40 */waypoints[15] = spawnstruct(); +/* 1:40 */waypoints[15].origin = (83, -208, -244); +/* 1:40 */waypoints[15].type = "stand"; +/* 1:40 */waypoints[15].childCount = 3; +/* 1:40 */waypoints[15].children[0] = 14; +/* 1:40 */waypoints[15].children[1] = 16; +/* 1:40 */waypoints[15].children[2] = 43; +/* 1:40 */waypoints[16] = spawnstruct(); +/* 1:40 */waypoints[16].origin = (-159, -199, -236); +/* 1:40 */waypoints[16].type = "stand"; +/* 1:40 */waypoints[16].childCount = 4; +/* 1:40 */waypoints[16].children[0] = 15; +/* 1:40 */waypoints[16].children[1] = 17; +/* 1:40 */waypoints[16].children[2] = 130; +/* 1:40 */waypoints[16].children[3] = 161; +/* 1:40 */waypoints[17] = spawnstruct(); +/* 1:40 */waypoints[17].origin = (-433, -193, -216); +/* 1:40 */waypoints[17].type = "stand"; +/* 1:40 */waypoints[17].childCount = 2; +/* 1:40 */waypoints[17].children[0] = 16; +/* 1:40 */waypoints[17].children[1] = 18; +/* 1:40 */waypoints[18] = spawnstruct(); +/* 1:40 */waypoints[18].origin = (-399, 272, -247); +/* 1:40 */waypoints[18].type = "stand"; +/* 1:40 */waypoints[18].childCount = 3; +/* 1:40 */waypoints[18].children[0] = 17; +/* 1:40 */waypoints[18].children[1] = 19; +/* 1:40 */waypoints[18].children[2] = 46; +/* 1:40 */waypoints[19] = spawnstruct(); +/* 1:40 */waypoints[19].origin = (-426, 676, -236); +/* 1:40 */waypoints[19].type = "stand"; +/* 1:40 */waypoints[19].childCount = 3; +/* 1:40 */waypoints[19].children[0] = 18; +/* 1:40 */waypoints[19].children[1] = 20; +/* 1:40 */waypoints[19].children[2] = 48; +/* 1:40 */waypoints[20] = spawnstruct(); +/* 1:40 */waypoints[20].origin = (-424, 1099, -234); +/* 1:40 */waypoints[20].type = "stand"; +/* 1:40 */waypoints[20].childCount = 4; +/* 1:40 */waypoints[20].children[0] = 19; +/* 1:40 */waypoints[20].children[1] = 21; +/* 1:40 */waypoints[20].children[2] = 95; +/* 1:40 */waypoints[20].children[3] = 103; +/* 1:40 */waypoints[21] = spawnstruct(); +/* 1:40 */waypoints[21].origin = (-432, 1500, -234); +/* 1:40 */waypoints[21].type = "stand"; +/* 1:40 */waypoints[21].childCount = 3; +/* 1:40 */waypoints[21].children[0] = 20; +/* 1:40 */waypoints[21].children[1] = 92; +/* 1:40 */waypoints[21].children[2] = 156; +/* 1:40 */waypoints[22] = spawnstruct(); +/* 1:40 */waypoints[22].origin = (-33, 1420, -127); +/* 1:40 */waypoints[22].type = "stand"; +/* 1:40 */waypoints[22].childCount = 2; +/* 1:40 */waypoints[22].children[0] = 23; +/* 1:40 */waypoints[22].children[1] = 153; +/* 1:40 */waypoints[23] = spawnstruct(); +/* 1:40 */waypoints[23].origin = (51, 1524, -126); +/* 1:40 */waypoints[23].type = "stand"; +/* 1:40 */waypoints[23].childCount = 2; +/* 1:40 */waypoints[23].children[0] = 22; +/* 1:40 */waypoints[23].children[1] = 24; +/* 1:40 */waypoints[24] = spawnstruct(); +/* 1:40 */waypoints[24].origin = (-62, 1628, -123); +/* 1:40 */waypoints[24].type = "stand"; +/* 1:40 */waypoints[24].childCount = 3; +/* 1:40 */waypoints[24].children[0] = 23; +/* 1:40 */waypoints[24].children[1] = 25; +/* 1:40 */waypoints[24].children[2] = 153; +/* 1:40 */waypoints[25] = spawnstruct(); +/* 1:40 */waypoints[25].origin = (-83, 1803, -47); +/* 1:40 */waypoints[25].type = "stand"; +/* 1:40 */waypoints[25].childCount = 3; +/* 1:40 */waypoints[25].children[0] = 24; +/* 1:40 */waypoints[25].children[1] = 26; +/* 1:40 */waypoints[25].children[2] = 121; +/* 1:40 */waypoints[26] = spawnstruct(); +/* 1:40 */waypoints[26].origin = (153, 1785, -47); +/* 1:40 */waypoints[26].type = "stand"; +/* 1:40 */waypoints[26].childCount = 2; +/* 1:40 */waypoints[26].children[0] = 25; +/* 1:40 */waypoints[26].children[1] = 27; +/* 1:40 */waypoints[27] = spawnstruct(); +/* 1:40 */waypoints[27].origin = (366, 1665, -47); +/* 1:40 */waypoints[27].type = "stand"; +/* 1:40 */waypoints[27].childCount = 2; +/* 1:40 */waypoints[27].children[0] = 26; +/* 1:40 */waypoints[27].children[1] = 28; +/* 1:40 */waypoints[28] = spawnstruct(); +/* 1:40 */waypoints[28].origin = (739, 1651, -46); +/* 1:40 */waypoints[28].type = "stand"; +/* 1:40 */waypoints[28].childCount = 2; +/* 1:40 */waypoints[28].children[0] = 27; +/* 1:40 */waypoints[28].children[1] = 29; +/* 1:40 */waypoints[29] = spawnstruct(); +/* 1:40 */waypoints[29].origin = (995, 1643, -97); +/* 1:40 */waypoints[29].type = "stand"; +/* 1:40 */waypoints[29].childCount = 3; +/* 1:40 */waypoints[29].children[0] = 28; +/* 1:40 */waypoints[29].children[1] = 30; +/* 1:40 */waypoints[29].children[2] = 82; +/* 1:40 */waypoints[30] = spawnstruct(); +/* 1:40 */waypoints[30].origin = (974, 1441, -23); +/* 1:40 */waypoints[30].type = "stand"; +/* 1:40 */waypoints[30].childCount = 2; +/* 1:40 */waypoints[30].children[0] = 29; +/* 1:40 */waypoints[30].children[1] = 31; +/* 1:40 */waypoints[31] = spawnstruct(); +/* 1:40 */waypoints[31].origin = (953, 1076, -19); +/* 1:40 */waypoints[31].type = "stand"; +/* 1:40 */waypoints[31].childCount = 2; +/* 1:40 */waypoints[31].children[0] = 30; +/* 1:40 */waypoints[31].children[1] = 32; +/* 1:40 */waypoints[32] = spawnstruct(); +/* 1:40 */waypoints[32].origin = (890, 1074, -3); +/* 1:40 */waypoints[32].type = "stand"; +/* 1:40 */waypoints[32].childCount = 4; +/* 1:40 */waypoints[32].children[0] = 31; +/* 1:40 */waypoints[32].children[1] = 33; +/* 1:40 */waypoints[32].children[2] = 37; +/* 1:40 */waypoints[32].children[3] = 136; +/* 1:40 */waypoints[33] = spawnstruct(); +/* 1:40 */waypoints[33].origin = (684, 1063, 18); +/* 1:40 */waypoints[33].type = "stand"; +/* 1:40 */waypoints[33].childCount = 3; +/* 1:40 */waypoints[33].children[0] = 32; +/* 1:40 */waypoints[33].children[1] = 127; +/* 1:40 */waypoints[33].children[2] = 152; +/* 1:40 */waypoints[34] = spawnstruct(); +/* 1:40 */waypoints[34].origin = (557, 786, 74); +/* 1:40 */waypoints[34].type = "stand"; +/* 1:40 */waypoints[34].childCount = 3; +/* 1:40 */waypoints[34].children[0] = 35; +/* 1:40 */waypoints[34].children[1] = 36; +/* 1:40 */waypoints[34].children[2] = 149; +/* 1:40 */waypoints[35] = spawnstruct(); +/* 1:40 */waypoints[35].origin = (509, 782, 113); +/* 1:40 */waypoints[35].type = "stand"; +/* 1:40 */waypoints[35].childCount = 2; +/* 1:40 */waypoints[35].children[0] = 34; +/* 1:40 */waypoints[35].children[1] = 39; +/* 1:40 */waypoints[36] = spawnstruct(); +/* 1:40 */waypoints[36].origin = (641, 780, 19); +/* 1:40 */waypoints[36].type = "stand"; +/* 1:40 */waypoints[36].childCount = 3; +/* 1:40 */waypoints[36].children[0] = 34; +/* 1:40 */waypoints[36].children[1] = 37; +/* 1:40 */waypoints[36].children[2] = 125; +/* 1:40 */waypoints[37] = spawnstruct(); +/* 1:40 */waypoints[37].origin = (895, 765, 10); +/* 1:40 */waypoints[37].type = "stand"; +/* 1:40 */waypoints[37].childCount = 3; +/* 1:40 */waypoints[37].children[0] = 36; +/* 1:40 */waypoints[37].children[1] = 38; +/* 1:40 */waypoints[37].children[2] = 32; +/* 1:40 */waypoints[38] = spawnstruct(); +/* 1:40 */waypoints[38].origin = (1130, 765, -2); +/* 1:40 */waypoints[38].type = "stand"; +/* 1:40 */waypoints[38].childCount = 3; +/* 1:40 */waypoints[38].children[0] = 37; +/* 1:40 */waypoints[38].children[1] = 126; +/* 1:40 */waypoints[38].children[2] = 140; +/* 1:40 */waypoints[39] = spawnstruct(); +/* 1:40 */waypoints[39].origin = (508, 467, -55); +/* 1:40 */waypoints[39].type = "stand"; +/* 1:40 */waypoints[39].childCount = 2; +/* 1:40 */waypoints[39].children[0] = 35; +/* 1:40 */waypoints[39].children[1] = 40; +/* 1:40 */waypoints[40] = spawnstruct(); +/* 1:40 */waypoints[40].origin = (501, 103, -236); +/* 1:40 */waypoints[40].type = "stand"; +/* 1:40 */waypoints[40].childCount = 4; +/* 1:40 */waypoints[40].children[0] = 39; +/* 1:40 */waypoints[40].children[1] = 13; +/* 1:40 */waypoints[40].children[2] = 41; +/* 1:40 */waypoints[40].children[3] = 42; +/* 1:40 */waypoints[41] = spawnstruct(); +/* 1:40 */waypoints[41].origin = (837, 108, -245); +/* 1:40 */waypoints[41].type = "stand"; +/* 1:40 */waypoints[41].childCount = 4; +/* 1:40 */waypoints[41].children[0] = 40; +/* 1:40 */waypoints[41].children[1] = 10; +/* 1:40 */waypoints[41].children[2] = 111; +/* 1:40 */waypoints[41].children[3] = 116; +/* 1:40 */waypoints[42] = spawnstruct(); +/* 1:40 */waypoints[42].origin = (329, 80, -239); +/* 1:40 */waypoints[42].type = "stand"; +/* 1:40 */waypoints[42].childCount = 5; +/* 1:40 */waypoints[42].children[0] = 40; +/* 1:40 */waypoints[42].children[1] = 14; +/* 1:40 */waypoints[42].children[2] = 50; +/* 1:40 */waypoints[42].children[3] = 49; +/* 1:40 */waypoints[42].children[4] = 138; +/* 1:40 */waypoints[43] = spawnstruct(); +/* 1:40 */waypoints[43].origin = (127, 46, -238); +/* 1:40 */waypoints[43].type = "stand"; +/* 1:40 */waypoints[43].childCount = 4; +/* 1:40 */waypoints[43].children[0] = 15; +/* 1:40 */waypoints[43].children[1] = 44; +/* 1:40 */waypoints[43].children[2] = 46; +/* 1:40 */waypoints[43].children[3] = 49; +/* 1:40 */waypoints[44] = spawnstruct(); +/* 1:40 */waypoints[44].origin = (-90, 43, -244); +/* 1:40 */waypoints[44].type = "stand"; +/* 1:40 */waypoints[44].childCount = 2; +/* 1:40 */waypoints[44].children[0] = 43; +/* 1:40 */waypoints[44].children[1] = 45; +/* 1:40 */waypoints[45] = spawnstruct(); +/* 1:40 */waypoints[45].origin = (-182, 130, -213); +/* 1:40 */waypoints[45].type = "stand"; +/* 1:40 */waypoints[45].childCount = 2; +/* 1:40 */waypoints[45].children[0] = 44; +/* 1:40 */waypoints[45].children[1] = 46; +/* 1:40 */waypoints[46] = spawnstruct(); +/* 1:40 */waypoints[46].origin = (-177, 264, -228); +/* 1:40 */waypoints[46].type = "stand"; +/* 1:40 */waypoints[46].childCount = 4; +/* 1:40 */waypoints[46].children[0] = 45; +/* 1:40 */waypoints[46].children[1] = 18; +/* 1:40 */waypoints[46].children[2] = 47; +/* 1:40 */waypoints[46].children[3] = 43; +/* 1:40 */waypoints[47] = spawnstruct(); +/* 1:40 */waypoints[47].origin = (-158, 398, -233); +/* 1:40 */waypoints[47].type = "stand"; +/* 1:40 */waypoints[47].childCount = 3; +/* 1:40 */waypoints[47].children[0] = 46; +/* 1:40 */waypoints[47].children[1] = 48; +/* 1:40 */waypoints[47].children[2] = 49; +/* 1:40 */waypoints[48] = spawnstruct(); +/* 1:40 */waypoints[48].origin = (-171, 677, -243); +/* 1:40 */waypoints[48].type = "stand"; +/* 1:40 */waypoints[48].childCount = 5; +/* 1:40 */waypoints[48].children[0] = 47; +/* 1:40 */waypoints[48].children[1] = 19; +/* 1:40 */waypoints[48].children[2] = 101; +/* 1:40 */waypoints[48].children[3] = 102; +/* 1:40 */waypoints[48].children[4] = 118; +/* 1:40 */waypoints[49] = spawnstruct(); +/* 1:40 */waypoints[49].origin = (139, 206, -245); +/* 1:40 */waypoints[49].type = "stand"; +/* 1:40 */waypoints[49].childCount = 5; +/* 1:40 */waypoints[49].children[0] = 43; +/* 1:40 */waypoints[49].children[1] = 50; +/* 1:40 */waypoints[49].children[2] = 47; +/* 1:40 */waypoints[49].children[3] = 42; +/* 1:40 */waypoints[49].children[4] = 118; +/* 1:40 */waypoints[50] = spawnstruct(); +/* 1:40 */waypoints[50].origin = (397, 221, -239); +/* 1:40 */waypoints[50].type = "stand"; +/* 1:40 */waypoints[50].childCount = 3; +/* 1:40 */waypoints[50].children[0] = 49; +/* 1:40 */waypoints[50].children[1] = 42; +/* 1:40 */waypoints[50].children[2] = 53; +/* 1:40 */waypoints[51] = spawnstruct(); +/* 1:40 */waypoints[51].origin = (208, 696, -239); +/* 1:40 */waypoints[51].type = "stand"; +/* 1:40 */waypoints[51].childCount = 4; +/* 1:40 */waypoints[51].children[0] = 52; +/* 1:40 */waypoints[51].children[1] = 55; +/* 1:40 */waypoints[51].children[2] = 101; +/* 1:40 */waypoints[51].children[3] = 158; +/* 1:40 */waypoints[52] = spawnstruct(); +/* 1:40 */waypoints[52].origin = (217, 484, -237); +/* 1:40 */waypoints[52].type = "stand"; +/* 1:40 */waypoints[52].childCount = 2; +/* 1:40 */waypoints[52].children[0] = 51; +/* 1:40 */waypoints[52].children[1] = 53; +/* 1:40 */waypoints[53] = spawnstruct(); +/* 1:40 */waypoints[53].origin = (421, 483, -239); +/* 1:40 */waypoints[53].type = "stand"; +/* 1:40 */waypoints[53].childCount = 5; +/* 1:40 */waypoints[53].children[0] = 52; +/* 1:40 */waypoints[53].children[1] = 50; +/* 1:40 */waypoints[53].children[2] = 54; +/* 1:40 */waypoints[53].children[3] = 117; +/* 1:40 */waypoints[53].children[4] = 159; +/* 1:40 */waypoints[54] = spawnstruct(); +/* 1:40 */waypoints[54].origin = (438, 599, -238); +/* 1:40 */waypoints[54].type = "stand"; +/* 1:40 */waypoints[54].childCount = 2; +/* 1:40 */waypoints[54].children[0] = 53; +/* 1:40 */waypoints[54].children[1] = 55; +/* 1:40 */waypoints[55] = spawnstruct(); +/* 1:40 */waypoints[55].origin = (438, 699, -239); +/* 1:40 */waypoints[55].type = "stand"; +/* 1:40 */waypoints[55].childCount = 4; +/* 1:40 */waypoints[55].children[0] = 54; +/* 1:40 */waypoints[55].children[1] = 51; +/* 1:40 */waypoints[55].children[2] = 60; +/* 1:40 */waypoints[55].children[3] = 56; +/* 1:40 */waypoints[56] = spawnstruct(); +/* 1:40 */waypoints[56].origin = (445, 728, -237); +/* 1:40 */waypoints[56].type = "crouch"; +/* 1:40 */waypoints[56].childCount = 2; +/* 1:40 */waypoints[56].children[0] = 57; +/* 1:40 */waypoints[56].children[1] = 55; +/* 1:40 */waypoints[57] = spawnstruct(); +/* 1:40 */waypoints[57].origin = (443, 828, -197); +/* 1:40 */waypoints[57].type = "crouch"; +/* 1:40 */waypoints[57].childCount = 2; +/* 1:40 */waypoints[57].children[0] = 56; +/* 1:40 */waypoints[57].children[1] = 58; +/* 1:40 */waypoints[58] = spawnstruct(); +/* 1:40 */waypoints[58].origin = (569, 835, -196); +/* 1:40 */waypoints[58].type = "crouch"; +/* 1:40 */waypoints[58].childCount = 2; +/* 1:40 */waypoints[58].children[0] = 57; +/* 1:40 */waypoints[58].children[1] = 59; +/* 1:40 */waypoints[59] = spawnstruct(); +/* 1:40 */waypoints[59].origin = (614, 837, -204); +/* 1:40 */waypoints[59].type = "stand"; +/* 1:40 */waypoints[59].childCount = 2; +/* 1:40 */waypoints[59].children[0] = 58; +/* 1:40 */waypoints[59].children[1] = 106; +/* 1:40 */waypoints[60] = spawnstruct(); +/* 1:40 */waypoints[60].origin = (722, 689, -235); +/* 1:40 */waypoints[60].type = "stand"; +/* 1:40 */waypoints[60].childCount = 2; +/* 1:40 */waypoints[60].children[0] = 55; +/* 1:40 */waypoints[60].children[1] = 61; +/* 1:40 */waypoints[61] = spawnstruct(); +/* 1:40 */waypoints[61].origin = (776, 689, -233); +/* 1:40 */waypoints[61].type = "crouch"; +/* 1:40 */waypoints[61].childCount = 2; +/* 1:40 */waypoints[61].children[0] = 60; +/* 1:40 */waypoints[61].children[1] = 62; +/* 1:40 */waypoints[62] = spawnstruct(); +/* 1:40 */waypoints[62].origin = (870, 689, -234); +/* 1:40 */waypoints[62].type = "crouch"; +/* 1:40 */waypoints[62].childCount = 4; +/* 1:40 */waypoints[62].children[0] = 61; +/* 1:40 */waypoints[62].children[1] = 63; +/* 1:40 */waypoints[62].children[2] = 64; +/* 1:40 */waypoints[62].children[3] = 70; +/* 1:40 */waypoints[63] = spawnstruct(); +/* 1:40 */waypoints[63].origin = (862, 494, -238); +/* 1:40 */waypoints[63].type = "crouch"; +/* 1:40 */waypoints[63].childCount = 2; +/* 1:40 */waypoints[63].children[0] = 62; +/* 1:40 */waypoints[63].children[1] = 68; +/* 1:40 */waypoints[64] = spawnstruct(); +/* 1:40 */waypoints[64].origin = (848, 858, -235); +/* 1:40 */waypoints[64].type = "crouch"; +/* 1:40 */waypoints[64].childCount = 3; +/* 1:40 */waypoints[64].children[0] = 62; +/* 1:40 */waypoints[64].children[1] = 65; +/* 1:40 */waypoints[64].children[2] = 132; +/* 1:40 */waypoints[65] = spawnstruct(); +/* 1:40 */waypoints[65].origin = (849, 968, -234); +/* 1:40 */waypoints[65].type = "crouch"; +/* 1:40 */waypoints[65].childCount = 3; +/* 1:40 */waypoints[65].children[0] = 64; +/* 1:40 */waypoints[65].children[1] = 66; +/* 1:40 */waypoints[65].children[2] = 67; +/* 1:40 */waypoints[66] = spawnstruct(); +/* 1:40 */waypoints[66].origin = (921, 986, -225); +/* 1:40 */waypoints[66].type = "stand"; +/* 1:40 */waypoints[66].childCount = 2; +/* 1:40 */waypoints[66].children[0] = 65; +/* 1:40 */waypoints[66].children[1] = 75; +/* 1:40 */waypoints[67] = spawnstruct(); +/* 1:40 */waypoints[67].origin = (833, 1053, -231); +/* 1:40 */waypoints[67].type = "stand"; +/* 1:40 */waypoints[67].childCount = 2; +/* 1:40 */waypoints[67].children[0] = 65; +/* 1:40 */waypoints[67].children[1] = 77; +/* 1:40 */waypoints[68] = spawnstruct(); +/* 1:40 */waypoints[68].origin = (1008, 506, -241); +/* 1:40 */waypoints[68].type = "stand"; +/* 1:40 */waypoints[68].childCount = 4; +/* 1:40 */waypoints[68].children[0] = 63; +/* 1:40 */waypoints[68].children[1] = 69; +/* 1:40 */waypoints[68].children[2] = 112; +/* 1:40 */waypoints[68].children[3] = 115; +/* 1:40 */waypoints[69] = spawnstruct(); +/* 1:40 */waypoints[69].origin = (1000, 650, -234); +/* 1:40 */waypoints[69].type = "stand"; +/* 1:40 */waypoints[69].childCount = 4; +/* 1:40 */waypoints[69].children[0] = 70; +/* 1:40 */waypoints[69].children[1] = 68; +/* 1:40 */waypoints[69].children[2] = 113; +/* 1:40 */waypoints[69].children[3] = 139; +/* 1:40 */waypoints[70] = spawnstruct(); +/* 1:40 */waypoints[70].origin = (938, 664, -231); +/* 1:40 */waypoints[70].type = "crouch"; +/* 1:40 */waypoints[70].childCount = 2; +/* 1:40 */waypoints[70].children[0] = 69; +/* 1:40 */waypoints[70].children[1] = 62; +/* 1:40 */waypoints[71] = spawnstruct(); +/* 1:40 */waypoints[71].origin = (1302, 640, -226); +/* 1:40 */waypoints[71].type = "stand"; +/* 1:40 */waypoints[71].childCount = 4; +/* 1:40 */waypoints[71].children[0] = 4; +/* 1:40 */waypoints[71].children[1] = 72; +/* 1:40 */waypoints[71].children[2] = 113; +/* 1:40 */waypoints[71].children[3] = 114; +/* 1:40 */waypoints[72] = spawnstruct(); +/* 1:40 */waypoints[72].origin = (1260, 875, -234); +/* 1:40 */waypoints[72].type = "stand"; +/* 1:40 */waypoints[72].childCount = 4; +/* 1:40 */waypoints[72].children[0] = 71; +/* 1:40 */waypoints[72].children[1] = 73; +/* 1:40 */waypoints[72].children[2] = 74; +/* 1:40 */waypoints[72].children[3] = 168; +/* 1:40 */waypoints[73] = spawnstruct(); +/* 1:40 */waypoints[73].origin = (1014, 854, -236); +/* 1:40 */waypoints[73].type = "stand"; +/* 1:40 */waypoints[73].childCount = 2; +/* 1:40 */waypoints[73].children[0] = 72; +/* 1:40 */waypoints[73].children[1] = 75; +/* 1:40 */waypoints[74] = spawnstruct(); +/* 1:40 */waypoints[74].origin = (1280, 1117, -221); +/* 1:40 */waypoints[74].type = "stand"; +/* 1:40 */waypoints[74].childCount = 3; +/* 1:40 */waypoints[74].children[0] = 72; +/* 1:40 */waypoints[74].children[1] = 3; +/* 1:40 */waypoints[74].children[2] = 75; +/* 1:40 */waypoints[75] = spawnstruct(); +/* 1:40 */waypoints[75].origin = (1074, 1116, -237); +/* 1:40 */waypoints[75].type = "stand"; +/* 1:40 */waypoints[75].childCount = 4; +/* 1:40 */waypoints[75].children[0] = 74; +/* 1:40 */waypoints[75].children[1] = 73; +/* 1:40 */waypoints[75].children[2] = 76; +/* 1:40 */waypoints[75].children[3] = 66; +/* 1:40 */waypoints[76] = spawnstruct(); +/* 1:40 */waypoints[76].origin = (1059, 1205, -236); +/* 1:40 */waypoints[76].type = "stand"; +/* 1:40 */waypoints[76].childCount = 4; +/* 1:40 */waypoints[76].children[0] = 75; +/* 1:40 */waypoints[76].children[1] = 77; +/* 1:40 */waypoints[76].children[2] = 78; +/* 1:40 */waypoints[76].children[3] = 143; +/* 1:40 */waypoints[77] = spawnstruct(); +/* 1:40 */waypoints[77].origin = (840, 1194, -233); +/* 1:40 */waypoints[77].type = "stand"; +/* 1:40 */waypoints[77].childCount = 4; +/* 1:40 */waypoints[77].children[0] = 76; +/* 1:40 */waypoints[77].children[1] = 67; +/* 1:40 */waypoints[77].children[2] = 86; +/* 1:40 */waypoints[77].children[3] = 108; +/* 1:40 */waypoints[78] = spawnstruct(); +/* 1:40 */waypoints[78].origin = (1069, 1530, -235); +/* 1:40 */waypoints[78].type = "stand"; +/* 1:40 */waypoints[78].childCount = 3; +/* 1:40 */waypoints[78].children[0] = 76; +/* 1:40 */waypoints[78].children[1] = 79; +/* 1:40 */waypoints[78].children[2] = 86; +/* 1:40 */waypoints[79] = spawnstruct(); +/* 1:40 */waypoints[79].origin = (1242, 1545, -219); +/* 1:40 */waypoints[79].type = "stand"; +/* 1:40 */waypoints[79].childCount = 3; +/* 1:40 */waypoints[79].children[0] = 78; +/* 1:40 */waypoints[79].children[1] = 80; +/* 1:40 */waypoints[79].children[2] = 81; +/* 1:40 */waypoints[80] = spawnstruct(); +/* 1:40 */waypoints[80].origin = (1247, 1483, -235); +/* 1:40 */waypoints[80].type = "stand"; +/* 1:40 */waypoints[80].childCount = 3; +/* 1:40 */waypoints[80].children[0] = 79; +/* 1:40 */waypoints[80].children[1] = 81; +/* 1:40 */waypoints[80].children[2] = 175; +/* 1:40 */waypoints[81] = spawnstruct(); +/* 1:40 */waypoints[81].origin = (1503, 1491, -236); +/* 1:40 */waypoints[81].type = "stand"; +/* 1:40 */waypoints[81].childCount = 6; +/* 1:40 */waypoints[81].children[0] = 80; +/* 1:40 */waypoints[81].children[1] = 1; +/* 1:40 */waypoints[81].children[2] = 0; +/* 1:40 */waypoints[81].children[3] = 3; +/* 1:40 */waypoints[81].children[4] = 83; +/* 1:40 */waypoints[81].children[5] = 79; +/* 1:40 */waypoints[82] = spawnstruct(); +/* 1:40 */waypoints[82].origin = (1219, 1624, -144); +/* 1:40 */waypoints[82].type = "stand"; +/* 1:40 */waypoints[82].childCount = 2; +/* 1:40 */waypoints[82].children[0] = 0; +/* 1:40 */waypoints[82].children[1] = 29; +/* 1:40 */waypoints[83] = spawnstruct(); +/* 1:40 */waypoints[83].origin = (1570, 1781, -228); +/* 1:40 */waypoints[83].type = "stand"; +/* 1:40 */waypoints[83].childCount = 3; +/* 1:40 */waypoints[83].children[0] = 0; +/* 1:40 */waypoints[83].children[1] = 85; +/* 1:40 */waypoints[83].children[2] = 81; +/* 1:40 */waypoints[84] = spawnstruct(); +/* 1:40 */waypoints[84].origin = (872, 1769, -234); +/* 1:40 */waypoints[84].type = "stand"; +/* 1:40 */waypoints[84].childCount = 3; +/* 1:40 */waypoints[84].children[0] = 85; +/* 1:40 */waypoints[84].children[1] = 86; +/* 1:40 */waypoints[84].children[2] = 89; +/* 1:40 */waypoints[85] = spawnstruct(); +/* 1:40 */waypoints[85].origin = (1221, 1777, -224); +/* 1:40 */waypoints[85].type = "stand"; +/* 1:40 */waypoints[85].childCount = 2; +/* 1:40 */waypoints[85].children[0] = 84; +/* 1:40 */waypoints[85].children[1] = 83; +/* 1:40 */waypoints[86] = spawnstruct(); +/* 1:40 */waypoints[86].origin = (859, 1545, -245); +/* 1:40 */waypoints[86].type = "stand"; +/* 1:40 */waypoints[86].childCount = 4; +/* 1:40 */waypoints[86].children[0] = 84; +/* 1:40 */waypoints[86].children[1] = 78; +/* 1:40 */waypoints[86].children[2] = 77; +/* 1:40 */waypoints[86].children[3] = 87; +/* 1:40 */waypoints[87] = spawnstruct(); +/* 1:40 */waypoints[87].origin = (605, 1540, -241); +/* 1:40 */waypoints[87].type = "stand"; +/* 1:40 */waypoints[87].childCount = 5; +/* 1:40 */waypoints[87].children[0] = 86; +/* 1:40 */waypoints[87].children[1] = 88; +/* 1:40 */waypoints[87].children[2] = 109; +/* 1:40 */waypoints[87].children[3] = 110; +/* 1:40 */waypoints[87].children[4] = 90; +/* 1:40 */waypoints[88] = spawnstruct(); +/* 1:40 */waypoints[88].origin = (610, 1781, -224); +/* 1:40 */waypoints[88].type = "stand"; +/* 1:40 */waypoints[88].childCount = 3; +/* 1:40 */waypoints[88].children[0] = 87; +/* 1:40 */waypoints[88].children[1] = 90; +/* 1:40 */waypoints[88].children[2] = 91; +/* 1:40 */waypoints[89] = spawnstruct(); +/* 1:40 */waypoints[89].origin = (755, 1792, -222); +/* 1:40 */waypoints[89].type = "stand"; +/* 1:40 */waypoints[89].childCount = 2; +/* 1:40 */waypoints[89].children[0] = 84; +/* 1:40 */waypoints[89].children[1] = 90; +/* 1:40 */waypoints[90] = spawnstruct(); +/* 1:40 */waypoints[90].origin = (676, 1699, -235); +/* 1:40 */waypoints[90].type = "stand"; +/* 1:40 */waypoints[90].childCount = 3; +/* 1:40 */waypoints[90].children[0] = 89; +/* 1:40 */waypoints[90].children[1] = 88; +/* 1:40 */waypoints[90].children[2] = 87; +/* 1:40 */waypoints[91] = spawnstruct(); +/* 1:40 */waypoints[91].origin = (204, 1773, -225); +/* 1:40 */waypoints[91].type = "stand"; +/* 1:40 */waypoints[91].childCount = 3; +/* 1:40 */waypoints[91].children[0] = 88; +/* 1:40 */waypoints[91].children[1] = 93; +/* 1:40 */waypoints[91].children[2] = 97; +/* 1:40 */waypoints[92] = spawnstruct(); +/* 1:40 */waypoints[92].origin = (-416, 1766, -238); +/* 1:40 */waypoints[92].type = "stand"; +/* 1:40 */waypoints[92].childCount = 3; +/* 1:40 */waypoints[92].children[0] = 93; +/* 1:40 */waypoints[92].children[1] = 21; +/* 1:40 */waypoints[92].children[2] = 135; +/* 1:40 */waypoints[93] = spawnstruct(); +/* 1:40 */waypoints[93].origin = (-143, 1769, -239); +/* 1:40 */waypoints[93].type = "stand"; +/* 1:40 */waypoints[93].childCount = 2; +/* 1:40 */waypoints[93].children[0] = 91; +/* 1:40 */waypoints[93].children[1] = 92; +/* 1:40 */waypoints[94] = spawnstruct(); +/* 1:40 */waypoints[94].origin = (-221, 1331, -234); +/* 1:40 */waypoints[94].type = "stand"; +/* 1:40 */waypoints[94].childCount = 2; +/* 1:40 */waypoints[94].children[0] = 95; +/* 1:40 */waypoints[94].children[1] = 156; +/* 1:40 */waypoints[95] = spawnstruct(); +/* 1:40 */waypoints[95].origin = (-145, 1218, -228); +/* 1:40 */waypoints[95].type = "stand"; +/* 1:40 */waypoints[95].childCount = 3; +/* 1:40 */waypoints[95].children[0] = 94; +/* 1:40 */waypoints[95].children[1] = 20; +/* 1:40 */waypoints[95].children[2] = 96; +/* 1:40 */waypoints[96] = spawnstruct(); +/* 1:40 */waypoints[96].origin = (180, 1234, -226); +/* 1:40 */waypoints[96].type = "stand"; +/* 1:40 */waypoints[96].childCount = 4; +/* 1:40 */waypoints[96].children[0] = 95; +/* 1:40 */waypoints[96].children[1] = 97; +/* 1:40 */waypoints[96].children[2] = 98; +/* 1:40 */waypoints[96].children[3] = 100; +/* 1:40 */waypoints[97] = spawnstruct(); +/* 1:40 */waypoints[97].origin = (193, 1552, -224); +/* 1:40 */waypoints[97].type = "stand"; +/* 1:40 */waypoints[97].childCount = 4; +/* 1:40 */waypoints[97].children[0] = 91; +/* 1:40 */waypoints[97].children[1] = 96; +/* 1:40 */waypoints[97].children[2] = 110; +/* 1:40 */waypoints[97].children[3] = 137; +/* 1:40 */waypoints[98] = spawnstruct(); +/* 1:40 */waypoints[98].origin = (263, 1201, -230); +/* 1:40 */waypoints[98].type = "stand"; +/* 1:40 */waypoints[98].childCount = 4; +/* 1:40 */waypoints[98].children[0] = 96; +/* 1:40 */waypoints[98].children[1] = 99; +/* 1:40 */waypoints[98].children[2] = 104; +/* 1:40 */waypoints[98].children[3] = 141; +/* 1:40 */waypoints[99] = spawnstruct(); +/* 1:40 */waypoints[99].origin = (298, 955, -240); +/* 1:40 */waypoints[99].type = "stand"; +/* 1:40 */waypoints[99].childCount = 2; +/* 1:40 */waypoints[99].children[0] = 98; +/* 1:40 */waypoints[99].children[1] = 100; +/* 1:40 */waypoints[100] = spawnstruct(); +/* 1:40 */waypoints[100].origin = (40, 958, -244); +/* 1:40 */waypoints[100].type = "stand"; +/* 1:40 */waypoints[100].childCount = 5; +/* 1:40 */waypoints[100].children[0] = 99; +/* 1:40 */waypoints[100].children[1] = 101; +/* 1:40 */waypoints[100].children[2] = 103; +/* 1:40 */waypoints[100].children[3] = 96; +/* 1:40 */waypoints[100].children[4] = 102; +/* 1:40 */waypoints[101] = spawnstruct(); +/* 1:40 */waypoints[101].origin = (48, 686, -245); +/* 1:40 */waypoints[101].type = "stand"; +/* 1:40 */waypoints[101].childCount = 4; +/* 1:40 */waypoints[101].children[0] = 48; +/* 1:40 */waypoints[101].children[1] = 51; +/* 1:40 */waypoints[101].children[2] = 100; +/* 1:40 */waypoints[101].children[3] = 118; +/* 1:40 */waypoints[102] = spawnstruct(); +/* 1:40 */waypoints[102].origin = (-223, 926, -237); +/* 1:40 */waypoints[102].type = "stand"; +/* 1:40 */waypoints[102].childCount = 3; +/* 1:40 */waypoints[102].children[0] = 103; +/* 1:40 */waypoints[102].children[1] = 48; +/* 1:40 */waypoints[102].children[2] = 100; +/* 1:40 */waypoints[103] = spawnstruct(); +/* 1:40 */waypoints[103].origin = (-209, 1103, -236); +/* 1:40 */waypoints[103].type = "stand"; +/* 1:40 */waypoints[103].childCount = 3; +/* 1:40 */waypoints[103].children[0] = 102; +/* 1:40 */waypoints[103].children[1] = 20; +/* 1:40 */waypoints[103].children[2] = 100; +/* 1:40 */waypoints[104] = spawnstruct(); +/* 1:40 */waypoints[104].origin = (439, 1203, -236); +/* 1:40 */waypoints[104].type = "stand"; +/* 1:40 */waypoints[104].childCount = 4; +/* 1:40 */waypoints[104].children[0] = 98; +/* 1:40 */waypoints[104].children[1] = 105; +/* 1:40 */waypoints[104].children[2] = 109; +/* 1:40 */waypoints[104].children[3] = 110; +/* 1:40 */waypoints[105] = spawnstruct(); +/* 1:40 */waypoints[105].origin = (454, 1036, -222); +/* 1:40 */waypoints[105].type = "stand"; +/* 1:40 */waypoints[105].childCount = 3; +/* 1:40 */waypoints[105].children[0] = 104; +/* 1:40 */waypoints[105].children[1] = 106; +/* 1:40 */waypoints[105].children[2] = 122; +/* 1:40 */waypoints[106] = spawnstruct(); +/* 1:40 */waypoints[106].origin = (599, 1036, -202); +/* 1:40 */waypoints[106].type = "stand"; +/* 1:40 */waypoints[106].childCount = 4; +/* 1:40 */waypoints[106].children[0] = 105; +/* 1:40 */waypoints[106].children[1] = 59; +/* 1:40 */waypoints[106].children[2] = 107; +/* 1:40 */waypoints[106].children[3] = 145; +/* 1:40 */waypoints[107] = spawnstruct(); +/* 1:40 */waypoints[107].origin = (719, 1026, -202); +/* 1:40 */waypoints[107].type = "stand"; +/* 1:40 */waypoints[107].childCount = 2; +/* 1:40 */waypoints[107].children[0] = 106; +/* 1:40 */waypoints[107].children[1] = 108; +/* 1:40 */waypoints[108] = spawnstruct(); +/* 1:40 */waypoints[108].origin = (712, 1204, -172); +/* 1:40 */waypoints[108].type = "stand"; +/* 1:40 */waypoints[108].childCount = 3; +/* 1:40 */waypoints[108].children[0] = 107; +/* 1:40 */waypoints[108].children[1] = 77; +/* 1:40 */waypoints[108].children[2] = 109; +/* 1:40 */waypoints[109] = spawnstruct(); +/* 1:40 */waypoints[109].origin = (605, 1204, -230); +/* 1:40 */waypoints[109].type = "stand"; +/* 1:40 */waypoints[109].childCount = 3; +/* 1:40 */waypoints[109].children[0] = 108; +/* 1:40 */waypoints[109].children[1] = 104; +/* 1:40 */waypoints[109].children[2] = 87; +/* 1:40 */waypoints[110] = spawnstruct(); +/* 1:40 */waypoints[110].origin = (423, 1543, -234); +/* 1:40 */waypoints[110].type = "stand"; +/* 1:40 */waypoints[110].childCount = 3; +/* 1:40 */waypoints[110].children[0] = 104; +/* 1:40 */waypoints[110].children[1] = 87; +/* 1:40 */waypoints[110].children[2] = 97; +/* 1:40 */waypoints[111] = spawnstruct(); +/* 1:40 */waypoints[111].origin = (1044, 117, -241); +/* 1:40 */waypoints[111].type = "stand"; +/* 1:40 */waypoints[111].childCount = 3; +/* 1:40 */waypoints[111].children[0] = 9; +/* 1:40 */waypoints[111].children[1] = 41; +/* 1:40 */waypoints[111].children[2] = 115; +/* 1:40 */waypoints[112] = spawnstruct(); +/* 1:40 */waypoints[112].origin = (1121, 508, -241); +/* 1:40 */waypoints[112].type = "stand"; +/* 1:40 */waypoints[112].childCount = 3; +/* 1:40 */waypoints[112].children[0] = 68; +/* 1:40 */waypoints[112].children[1] = 113; +/* 1:40 */waypoints[112].children[2] = 115; +/* 1:40 */waypoints[113] = spawnstruct(); +/* 1:40 */waypoints[113].origin = (1115, 642, -245); +/* 1:40 */waypoints[113].type = "stand"; +/* 1:40 */waypoints[113].childCount = 3; +/* 1:40 */waypoints[113].children[0] = 69; +/* 1:40 */waypoints[113].children[1] = 71; +/* 1:40 */waypoints[113].children[2] = 112; +/* 1:40 */waypoints[114] = spawnstruct(); +/* 1:40 */waypoints[114].origin = (1332, 322, -240); +/* 1:40 */waypoints[114].type = "stand"; +/* 1:40 */waypoints[114].childCount = 4; +/* 1:40 */waypoints[114].children[0] = 71; +/* 1:40 */waypoints[114].children[1] = 115; +/* 1:40 */waypoints[114].children[2] = 129; +/* 1:40 */waypoints[114].children[3] = 163; +/* 1:40 */waypoints[115] = spawnstruct(); +/* 1:40 */waypoints[115].origin = (1020, 332, -243); +/* 1:40 */waypoints[115].type = "stand"; +/* 1:40 */waypoints[115].childCount = 5; +/* 1:40 */waypoints[115].children[0] = 114; +/* 1:40 */waypoints[115].children[1] = 68; +/* 1:40 */waypoints[115].children[2] = 111; +/* 1:40 */waypoints[115].children[3] = 112; +/* 1:40 */waypoints[115].children[4] = 116; +/* 1:40 */waypoints[116] = spawnstruct(); +/* 1:40 */waypoints[116].origin = (827, 287, -246); +/* 1:40 */waypoints[116].type = "stand"; +/* 1:40 */waypoints[116].childCount = 3; +/* 1:40 */waypoints[116].children[0] = 41; +/* 1:40 */waypoints[116].children[1] = 117; +/* 1:40 */waypoints[116].children[2] = 115; +/* 1:40 */waypoints[117] = spawnstruct(); +/* 1:40 */waypoints[117].origin = (555, 367, -239); +/* 1:40 */waypoints[117].type = "stand"; +/* 1:40 */waypoints[117].childCount = 2; +/* 1:40 */waypoints[117].children[0] = 116; +/* 1:40 */waypoints[117].children[1] = 53; +/* 1:40 */waypoints[118] = spawnstruct(); +/* 1:40 */waypoints[118].origin = (46, 515, -244); +/* 1:40 */waypoints[118].type = "stand"; +/* 1:40 */waypoints[118].childCount = 3; +/* 1:40 */waypoints[118].children[0] = 49; +/* 1:40 */waypoints[118].children[1] = 101; +/* 1:40 */waypoints[118].children[2] = 48; +/* 1:40 */waypoints[119] = spawnstruct(); +/* 1:40 */waypoints[119].origin = (728, 1100, 266); +/* 1:40 */waypoints[119].type = "stand"; +/* 1:40 */waypoints[119].childCount = 5; +/* 1:40 */waypoints[119].children[0] = 123; +/* 1:40 */waypoints[119].children[1] = 124; +/* 1:40 */waypoints[119].children[2] = 144; +/* 1:40 */waypoints[119].children[3] = 167; +/* 1:40 */waypoints[119].children[4] = 173; +/* 1:40 */waypoints[120] = spawnstruct(); +/* 1:40 */waypoints[120].origin = (1772, 1648, -127); +/* 1:40 */waypoints[120].type = "crouch"; +/* 1:40 */waypoints[120].childCount = 1; +/* 1:40 */waypoints[120].children[0] = 148; +/* 1:40 */waypoints[120].angles = (3, -178, 0); +/* 1:40 */waypoints[121] = spawnstruct(); +/* 1:40 */waypoints[121].origin = (-440, 1803, -47); +/* 1:40 */waypoints[121].type = "crouch"; +/* 1:40 */waypoints[121].childCount = 1; +/* 1:40 */waypoints[121].children[0] = 25; +/* 1:40 */waypoints[121].angles = (1, -43, 0); +/* 1:40 */waypoints[122] = spawnstruct(); +/* 1:40 */waypoints[122].origin = (452, 933, -223); +/* 1:40 */waypoints[122].type = "crouch"; +/* 1:40 */waypoints[122].childCount = 1; +/* 1:40 */waypoints[122].children[0] = 105; +/* 1:40 */waypoints[122].angles = (-4, 136, 0); +/* 1:40 */waypoints[123] = spawnstruct(); +/* 1:40 */waypoints[123].origin = (742, 948, 268); +/* 1:40 */waypoints[123].type = "crouch"; +/* 1:40 */waypoints[123].childCount = 1; +/* 1:40 */waypoints[123].children[0] = 119; +/* 1:40 */waypoints[123].angles = (-1, 131, 0); +/* 1:40 */waypoints[124] = spawnstruct(); +/* 1:40 */waypoints[124].origin = (549, 1086, 266); +/* 1:40 */waypoints[124].type = "crouch"; +/* 1:40 */waypoints[124].childCount = 1; +/* 1:40 */waypoints[124].children[0] = 119; +/* 1:40 */waypoints[124].angles = (10, -70, 0); +/* 1:40 */waypoints[125] = spawnstruct(); +/* 1:40 */waypoints[125].origin = (642, 901, 19); +/* 1:40 */waypoints[125].type = "crouch"; +/* 1:40 */waypoints[125].childCount = 1; +/* 1:40 */waypoints[125].children[0] = 36; +/* 1:40 */waypoints[125].angles = (4, -90, 0); +/* 1:40 */waypoints[126] = spawnstruct(); +/* 1:40 */waypoints[126].origin = (1067, 780, -2); +/* 1:40 */waypoints[126].type = "crouch"; +/* 1:40 */waypoints[126].childCount = 1; +/* 1:40 */waypoints[126].children[0] = 38; +/* 1:40 */waypoints[126].angles = (12, -88, 0); +/* 1:40 */waypoints[127] = spawnstruct(); +/* 1:40 */waypoints[127].origin = (694, 1000, 18); +/* 1:40 */waypoints[127].type = "crouch"; +/* 1:40 */waypoints[127].childCount = 1; +/* 1:40 */waypoints[127].children[0] = 33; +/* 1:40 */waypoints[127].angles = (14, 90, 0); +/* 1:40 */waypoints[128] = spawnstruct(); +/* 1:40 */waypoints[128].origin = (1316, -45, -239); +/* 1:40 */waypoints[128].type = "crouch"; +/* 1:40 */waypoints[128].childCount = 1; +/* 1:40 */waypoints[128].children[0] = 7; +/* 1:40 */waypoints[128].angles = (0, -87, 0); +/* 1:40 */waypoints[129] = spawnstruct(); +/* 1:40 */waypoints[129].origin = (1309, 161, -240); +/* 1:40 */waypoints[129].type = "crouch"; +/* 1:40 */waypoints[129].childCount = 1; +/* 1:40 */waypoints[129].children[0] = 114; +/* 1:40 */waypoints[129].angles = (5, 85, 0); +/* 1:40 */waypoints[130] = spawnstruct(); +/* 1:40 */waypoints[130].origin = (-98, -55, -217); +/* 1:40 */waypoints[130].type = "crouch"; +/* 1:40 */waypoints[130].childCount = 1; +/* 1:40 */waypoints[130].children[0] = 16; +/* 1:40 */waypoints[130].angles = (10, -127, 0); +/* 1:40 */waypoints[131] = spawnstruct(); +/* 1:40 */waypoints[131].origin = (557, -48, -222); +/* 1:40 */waypoints[131].type = "claymore"; +/* 1:40 */waypoints[131].childCount = 1; +/* 1:40 */waypoints[131].children[0] = 11; +/* 1:40 */waypoints[131].angles = (6, -86, 0); +/* 1:40 */waypoints[132] = spawnstruct(); +/* 1:40 */waypoints[132].origin = (910, 790, -233); +/* 1:40 */waypoints[132].type = "claymore"; +/* 1:40 */waypoints[132].childCount = 1; +/* 1:40 */waypoints[132].children[0] = 64; +/* 1:40 */waypoints[132].angles = (7, -179, 0); +/* 1:40 */waypoints[133] = spawnstruct(); +/* 1:40 */waypoints[133].origin = (1597, 761, -229); +/* 1:40 */waypoints[133].type = "claymore"; +/* 1:40 */waypoints[133].childCount = 1; +/* 1:40 */waypoints[133].children[0] = 5; +/* 1:40 */waypoints[133].angles = (7, -170, 0); +/* 1:40 */waypoints[134] = spawnstruct(); +/* 1:40 */waypoints[134].origin = (1619, 1056, -224); +/* 1:40 */waypoints[134].type = "claymore"; +/* 1:40 */waypoints[134].childCount = 1; +/* 1:40 */waypoints[134].children[0] = 2; +/* 1:40 */waypoints[134].angles = (11, 173, 0); +/* 1:40 */waypoints[135] = spawnstruct(); +/* 1:40 */waypoints[135].origin = (-270, 1702, -230); +/* 1:40 */waypoints[135].type = "claymore"; +/* 1:40 */waypoints[135].childCount = 1; +/* 1:40 */waypoints[135].children[0] = 92; +/* 1:40 */waypoints[135].angles = (9, 166, 0); +/* 1:40 */waypoints[136] = spawnstruct(); +/* 1:40 */waypoints[136].origin = (792, 1055, 7); +/* 1:40 */waypoints[136].type = "claymore"; +/* 1:40 */waypoints[136].childCount = 1; +/* 1:40 */waypoints[136].children[0] = 32; +/* 1:40 */waypoints[136].angles = (7, 14, 0); +/* 1:40 */waypoints[137] = spawnstruct(); +/* 1:40 */waypoints[137].origin = (262, 1529, -236); +/* 1:40 */waypoints[137].type = "grenade"; +/* 1:40 */waypoints[137].childCount = 1; +/* 1:40 */waypoints[137].children[0] = 97; +/* 1:40 */waypoints[137].angles = (-33, -92, 0); +/* 1:40 */waypoints[138] = spawnstruct(); +/* 1:40 */waypoints[138].origin = (308, 180, -239); +/* 1:40 */waypoints[138].type = "grenade"; +/* 1:40 */waypoints[138].childCount = 1; +/* 1:40 */waypoints[138].children[0] = 42; +/* 1:40 */waypoints[138].angles = (-34, 90, 0); +/* 1:40 */waypoints[139] = spawnstruct(); +/* 1:40 */waypoints[139].origin = (967, 672, -233); +/* 1:40 */waypoints[139].type = "claymore"; +/* 1:40 */waypoints[139].childCount = 1; +/* 1:40 */waypoints[139].children[0] = 69; +/* 1:40 */waypoints[139].angles = (7, -177, 0); +/* 1:40 */waypoints[140] = spawnstruct(); +/* 1:40 */waypoints[140].origin = (1178, 771, -4); +/* 1:40 */waypoints[140].type = "claymore"; +/* 1:40 */waypoints[140].childCount = 1; +/* 1:40 */waypoints[140].children[0] = 38; +/* 1:40 */waypoints[140].angles = (19, -129, 0); +/* 1:40 */waypoints[141] = spawnstruct(); +/* 1:40 */waypoints[141].origin = (217, 1313, -229); +/* 1:40 */waypoints[141].type = "grenade"; +/* 1:40 */waypoints[141].childCount = 1; +/* 1:40 */waypoints[141].children[0] = 98; +/* 1:40 */waypoints[141].angles = (-22, -6, 0); +/* 1:40 */waypoints[142] = spawnstruct(); +/* 1:40 */waypoints[142].origin = (885, 40, -240); +/* 1:40 */waypoints[142].type = "grenade"; +/* 1:40 */waypoints[142].childCount = 1; +/* 1:40 */waypoints[142].children[0] = 10; +/* 1:40 */waypoints[142].angles = (-42, 89, 0); +/* 1:40 */waypoints[143] = spawnstruct(); +/* 1:40 */waypoints[143].origin = (929, 1240, -234); +/* 1:40 */waypoints[143].type = "grenade"; +/* 1:40 */waypoints[143].childCount = 1; +/* 1:40 */waypoints[143].children[0] = 76; +/* 1:40 */waypoints[143].angles = (-21, -175, 0); +/* 1:40 */waypoints[144] = spawnstruct(); +/* 1:40 */waypoints[144].origin = (726, 1025, 268); +/* 1:40 */waypoints[144].type = "claymore"; +/* 1:40 */waypoints[144].childCount = 1; +/* 1:40 */waypoints[144].children[0] = 119; +/* 1:40 */waypoints[144].angles = (29, -160, 0); +/* 1:40 */waypoints[145] = spawnstruct(); +/* 1:40 */waypoints[145].origin = (633, 983, -198); +/* 1:40 */waypoints[145].type = "climb"; +/* 1:40 */waypoints[145].childCount = 2; +/* 1:40 */waypoints[145].children[0] = 106; +/* 1:40 */waypoints[145].children[1] = 146; +/* 1:40 */waypoints[145].angles = (6, -3, 0); +/* 1:40 */waypoints[146] = spawnstruct(); +/* 1:40 */waypoints[146].origin = (636, 986, 274); +/* 1:40 */waypoints[146].type = "climb"; +/* 1:40 */waypoints[146].childCount = 2; +/* 1:40 */waypoints[146].children[0] = 145; +/* 1:40 */waypoints[146].children[1] = 167; +/* 1:40 */waypoints[146].angles = (11, 0, 0); +/* 1:40 */waypoints[147] = spawnstruct(); +/* 1:40 */waypoints[147].origin = (1616, 1654, -225); +/* 1:40 */waypoints[147].type = "climb"; +/* 1:40 */waypoints[147].childCount = 2; +/* 1:40 */waypoints[147].children[0] = 0; +/* 1:40 */waypoints[147].children[1] = 148; +/* 1:40 */waypoints[147].angles = (4, 0, 0); +/* 1:40 */waypoints[148] = spawnstruct(); +/* 1:40 */waypoints[148].origin = (1641, 1652, -149); +/* 1:40 */waypoints[148].type = "climb"; +/* 1:40 */waypoints[148].childCount = 2; +/* 1:40 */waypoints[148].children[0] = 147; +/* 1:40 */waypoints[148].children[1] = 120; +/* 1:40 */waypoints[148].angles = (-2, 0, 0); +/* 1:40 */waypoints[149] = spawnstruct(); +/* 1:40 */waypoints[149].origin = (554, 872, 126); +/* 1:40 */waypoints[149].type = "stand"; +/* 1:40 */waypoints[149].childCount = 3; +/* 1:40 */waypoints[149].children[0] = 34; +/* 1:40 */waypoints[149].children[1] = 150; +/* 1:40 */waypoints[149].children[2] = 164; +/* 1:40 */waypoints[150] = spawnstruct(); +/* 1:40 */waypoints[150].origin = (549, 962, 126); +/* 1:40 */waypoints[150].type = "climb"; +/* 1:40 */waypoints[150].childCount = 2; +/* 1:40 */waypoints[150].children[0] = 149; +/* 1:40 */waypoints[150].children[1] = 151; +/* 1:40 */waypoints[150].angles = (3, -88, 0); +/* 1:40 */waypoints[151] = spawnstruct(); +/* 1:40 */waypoints[151].origin = (555, 987, 19); +/* 1:40 */waypoints[151].type = "climb"; +/* 1:40 */waypoints[151].childCount = 2; +/* 1:40 */waypoints[151].children[0] = 150; +/* 1:40 */waypoints[151].children[1] = 174; +/* 1:40 */waypoints[151].angles = (0, -90, 0); +/* 1:40 */waypoints[152] = spawnstruct(); +/* 1:40 */waypoints[152].origin = (558, 1064, 18); +/* 1:40 */waypoints[152].type = "stand"; +/* 1:40 */waypoints[152].childCount = 2; +/* 1:40 */waypoints[152].children[0] = 33; +/* 1:40 */waypoints[152].children[1] = 174; +/* 1:40 */waypoints[153] = spawnstruct(); +/* 1:40 */waypoints[153].origin = (-124, 1520, -129); +/* 1:40 */waypoints[153].type = "stand"; +/* 1:40 */waypoints[153].childCount = 3; +/* 1:40 */waypoints[153].children[0] = 22; +/* 1:40 */waypoints[153].children[1] = 24; +/* 1:40 */waypoints[153].children[2] = 154; +/* 1:40 */waypoints[154] = spawnstruct(); +/* 1:40 */waypoints[154].origin = (-196, 1493, -129); +/* 1:40 */waypoints[154].type = "climb"; +/* 1:40 */waypoints[154].childCount = 2; +/* 1:40 */waypoints[154].children[0] = 153; +/* 1:40 */waypoints[154].children[1] = 155; +/* 1:40 */waypoints[154].angles = (0, 4, 0); +/* 1:40 */waypoints[155] = spawnstruct(); +/* 1:40 */waypoints[155].origin = (-254, 1495, -234); +/* 1:40 */waypoints[155].type = "climb"; +/* 1:40 */waypoints[155].childCount = 2; +/* 1:40 */waypoints[155].children[0] = 154; +/* 1:40 */waypoints[155].children[1] = 156; +/* 1:40 */waypoints[155].angles = (-1, 6, 0); +/* 1:40 */waypoints[156] = spawnstruct(); +/* 1:40 */waypoints[156].origin = (-278, 1445, -235); +/* 1:40 */waypoints[156].type = "stand"; +/* 1:40 */waypoints[156].childCount = 3; +/* 1:40 */waypoints[156].children[0] = 155; +/* 1:40 */waypoints[156].children[1] = 94; +/* 1:40 */waypoints[156].children[2] = 21; +/* 1:40 */waypoints[157] = spawnstruct(); +/* 1:40 */waypoints[157].origin = (1640, 463, -223); +/* 1:40 */waypoints[157].type = "grenade"; +/* 1:40 */waypoints[157].childCount = 2; +/* 1:40 */waypoints[157].children[0] = 5; +/* 1:40 */waypoints[157].children[1] = 163; +/* 1:40 */waypoints[157].angles = (-35, -172, 0); +/* 1:40 */waypoints[158] = spawnstruct(); +/* 1:40 */waypoints[158].origin = (208, 550, -239); +/* 1:40 */waypoints[158].type = "claymore"; +/* 1:40 */waypoints[158].childCount = 1; +/* 1:40 */waypoints[158].children[0] = 51; +/* 1:40 */waypoints[158].angles = (11, 94, 0); +/* 1:40 */waypoints[159] = spawnstruct(); +/* 1:40 */waypoints[159].origin = (502, 561, -232); +/* 1:40 */waypoints[159].type = "claymore"; +/* 1:40 */waypoints[159].childCount = 1; +/* 1:40 */waypoints[159].children[0] = 53; +/* 1:40 */waypoints[159].angles = (7, 104, 0); +/* 1:40 */waypoints[160] = spawnstruct(); +/* 1:40 */waypoints[160].origin = (1295, -70, -228); +/* 1:40 */waypoints[160].type = "claymore"; +/* 1:40 */waypoints[160].childCount = 1; +/* 1:40 */waypoints[160].children[0] = 7; +/* 1:40 */waypoints[160].angles = (0, -80, 0); +/* 1:40 */waypoints[161] = spawnstruct(); +/* 1:40 */waypoints[161].origin = (-266, -103, -239); +/* 1:40 */waypoints[161].type = "grenade"; +/* 1:40 */waypoints[161].childCount = 1; +/* 1:40 */waypoints[161].children[0] = 16; +/* 1:40 */waypoints[161].angles = (-34, 70, 0); +/* 1:40 */waypoints[162] = spawnstruct(); +/* 1:40 */waypoints[162].origin = (1508, 895, -230); +/* 1:40 */waypoints[162].type = "stand"; +/* 1:40 */waypoints[162].childCount = 2; +/* 1:40 */waypoints[162].children[0] = 4; +/* 1:40 */waypoints[162].children[1] = 3; +/* 1:40 */waypoints[163] = spawnstruct(); +/* 1:40 */waypoints[163].origin = (1636, 279, -228); +/* 1:40 */waypoints[163].type = "stand"; +/* 1:40 */waypoints[163].childCount = 3; +/* 1:40 */waypoints[163].children[0] = 6; +/* 1:40 */waypoints[163].children[1] = 114; +/* 1:40 */waypoints[163].children[2] = 157; +/* 1:40 */waypoints[164] = spawnstruct(); +/* 1:40 */waypoints[164].origin = (502, 896, 148); +/* 1:40 */waypoints[164].type = "stand"; +/* 1:40 */waypoints[164].childCount = 2; +/* 1:40 */waypoints[164].children[0] = 149; +/* 1:40 */waypoints[164].children[1] = 165; +/* 1:40 */waypoints[165] = spawnstruct(); +/* 1:40 */waypoints[165].origin = (509, 943, 175); +/* 1:40 */waypoints[165].type = "climb"; +/* 1:40 */waypoints[165].childCount = 2; +/* 1:40 */waypoints[165].children[0] = 164; +/* 1:40 */waypoints[165].children[1] = 166; +/* 1:40 */waypoints[165].angles = (0, 79, 0); +/* 1:40 */waypoints[166] = spawnstruct(); +/* 1:40 */waypoints[166].origin = (516, 1008, 268); +/* 1:40 */waypoints[166].type = "climb"; +/* 1:40 */waypoints[166].childCount = 2; +/* 1:40 */waypoints[166].children[0] = 165; +/* 1:40 */waypoints[166].children[1] = 173; +/* 1:40 */waypoints[166].angles = (-1, 80, 0); +/* 1:40 */waypoints[167] = spawnstruct(); +/* 1:40 */waypoints[167].origin = (660, 1008, 274); +/* 1:40 */waypoints[167].type = "stand"; +/* 1:40 */waypoints[167].childCount = 2; +/* 1:40 */waypoints[167].children[0] = 146; +/* 1:40 */waypoints[167].children[1] = 119; +/* 1:40 */waypoints[168] = spawnstruct(); +/* 1:40 */waypoints[168].origin = (1354, 979, -230); +/* 1:40 */waypoints[168].type = "stand"; +/* 1:40 */waypoints[168].childCount = 2; +/* 1:40 */waypoints[168].children[0] = 72; +/* 1:40 */waypoints[168].children[1] = 169; +/* 1:40 */waypoints[169] = spawnstruct(); +/* 1:40 */waypoints[169].origin = (1384, 982, -232); +/* 1:40 */waypoints[169].type = "climb"; +/* 1:40 */waypoints[169].childCount = 2; +/* 1:40 */waypoints[169].children[0] = 168; +/* 1:40 */waypoints[169].children[1] = 170; +/* 1:40 */waypoints[169].angles = (7, 0, 0); +/* 1:40 */waypoints[170] = spawnstruct(); +/* 1:40 */waypoints[170].origin = (1458, 984, -132); +/* 1:40 */waypoints[170].type = "climb"; +/* 1:40 */waypoints[170].childCount = 2; +/* 1:40 */waypoints[170].children[0] = 169; +/* 1:40 */waypoints[170].children[1] = 171; +/* 1:40 */waypoints[170].angles = (-4, 1, 0); +/* 1:40 */waypoints[171] = spawnstruct(); +/* 1:40 */waypoints[171].origin = (1486, 991, -133); +/* 1:40 */waypoints[171].type = "stand"; +/* 1:40 */waypoints[171].childCount = 2; +/* 1:40 */waypoints[171].children[0] = 170; +/* 1:40 */waypoints[171].children[1] = 172; +/* 1:40 */waypoints[172] = spawnstruct(); +/* 1:40 */waypoints[172].origin = (1596, 849, -136); +/* 1:40 */waypoints[172].type = "stand"; +/* 1:40 */waypoints[172].childCount = 1; +/* 1:40 */waypoints[172].children[0] = 171; +/* 1:40 */waypoints[173] = spawnstruct(); +/* 1:40 */waypoints[173].origin = (535, 1026, 268); +/* 1:40 */waypoints[173].type = "stand"; +/* 1:40 */waypoints[173].childCount = 2; +/* 1:40 */waypoints[173].children[0] = 119; +/* 1:40 */waypoints[173].children[1] = 166; +/* 1:40 */waypoints[174] = spawnstruct(); +/* 1:40 */waypoints[174].origin = (556, 1008, 18); +/* 1:40 */waypoints[174].type = "stand"; +/* 1:40 */waypoints[174].childCount = 2; +/* 1:40 */waypoints[174].children[0] = 151; +/* 1:40 */waypoints[174].children[1] = 152; +/* 1:40 */waypoints[175] = spawnstruct(); +/* 1:40 */waypoints[175].origin = (1382.53, 1493.33, -234.335); +/* 1:40 */waypoints[175].type = "javelin"; +/* 1:40 */waypoints[175].childCount = 1; +/* 1:40 */waypoints[175].children[0] = 80; +/* 1:40 */waypoints[175].jav_point = (-20.7808, 1527.84, 731.487); +/* 1:40 */return waypoints; +} diff --git a/raw/maps/mp/bots/waypoints/testmap.gsc b/raw/maps/mp/bots/waypoints/testmap.gsc new file mode 100644 index 0000000..50ab6af --- /dev/null +++ b/raw/maps/mp/bots/waypoints/testmap.gsc @@ -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; +} \ No newline at end of file