diff --git a/maps/mp/bots/_bot.gsc b/maps/mp/bots/_bot.gsc index 084b7c9..1405931 100644 --- a/maps/mp/bots/_bot.gsc +++ b/maps/mp/bots/_bot.gsc @@ -23,11 +23,6 @@ init() if (!getDvarInt("bots_main")) return; - if(getDvar("bots_main_lowmem") == "") - setDvar("bots_main_lowmem", false);//lower memory usage mode, more cpu - - level.bots_lowmem = getDvarInt("bots_main_lowmem"); - thread load_waypoints(); thread hook_callbacks(); diff --git a/maps/mp/bots/_bot_internal.gsc b/maps/mp/bots/_bot_internal.gsc index 168cc67..93788fa 100644 --- a/maps/mp/bots/_bot_internal.gsc +++ b/maps/mp/bots/_bot_internal.gsc @@ -1814,7 +1814,7 @@ cleanUpAStar(team) self waittill_any("death", "disconnect", "kill_goal"); for(i = self.bot.astar.size - 1; i >= 0; i--) - level.waypoints[self.bot.astar[i]].bots[team]--; + RemoveWaypointUsage(self.bot.astar[i], team); } /* @@ -1842,7 +1842,7 @@ removeAStar() remove = self.bot.astar.size-1; if(level.teamBased) - level.waypoints[self.bot.astar[remove]].bots[self.team]--; + RemoveWaypointUsage(self.bot.astar[remove], self.team); self.bot.astar[remove] = undefined; diff --git a/maps/mp/bots/_bot_script.gsc b/maps/mp/bots/_bot_script.gsc index d750f99..4250823 100644 --- a/maps/mp/bots/_bot_script.gsc +++ b/maps/mp/bots/_bot_script.gsc @@ -1735,47 +1735,6 @@ bots_watch_touch_obj(obj) } } -/* - Is bot near any of the given waypoints -*/ -nearAnyOfWaypoints(dist, waypoints) -{ - dist *= dist; - for (i = 0; i < waypoints.size; i++) - { - waypoint = waypoints[i]; - - if (DistanceSquared(waypoint.origin, self.origin) > dist) - continue; - - return true; - } - - return false; -} - -/* - Returns nearest waypoint of waypoints -*/ -getNearestWaypointOfWaypoints(waypoints) -{ - answer = undefined; - closestDist = 2147483647; - for (i = 0; i < waypoints.size; i++) - { - waypoint = waypoints[i]; - thisDist = DistanceSquared(self.origin, waypoint.origin); - - if (isDefined(answer) && thisDist > closestDist) - continue; - - answer = waypoint; - closestDist = thisDist; - } - - return answer; -} - /* Watches while the obj is being carried, calls 'goal' when complete */ @@ -2085,16 +2044,7 @@ bot_think_camp() if(randomInt(100) > self.pers["bots"]["behavior"]["camp"]) continue; - campSpots = []; - distSq = 1024*1024; - for (i = 0; i < level.waypointsCamp.size; i++) - { - if (DistanceSquared(self.origin, level.waypointsCamp[i].origin) > distSq) - continue; - - campSpots[campSpots.size] = level.waypointsCamp[i]; - } - campSpot = random(campSpots); + campSpot = getWaypointForIndex(random(self waypointsNear(getWaypointsOfType("camp"), 1024))); if (!isDefined(campSpot)) continue; @@ -2346,19 +2296,9 @@ bot_use_tube_think() continue; loc = undefined; - - if (!self nearAnyOfWaypoints(128, level.waypointsTube)) + if (!self nearAnyOfWaypoints(128, getWaypointsOfType("tube"))) { - tubeWps = []; - distSq = 1024*1024; - for (i = 0; i < level.waypointsTube.size; i++) - { - if (DistanceSquared(self.origin, level.waypointsTube[i].origin) > distSq) - continue; - - tubeWps[tubeWps.size] = level.waypointsTube[i]; - } - tubeWp = random(tubeWps); + tubeWp = getWaypointForIndex(random(self waypointsNear(getWaypointsOfType("tube"), 1024))); myEye = self GetEye(); if (!isDefined(tubeWp) || self HasScriptGoal() || self.bot_lock_goal) @@ -2396,7 +2336,7 @@ bot_use_tube_think() } else { - tubeWp = self getNearestWaypointOfWaypoints(level.waypointsTube); + tubeWp = getWaypointForIndex(self getNearestWaypointOfWaypoints(getWaypointsOfType("tube"))); loc = tubeWp.origin + AnglesToForward(tubeWp.angles) * 2048; } @@ -2485,18 +2425,9 @@ bot_use_equipment_think() loc = undefined; - if (!self nearAnyOfWaypoints(128, level.waypointsClay)) + if (!self nearAnyOfWaypoints(128, getWaypointsOfType("claymore"))) { - clayWps = []; - distSq = 1024*1024; - for (i = 0; i < level.waypointsClay.size; i++) - { - if (DistanceSquared(self.origin, level.waypointsClay[i].origin) > distSq) - continue; - - clayWps[clayWps.size] = level.waypointsClay[i]; - } - clayWp = random(clayWps); + clayWp = getWaypointForIndex(random(self waypointsNear(getWaypointsOfType("claymore"), 1024))); if (!isDefined(clayWp) || self HasScriptGoal() || self.bot_lock_goal) { @@ -2524,7 +2455,7 @@ bot_use_equipment_think() } else { - clayWp = self getNearestWaypointOfWaypoints(level.waypointsClay); + clayWp = getWaypointForIndex(self getNearestWaypointOfWaypoints(getWaypointsOfType("claymore"))); loc = clayWp.origin + AnglesToForward(clayWp.angles) * 2048; } @@ -2593,18 +2524,9 @@ bot_use_grenade_think() loc = undefined; - if (!self nearAnyOfWaypoints(128, level.waypointsGren)) + if (!self nearAnyOfWaypoints(128, getWaypointsOfType("grenade"))) { - nadeWps = []; - distSq = 1024*1024; - for (i = 0; i < level.waypointsGren.size; i++) - { - if (DistanceSquared(self.origin, level.waypointsGren[i].origin) > distSq) - continue; - - nadeWps[nadeWps.size] = level.waypointsGren[i]; - } - nadeWp = random(nadeWps); + nadeWp = getWaypointForIndex(random(self waypointsNear(getWaypointsOfType("grenade"), 1024))); myEye = self GetEye(); if (!isDefined(nadeWp) || self HasScriptGoal() || self.bot_lock_goal) @@ -2642,7 +2564,7 @@ bot_use_grenade_think() } else { - nadeWp = self getNearestWaypointOfWaypoints(level.waypointsGren); + nadeWp = getWaypointForIndex(self getNearestWaypointOfWaypoints(getWaypointsOfType("grenade"))); loc = nadeWp.origin + AnglesToForward(nadeWp.angles) * 2048; } @@ -2848,18 +2770,9 @@ bot_jav_loc_think() loc = undefined; - if (!self nearAnyOfWaypoints(128, level.waypointsJav)) + if (!self nearAnyOfWaypoints(128, getWaypointsOfType("javelin"))) { - javWps = []; - distSq = 1024*1024; - for (i = 0; i < level.waypointsJav.size; i++) - { - if (DistanceSquared(self.origin, level.waypointsJav[i].origin) > distSq) - continue; - - javWps[javWps.size] = level.waypointsJav[i]; - } - javWp = random(javWps); + javWp = getWaypointForIndex(random(self waypointsNear(getWaypointsOfType("javelin"), 1024))); if (!isDefined(javWp) || self HasScriptGoal() || self.bot_lock_goal) { @@ -2895,7 +2808,7 @@ bot_jav_loc_think() } else { - javWp = self getNearestWaypointOfWaypoints(level.waypointsJav); + javWp = getWaypointForIndex(self getNearestWaypointOfWaypoints(getWaypointsOfType("javelin"))); loc = javWp.jav_point; } @@ -4356,18 +4269,9 @@ bot_killstreak_think() if (self inLastStand()) continue; - if (lifeId == self.deaths && !self HasScriptGoal() && !self.bot_lock_goal && maps\mp\killstreaks\_killstreaks::isRideKillstreak(streakName) && !self nearAnyOfWaypoints(128, level.waypointsCamp)) + if (lifeId == self.deaths && !self HasScriptGoal() && !self.bot_lock_goal && maps\mp\killstreaks\_killstreaks::isRideKillstreak(streakName) && !self nearAnyOfWaypoints(128, getWaypointsOfType("camp"))) { - campSpots = []; - distSq = 1024*1024; - for (i = 0; i < level.waypointsCamp.size; i++) - { - if (DistanceSquared(self.origin, level.waypointsCamp[i].origin) > distSq) - continue; - - campSpots[campSpots.size] = level.waypointsCamp[i]; - } - campSpot = random(campSpots); + campSpot = getWaypointForIndex(random(self waypointsNear(getWaypointsOfType("camp"), 1024))); if (isDefined(campSpot)) { diff --git a/maps/mp/bots/_bot_utility.gsc b/maps/mp/bots/_bot_utility.gsc index f4a3449..f3b3aed 100644 --- a/maps/mp/bots/_bot_utility.gsc +++ b/maps/mp/bots/_bot_utility.gsc @@ -780,7 +780,6 @@ parseTokensIntoWaypoint(tokens) childStr = tokens[1]; childToks = strtok(childStr, " "); - waypoint.childCount = childToks.size; waypoint.children = []; for( j=0; j dist) + continue; + + return true; } - - level.waypointsCamp = []; - level.waypointsTube = []; - level.waypointsGren = []; - level.waypointsClay = []; - level.waypointsJav = []; - + + return false; +} + +/* + Returns the waypoints that are near +*/ +waypointsNear(waypoints, dist) +{ + dist *= dist; + + answer = []; + + for (i = 0; i < waypoints.size; i++) + { + wp = level.waypoints[waypoints[i]]; + + if (DistanceSquared(wp.origin, self.origin) > dist) + continue; + + answer[answer.size] = waypoints[i]; + } + + return answer; +} + +/* + Returns nearest waypoint of waypoints +*/ +getNearestWaypointOfWaypoints(waypoints) +{ + answer = undefined; + closestDist = 2147483647; + for (i = 0; i < waypoints.size; i++) + { + waypoint = level.waypoints[waypoints[i]]; + thisDist = DistanceSquared(self.origin, waypoint.origin); + + if (isDefined(answer) && thisDist > closestDist) + continue; + + answer = waypoints[i]; + closestDist = thisDist; + } + + return answer; +} + +/* + Returns all waypoints of type +*/ +getWaypointsOfType(type) +{ + answer = []; for(i = 0; i < level.waypointCount; i++) - if(level.waypoints[i].type == "crouch" && level.waypoints[i].childCount == 1) - level.waypointsCamp[level.waypointsCamp.size] = level.waypoints[i]; - else if(level.waypoints[i].type == "tube") - level.waypointsTube[level.waypointsTube.size] = level.waypoints[i]; - else if(level.waypoints[i].type == "grenade") - level.waypointsGren[level.waypointsGren.size] = level.waypoints[i]; - else if(level.waypoints[i].type == "claymore") - level.waypointsClay[level.waypointsClay.size] = level.waypoints[i]; - else if(level.waypoints[i].type == "javelin") - level.waypointsJav[level.waypointsJav.size] = level.waypoints[i]; + { + wp = level.waypoints[i]; + + if (type == "camp") + { + if (wp.type != "crouch") + continue; + + if (wp.children.size != 1) + continue; + } + else if (type != wp.type) + continue; + + answer[answer.size] = i; + } + return answer; +} + +/* + Returns the waypoint for index +*/ +getWaypointForIndex(i) +{ + if (!isDefined(i)) + return undefined; + + return level.waypoints[i]; } /* @@ -1471,6 +1543,23 @@ ReverseHeapAStar(item, item2) return item.f < item2.f; } +/* + Removes the waypoint usage +*/ +RemoveWaypointUsage(wp, team) +{ + if (!isDefined(level.waypointUsage)) + return; + + if (!isDefined(level.waypointUsage[team][wp+""])) + return; + + level.waypointUsage[team][wp+""]--; + + if (level.waypointUsage[team][wp+""] <= 0) + level.waypointUsage[team][wp+""] = undefined; +} + /* Will linearly search for the nearest waypoint to pos that has a direct line of sight. */ @@ -1489,7 +1578,7 @@ GetNearestWaypointWithSight(pos) continue; dist = curdis; - candidate = level.waypoints[i]; + candidate = i; } return candidate; @@ -1510,7 +1599,7 @@ GetNearestWaypoint(pos) continue; dist = curdis; - candidate = level.waypoints[i]; + candidate = i; } return candidate; @@ -1519,71 +1608,48 @@ GetNearestWaypoint(pos) /* Modified Pezbot astar search. This makes use of sets for quick look up and a heap for a priority queue instead of simple lists which require to linearly search for elements everytime. - Also makes use of the KD tree to search for the nearest node to the goal. We only use the closest node from the KD tree if it has a direct line of sight, else we will have to linearly search for one that we have a line of sight on. It is also modified to make paths with bots already on more expensive and will try a less congested path first. Thus spliting up the bots onto more paths instead of just one (the smallest). */ AStarSearch(start, goal, team, greedy_path) { open = NewHeap(::ReverseHeapAStar);//heap openset = [];//set for quick lookup - closed = [];//set for quick lookup - startwp = undefined; - if (level.bots_lowmem) - startwp = getNearestWaypoint(start); - else - startwp = level.waypointsKDTree KDTreeNearest(start);//balanced kdtree, for nns - if(!isDefined(startwp)) + + startWp = getNearestWaypoint(start); + if(!isDefined(startWp)) return []; + _startwp = undefined; - if(!bulletTracePassed(start + (0, 0, 15), startwp.origin + (0, 0, 15), false, undefined)) + if(!bulletTracePassed(start + (0, 0, 15), level.waypoints[startWp].origin + (0, 0, 15), false, undefined)) _startwp = GetNearestWaypointWithSight(start); + if(isDefined(_startwp)) - startwp = _startwp; - startwp = startwp.index; + startWp = _startwp; + - goalwp = undefined; - if (level.bots_lowmem) - goalwp = getNearestWaypoint(goal); - else - goalwp = level.waypointsKDTree KDTreeNearest(goal); - if(!isDefined(goalwp)) + goalWp = getNearestWaypoint(goal); + if(!isDefined(goalWp)) return []; - _goalwp = undefined; - if(!bulletTracePassed(goal + (0, 0, 15), goalwp.origin + (0, 0, 15), false, undefined)) + + _goalWp = undefined; + if(!bulletTracePassed(goal + (0, 0, 15), level.waypoints[goalWp].origin + (0, 0, 15), false, undefined)) _goalwp = GetNearestWaypointWithSight(goal); + if(isDefined(_goalwp)) - goalwp = _goalwp; - goalwp = goalwp.index; + goalWp = _goalwp; - /*storeKey = "astarcache " + startwp + " " + goalwp; - if (StoreHas(storeKey)) - { - path = []; - pathArrStr = tokenizeLine(StoreGet(storeKey), ","); - - pathArrSize = pathArrStr.size; - for (i = 0; i < pathArrSize; i++) - { - path[path.size] = int(pathArrStr[i]); - } - - return path; - }*/ - - goalorg = level.waypoints[goalWp].origin; node = spawnStruct(); node.g = 0; //path dist so far - node.h = DistanceSquared(level.waypoints[startWp].origin, goalorg); //herustic, distance to goal for path finding - //node.f = node.h + node.g; // combine path dist and heru, use reverse heap to sort the priority queue by this attru - node.f = node.h; - node.index = startwp; + node.h = DistanceSquared(level.waypoints[startWp].origin, level.waypoints[goalWp].origin); //herustic, distance to goal for path finding + node.f = node.h + node.g; // combine path dist and heru, use reverse heap to sort the priority queue by this attru + node.index = startWp; node.parent = undefined; //we are start, so we have no parent //push node onto queue - openset[node.index] = node; + openset[node.index+""] = node; open HeapInsert(node); //while the queue is not empty @@ -1592,94 +1658,94 @@ AStarSearch(start, goal, team, greedy_path) //pop bestnode from queue bestNode = open.data[0]; open HeapRemove(); - openset[bestNode.index] = undefined; + openset[bestNode.index+""] = undefined; + wp = level.waypoints[bestNode.index]; //check if we made it to the goal - if(bestNode.index == goalwp) + if(bestNode.index == goalWp) { path = []; - //storeStr = ""; while(isDefined(bestNode)) { - if(isdefined(team)) - level.waypoints[bestNode.index].bots[team]++; + if(isdefined(team) && isDefined(level.waypointUsage)) + { + if (!isDefined(level.waypointUsage[team][bestNode.index+""])) + level.waypointUsage[team][bestNode.index+""] = 0; + + level.waypointUsage[team][bestNode.index+""]++; + } //construct path path[path.size] = bestNode.index; - - //storeStr += bestNode.index; bestNode = bestNode.parent; - - /*if (isDefined(bestNode)) - storeStr += ",";*/ } - //StoreSet(storeKey, storeStr); return path; } - - nodeorg = level.waypoints[bestNode.index].origin; - childcount = level.waypoints[bestNode.index].childCount; + //for each child of bestnode - for(i = 0; i < childcount; i++) + for(i = wp.children.size - 1; i >= 0; i--) { - child = level.waypoints[bestNode.index].children[i]; - childorg = level.waypoints[child].origin; - childtype = level.waypoints[child].type; + child = wp.children[i]; + childWp = level.waypoints[child]; penalty = 1; - if(!greedy_path && isdefined(team)) + if(!greedy_path && isdefined(team) && isDefined(level.waypointUsage)) { - temppen = level.waypoints[child].bots[team];//consider how many bots are taking this path + temppen = 1; + if (isDefined(level.waypointUsage[team][child+""])) + temppen = level.waypointUsage[team][child+""];//consider how many bots are taking this path + if(temppen > 1) penalty = temppen; } // have certain types of nodes more expensive - if (childtype == "climb" || childtype == "prone") + if (childWp.type == "climb" || childWp.type == "prone") penalty += 4; //calc the total path we have took - newg = bestNode.g + DistanceSquared(nodeorg, childorg)*penalty;//bots on same team's path are more expensive + newg = bestNode.g + DistanceSquared(wp.origin, childWp.origin)*penalty;//bots on same team's path are more expensive //check if this child is in open or close with a g value less than newg - inopen = isDefined(openset[child]); - if(inopen && openset[child].g <= newg) + inopen = isDefined(openset[child+""]); + if(inopen && openset[child+""].g <= newg) continue; - inclosed = isDefined(closed[child]); - if(inclosed && closed[child].g <= newg) + inclosed = isDefined(closed[child+""]); + if(inclosed && closed[child+""].g <= newg) continue; + node = undefined; if(inopen) - node = openset[child]; + node = openset[child+""]; else if(inclosed) - node = closed[child]; + node = closed[child+""]; else node = spawnStruct(); node.parent = bestNode; node.g = newg; - node.h = DistanceSquared(childorg, goalorg); + node.h = DistanceSquared(childWp.origin, level.waypoints[goalWp].origin); node.f = node.g + node.h; node.index = child; //check if in closed, remove it if(inclosed) - closed[child] = undefined; + closed[child+""] = undefined; //check if not in open, add it if(!inopen) { open HeapInsert(node); - openset[child] = node; + openset[child+""] = node; } } //done with children, push onto closed - closed[bestNode.index] = bestNode; + closed[bestNode.index+""] = bestNode; } return []; diff --git a/maps/mp/bots/_wp_editor.gsc b/maps/mp/bots/_wp_editor.gsc index 9f3d055..ef080d3 100644 --- a/maps/mp/bots/_wp_editor.gsc +++ b/maps/mp/bots/_wp_editor.gsc @@ -57,7 +57,6 @@ init() level.waypoints = []; level.waypointCount = 0; - level.bots_lowmem = false; level waittill( "connected", player); player thread onPlayerSpawned(); @@ -315,13 +314,13 @@ updateWaypointsStats() { drawWaypoint(i); - for(h = 0; h < level.waypoints[i].childCount; h++) + for(h = level.waypoints[i].children.size - 1; h >= 0; h--) showWpLink(i, level.waypoints[i].children[h]); } } // mw3 doesnt have debug gsc calls :( - /*for(h = 0; h < level.waypoints[i].childCount; h++) + /*for(h = level.waypoints[i].children.size - 1; h >= 0; h--) line(wpOrg, level.waypoints[level.waypoints[i].children[h]].origin + (0, 0, 25), (1,0,1)); if(getConeDot(wpOrg, myEye, myAngles) > getDvarFloat("bots_main_debug_cone")) @@ -507,12 +506,11 @@ watchSaveWaypointsCommand() logprint("*/waypoints["+i+"] = spawnstruct();\n/*"); logprint("*/waypoints["+i+"].origin = "+level.waypoints[i].origin+";\n/*"); logprint("*/waypoints["+i+"].type = \""+level.waypoints[i].type+"\";\n/*"); - logprint("*/waypoints["+i+"].childCount = "+level.waypoints[i].childCount+";\n/*"); - for(c = 0; c < level.waypoints[i].childCount; c++) + for(c = 0; c < level.waypoints[i].children.size; c++) { logprint("*/waypoints["+i+"].children["+c+"] = "+level.waypoints[i].children[c]+";\n/*"); } - if(isDefined(level.waypoints[i].angles) && (level.waypoints[i].type == "claymore" || level.waypoints[i].type == "tube" || (level.waypoints[i].type == "crouch" && level.waypoints[i].childCount == 1) || level.waypoints[i].type == "climb" || level.waypoints[i].type == "grenade")) + 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")) logprint("*/waypoints["+i+"].angles = "+level.waypoints[i].angles+";\n/*"); if (isDefined(level.waypoints[i].jav_point) && level.waypoints[i].type == "javelin") @@ -533,11 +531,11 @@ watchSaveWaypointsCommand() str += wp.origin[0] + " " + wp.origin[1] + " " + wp.origin[2] + ","; - for(h = 0; h < wp.childCount; h++) + for(h = 0; h < wp.children.size; h++) { str += wp.children[h]; - if (h < wp.childCount - 1) + if (h < wp.children.size - 1) str += " "; } str += "," + wp.type + ","; @@ -588,8 +586,8 @@ checkForWarnings() continue; } - if(level.waypoints[i].childCount <= 0) - self iprintln("WARNING: waypoint "+i+" childCount is "+level.waypoints[i].childCount); + if(level.waypoints[i].children.size <= 0) + self iprintln("WARNING: waypoint "+i+" childCount is "+level.waypoints[i].children.size); else { if (!isDefined(level.waypoints[i].children) || !isDefined(level.waypoints[i].children.size)) @@ -598,10 +596,7 @@ checkForWarnings() } else { - if(level.waypoints[i].childCount != level.waypoints[i].children.size) - self iprintln("WARNING: waypoint "+i+" childCount is not "+level.waypoints[i].children.size); - - for (h = 0; h < level.waypoints[i].childCount; h++) + for(h = level.waypoints[i].children.size - 1; h >= 0; h--) { child = level.waypoints[i].children[h]; @@ -622,7 +617,7 @@ checkForWarnings() if (level.waypoints[i].type == "javelin" && !isDefined(level.waypoints[i].jav_point)) self iprintln("WARNING: waypoint "+i+" jav_point is undefined"); - if(!isDefined(level.waypoints[i].angles) && (level.waypoints[i].type == "claymore" || level.waypoints[i].type == "tube" || (level.waypoints[i].type == "crouch" && level.waypoints[i].childCount == 1) || level.waypoints[i].type == "climb" || level.waypoints[i].type == "grenade")) + 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"); } } @@ -646,9 +641,6 @@ UnLinkWaypoint(nwp) level.waypoints[nwp].children = array_remove(level.waypoints[nwp].children, level.wpToLink); level.waypoints[level.wpToLink].children = array_remove(level.waypoints[level.wpToLink].children, nwp); - level.waypoints[nwp].childCount = level.waypoints[nwp].children.size; - level.waypoints[level.wpToLink].childCount = level.waypoints[level.wpToLink].children.size; - self iprintln("Waypoint " + nwp + " Broken to " + level.wpToLink); level.wpToLink = -1; } @@ -670,7 +662,7 @@ LinkWaypoint(nwp) } weGood = true; - for (i = 0; i < level.waypoints[level.wpToLink].childCount; i++) + for(i = level.waypoints[level.wpToLink].children.size - 1; i >= 0; i--) { child = level.waypoints[level.wpToLink].children[i]; @@ -683,7 +675,7 @@ LinkWaypoint(nwp) if(weGood) { - for (i = 0; i < level.waypoints[nwp].childCount; i++) + for(i = level.waypoints[nwp].children.size - 1; i >= 0; i--) { child = level.waypoints[nwp].children[i]; @@ -702,10 +694,8 @@ LinkWaypoint(nwp) return; } - level.waypoints[level.wpToLink].children[level.waypoints[level.wpToLink].childcount] = nwp; - level.waypoints[level.wpToLink].childcount++; - level.waypoints[nwp].children[level.waypoints[nwp].childcount] = level.wpToLink; - level.waypoints[nwp].childcount++; + level.waypoints[level.wpToLink].children[level.waypoints[level.wpToLink].children.size] = nwp; + level.waypoints[nwp].children[level.waypoints[nwp].children.size] = level.wpToLink; self iprintln("Waypoint " + nwp + " Linked to " + level.wpToLink); level.wpToLink = -1; @@ -721,18 +711,16 @@ DeleteWaypoint(nwp) level.wpToLink = -1; - for (i = 0; i < level.waypoints[nwp].childCount; i++) + for(i = level.waypoints[nwp].children.size - 1; i >= 0; i--) { child = level.waypoints[nwp].children[i]; level.waypoints[child].children = array_remove(level.waypoints[child].children, nwp); - - level.waypoints[child].childCount = level.waypoints[child].children.size; } for(i = 0; i < level.waypointCount; i++) { - for(h = 0; h < level.waypoints[i].childCount; h++) + for(h = level.waypoints[i].children.size - 1; h >= 0; h--) { if(level.waypoints[i].children[h] > nwp) level.waypoints[i].children[h]--; @@ -780,7 +768,6 @@ AddWaypoint() level.waypoints[level.waypointCount].angles = self getPlayerAngles(); level.waypoints[level.waypointCount].children = []; - level.waypoints[level.waypointCount].childCount = 0; if (level.waypoints[level.waypointCount].type == "javelin") { @@ -807,13 +794,6 @@ DeleteAllWaypoints() { level.waypoints = []; level.waypointCount = 0; - level.waypointsKDTree = WaypointsToKDTree(); - - level.waypointsCamp = []; - level.waypointsTube = []; - level.waypointsGren = []; - level.waypointsClay = []; - level.waypointsJav = []; self iprintln("DelAllWps"); } @@ -823,7 +803,7 @@ buildChildCountString ( wp ) if ( wp == -1 ) return ""; - wpstr = level.waypoints[wp].childCount + ""; + wpstr = level.waypoints[wp].children.size + ""; return wpstr; } @@ -835,7 +815,7 @@ buildChildString( wp ) wpstr = ""; - for(i = 0; i < level.waypoints[wp].childCount; i++) + for(i = 0; i < level.waypoints[wp].children.size; i++) { if(i != 0) wpstr = wpstr + "," + level.waypoints[wp].children[i]; diff --git a/maps/mp/bots/waypoints/dome.gsc b/maps/mp/bots/waypoints/dome.gsc index 18a52f9..aa1ef5d 100644 --- a/maps/mp/bots/waypoints/dome.gsc +++ b/maps/mp/bots/waypoints/dome.gsc @@ -1,1295 +1,1113 @@ Dome() { -waypoints = []; -waypoints[0] = spawnstruct(); -waypoints[0].origin = (-140.626, 2103.48, -290.875); -waypoints[0].type = "stand"; -waypoints[0].childCount = 2; -waypoints[0].children[0] = 1; -waypoints[0].children[1] = 45; -waypoints[1] = spawnstruct(); -waypoints[1].origin = (141.937, 2091.96, -290.875); -waypoints[1].type = "stand"; -waypoints[1].childCount = 3; -waypoints[1].children[0] = 0; -waypoints[1].children[1] = 2; -waypoints[1].children[2] = 47; -waypoints[2] = spawnstruct(); -waypoints[2].origin = (451.907, 2066.25, -254.875); -waypoints[2].type = "stand"; -waypoints[2].childCount = 5; -waypoints[2].children[0] = 1; -waypoints[2].children[1] = 3; -waypoints[2].children[2] = 77; -waypoints[2].children[3] = 74; -waypoints[2].children[4] = 164; -waypoints[3] = spawnstruct(); -waypoints[3].origin = (430.25, 1747.91, -254.875); -waypoints[3].type = "stand"; -waypoints[3].childCount = 3; -waypoints[3].children[0] = 2; -waypoints[3].children[1] = 4; -waypoints[3].children[2] = 79; -waypoints[4] = spawnstruct(); -waypoints[4].origin = (636.671, 1713.11, -247.381); -waypoints[4].type = "stand"; -waypoints[4].childCount = 3; -waypoints[4].children[0] = 3; -waypoints[4].children[1] = 5; -waypoints[4].children[2] = 74; -waypoints[5] = spawnstruct(); -waypoints[5].origin = (1115.07, 1698.27, -254.875); -waypoints[5].type = "stand"; -waypoints[5].childCount = 3; -waypoints[5].children[0] = 4; -waypoints[5].children[1] = 6; -waypoints[5].children[2] = 71; -waypoints[6] = spawnstruct(); -waypoints[6].origin = (1333.3, 1679.45, -254.875); -waypoints[6].type = "stand"; -waypoints[6].childCount = 3; -waypoints[6].children[0] = 5; -waypoints[6].children[1] = 7; -waypoints[6].children[2] = 64; -waypoints[7] = spawnstruct(); -waypoints[7].origin = (1319.74, 1407.28, -254.875); -waypoints[7].type = "stand"; -waypoints[7].childCount = 3; -waypoints[7].children[0] = 6; -waypoints[7].children[1] = 8; -waypoints[7].children[2] = 63; -waypoints[8] = spawnstruct(); -waypoints[8].origin = (1307.68, 1285.36, -254.875); -waypoints[8].type = "stand"; -waypoints[8].childCount = 3; -waypoints[8].children[0] = 7; -waypoints[8].children[1] = 9; -waypoints[8].children[2] = 179; -waypoints[9] = spawnstruct(); -waypoints[9].origin = (1557.19, 1283.13, -254.875); -waypoints[9].type = "stand"; -waypoints[9].childCount = 4; -waypoints[9].children[0] = 8; -waypoints[9].children[1] = 10; -waypoints[9].children[2] = 62; -waypoints[9].children[3] = 78; -waypoints[10] = spawnstruct(); -waypoints[10].origin = (1588.16, 1082.51, -254.875); -waypoints[10].type = "stand"; -waypoints[10].childCount = 4; -waypoints[10].children[0] = 9; -waypoints[10].children[1] = 11; -waypoints[10].children[2] = 61; -waypoints[10].children[3] = 177; -waypoints[11] = spawnstruct(); -waypoints[11].origin = (1533.04, 589.068, -318.312); -waypoints[11].type = "stand"; -waypoints[11].childCount = 3; -waypoints[11].children[0] = 10; -waypoints[11].children[1] = 12; -waypoints[11].children[2] = 178; -waypoints[12] = spawnstruct(); -waypoints[12].origin = (1390.95, 607.894, -324.887); -waypoints[12].type = "stand"; -waypoints[12].childCount = 4; -waypoints[12].children[0] = 11; -waypoints[12].children[1] = 13; -waypoints[12].children[2] = 57; -waypoints[12].children[3] = 56; -waypoints[13] = spawnstruct(); -waypoints[13].origin = (1331.41, 286.146, -377.336); -waypoints[13].type = "stand"; -waypoints[13].childCount = 4; -waypoints[13].children[0] = 12; -waypoints[13].children[1] = 14; -waypoints[13].children[2] = 81; -waypoints[13].children[3] = 157; -waypoints[14] = spawnstruct(); -waypoints[14].origin = (1297.26, 38.176, -394.269); -waypoints[14].type = "stand"; -waypoints[14].childCount = 4; -waypoints[14].children[0] = 13; -waypoints[14].children[1] = 15; -waypoints[14].children[2] = 89; -waypoints[14].children[3] = 92; -waypoints[15] = spawnstruct(); -waypoints[15].origin = (1361.5, -124.966, -387.006); -waypoints[15].type = "stand"; -waypoints[15].childCount = 4; -waypoints[15].children[0] = 14; -waypoints[15].children[1] = 16; -waypoints[15].children[2] = 92; -waypoints[15].children[3] = 157; -waypoints[16] = spawnstruct(); -waypoints[16].origin = (1349.18, -431.243, -379.903); -waypoints[16].type = "stand"; -waypoints[16].childCount = 3; -waypoints[16].children[0] = 15; -waypoints[16].children[1] = 17; -waypoints[16].children[2] = 181; -waypoints[17] = spawnstruct(); -waypoints[17].origin = (1040.8, -499.492, -384.345); -waypoints[17].type = "stand"; -waypoints[17].childCount = 4; -waypoints[17].children[0] = 16; -waypoints[17].children[1] = 18; -waypoints[17].children[2] = 91; -waypoints[17].children[3] = 93; -waypoints[18] = spawnstruct(); -waypoints[18].origin = (725.226, -547.766, -391.437); -waypoints[18].type = "stand"; -waypoints[18].childCount = 4; -waypoints[18].children[0] = 17; -waypoints[18].children[1] = 19; -waypoints[18].children[2] = 93; -waypoints[18].children[3] = 128; -waypoints[19] = spawnstruct(); -waypoints[19].origin = (550.345, -653.288, -382.519); -waypoints[19].type = "stand"; -waypoints[19].childCount = 2; -waypoints[19].children[0] = 18; -waypoints[19].children[1] = 20; -waypoints[20] = spawnstruct(); -waypoints[20].origin = (431.707, -414.067, -393.9); -waypoints[20].type = "stand"; -waypoints[20].childCount = 3; -waypoints[20].children[0] = 19; -waypoints[20].children[1] = 21; -waypoints[20].children[2] = 128; -waypoints[21] = spawnstruct(); -waypoints[21].origin = (474.186, -181.671, -390.375); -waypoints[21].type = "stand"; -waypoints[21].childCount = 5; -waypoints[21].children[0] = 20; -waypoints[21].children[1] = 22; -waypoints[21].children[2] = 94; -waypoints[21].children[3] = 95; -waypoints[21].children[4] = 170; -waypoints[22] = spawnstruct(); -waypoints[22].origin = (315.047, -105.259, -390.375); -waypoints[22].type = "stand"; -waypoints[22].childCount = 5; -waypoints[22].children[0] = 21; -waypoints[22].children[1] = 23; -waypoints[22].children[2] = 96; -waypoints[22].children[3] = 138; -waypoints[22].children[4] = 139; -waypoints[23] = spawnstruct(); -waypoints[23].origin = (35.6547, -281.57, -390.375); -waypoints[23].type = "stand"; -waypoints[23].childCount = 2; -waypoints[23].children[0] = 22; -waypoints[23].children[1] = 24; -waypoints[24] = spawnstruct(); -waypoints[24].origin = (-142.765, 23.3263, -390.375); -waypoints[24].type = "stand"; -waypoints[24].childCount = 5; -waypoints[24].children[0] = 23; -waypoints[24].children[1] = 25; -waypoints[24].children[2] = 96; -waypoints[24].children[3] = 140; -waypoints[24].children[4] = 141; -waypoints[25] = spawnstruct(); -waypoints[25].origin = (-250.261, 216.223, -402.466); -waypoints[25].type = "stand"; -waypoints[25].childCount = 6; -waypoints[25].children[0] = 24; -waypoints[25].children[1] = 26; -waypoints[25].children[2] = 113; -waypoints[25].children[3] = 118; -waypoints[25].children[4] = 127; -waypoints[25].children[5] = 116; -waypoints[26] = spawnstruct(); -waypoints[26].origin = (-400.662, 138.364, -404.402); -waypoints[26].type = "stand"; -waypoints[26].childCount = 7; -waypoints[26].children[0] = 25; -waypoints[26].children[1] = 27; -waypoints[26].children[2] = 116; -waypoints[26].children[3] = 117; -waypoints[26].children[4] = 142; -waypoints[26].children[5] = 143; -waypoints[26].children[6] = 174; -waypoints[27] = spawnstruct(); -waypoints[27].origin = (-308.795, -18.5752, -394.814); -waypoints[27].type = "stand"; -waypoints[27].childCount = 2; -waypoints[27].children[0] = 26; -waypoints[27].children[1] = 28; -waypoints[28] = spawnstruct(); -waypoints[28].origin = (-401.572, -58.4085, -401.87); -waypoints[28].type = "stand"; -waypoints[28].childCount = 3; -waypoints[28].children[0] = 27; -waypoints[28].children[1] = 29; -waypoints[28].children[2] = 97; -waypoints[29] = spawnstruct(); -waypoints[29].origin = (-719.427, -171.456, -409.2); -waypoints[29].type = "stand"; -waypoints[29].childCount = 3; -waypoints[29].children[0] = 28; -waypoints[29].children[1] = 30; -waypoints[29].children[2] = 117; -waypoints[30] = spawnstruct(); -waypoints[30].origin = (-837.206, -67.7813, -405.806); -waypoints[30].type = "stand"; -waypoints[30].childCount = 3; -waypoints[30].children[0] = 29; -waypoints[30].children[1] = 31; -waypoints[30].children[2] = 117; -waypoints[31] = spawnstruct(); -waypoints[31].origin = (-925.286, 121.522, -416.663); -waypoints[31].type = "stand"; -waypoints[31].childCount = 3; -waypoints[31].children[0] = 30; -waypoints[31].children[1] = 32; -waypoints[31].children[2] = 33; -waypoints[32] = spawnstruct(); -waypoints[32].origin = (-761.614, 254.802, -414.962); -waypoints[32].type = "stand"; -waypoints[32].childCount = 4; -waypoints[32].children[0] = 31; -waypoints[32].children[1] = 33; -waypoints[32].children[2] = 116; -waypoints[32].children[3] = 117; -waypoints[33] = spawnstruct(); -waypoints[33].origin = (-847.034, 449.476, -451.875); -waypoints[33].type = "stand"; -waypoints[33].childCount = 5; -waypoints[33].children[0] = 32; -waypoints[33].children[1] = 34; -waypoints[33].children[2] = 31; -waypoints[33].children[3] = 116; -waypoints[33].children[4] = 145; -waypoints[34] = spawnstruct(); -waypoints[34].origin = (-969.523, 664.428, -451.875); -waypoints[34].type = "stand"; -waypoints[34].childCount = 2; -waypoints[34].children[0] = 33; -waypoints[34].children[1] = 35; -waypoints[35] = spawnstruct(); -waypoints[35].origin = (-1111.27, 873.424, -451.875); -waypoints[35].type = "stand"; -waypoints[35].childCount = 4; -waypoints[35].children[0] = 34; -waypoints[35].children[1] = 36; -waypoints[35].children[2] = 124; -waypoints[35].children[3] = 125; -waypoints[36] = spawnstruct(); -waypoints[36].origin = (-1287.73, 801.399, -451.875); -waypoints[36].type = "stand"; -waypoints[36].childCount = 2; -waypoints[36].children[0] = 35; -waypoints[36].children[1] = 37; -waypoints[37] = spawnstruct(); -waypoints[37].origin = (-1417.17, 1073.99, -423.891); -waypoints[37].type = "stand"; -waypoints[37].childCount = 2; -waypoints[37].children[0] = 36; -waypoints[37].children[1] = 38; -waypoints[38] = spawnstruct(); -waypoints[38].origin = (-1521.36, 1354.2, -427.875); -waypoints[38].type = "stand"; -waypoints[38].childCount = 2; -waypoints[38].children[0] = 37; -waypoints[38].children[1] = 39; -waypoints[39] = spawnstruct(); -waypoints[39].origin = (-1327.86, 1433.06, -451.875); -waypoints[39].type = "stand"; -waypoints[39].childCount = 3; -waypoints[39].children[0] = 38; -waypoints[39].children[1] = 40; -waypoints[39].children[2] = 125; -waypoints[40] = spawnstruct(); -waypoints[40].origin = (-1173.54, 1511.18, -427.875); -waypoints[40].type = "stand"; -waypoints[40].childCount = 3; -waypoints[40].children[0] = 39; -waypoints[40].children[1] = 41; -waypoints[40].children[2] = 126; -waypoints[41] = spawnstruct(); -waypoints[41].origin = (-911.663, 1631.31, -355.875); -waypoints[41].type = "stand"; -waypoints[41].childCount = 2; -waypoints[41].children[0] = 40; -waypoints[41].children[1] = 42; -waypoints[42] = spawnstruct(); -waypoints[42].origin = (-691.944, 1653.04, -347.875); -waypoints[42].type = "stand"; -waypoints[42].childCount = 3; -waypoints[42].children[0] = 41; -waypoints[42].children[1] = 43; -waypoints[42].children[2] = 147; -waypoints[43] = spawnstruct(); -waypoints[43].origin = (-526.375, 1682.81, -283.875); -waypoints[43].type = "stand"; -waypoints[43].childCount = 2; -waypoints[43].children[0] = 42; -waypoints[43].children[1] = 44; -waypoints[44] = spawnstruct(); -waypoints[44].origin = (-382.993, 1695.68, -286.993); -waypoints[44].type = "stand"; -waypoints[44].childCount = 5; -waypoints[44].children[0] = 43; -waypoints[44].children[1] = 45; -waypoints[44].children[2] = 46; -waypoints[44].children[3] = 119; -waypoints[44].children[4] = 120; -waypoints[45] = spawnstruct(); -waypoints[45].origin = (-168.297, 1825.4, -290.875); -waypoints[45].type = "stand"; -waypoints[45].childCount = 4; -waypoints[45].children[0] = 44; -waypoints[45].children[1] = 0; -waypoints[45].children[2] = 46; -waypoints[45].children[3] = 149; -waypoints[46] = spawnstruct(); -waypoints[46].origin = (-89.693, 1677.63, -290.875); -waypoints[46].type = "stand"; -waypoints[46].childCount = 5; -waypoints[46].children[0] = 45; -waypoints[46].children[1] = 47; -waypoints[46].children[2] = 44; -waypoints[46].children[3] = 48; -waypoints[46].children[4] = 120; -waypoints[47] = spawnstruct(); -waypoints[47].origin = (114.637, 1707.08, -290.875); -waypoints[47].type = "stand"; -waypoints[47].childCount = 2; -waypoints[47].children[0] = 46; -waypoints[47].children[1] = 1; -waypoints[48] = spawnstruct(); -waypoints[48].origin = (-101.491, 1476.55, -290.875); -waypoints[48].type = "stand"; -waypoints[48].childCount = 3; -waypoints[48].children[0] = 46; -waypoints[48].children[1] = 120; -waypoints[48].children[2] = 135; -waypoints[49] = spawnstruct(); -waypoints[49].origin = (107.344, 1440.72, -290.875); -waypoints[49].type = "stand"; -waypoints[49].childCount = 2; -waypoints[49].children[0] = 50; -waypoints[49].children[1] = 135; -waypoints[50] = spawnstruct(); -waypoints[50].origin = (39.3621, 1200.41, -294.064); -waypoints[50].type = "stand"; -waypoints[50].childCount = 6; -waypoints[50].children[0] = 49; -waypoints[50].children[1] = 51; -waypoints[50].children[2] = 52; -waypoints[50].children[3] = 109; -waypoints[50].children[4] = 110; -waypoints[50].children[5] = 135; -waypoints[51] = spawnstruct(); -waypoints[51].origin = (258.337, 952.614, -312.547); -waypoints[51].type = "stand"; -waypoints[51].childCount = 3; -waypoints[51].children[0] = 50; -waypoints[51].children[1] = 52; -waypoints[51].children[2] = 110; -waypoints[52] = spawnstruct(); -waypoints[52].origin = (280.264, 1158.05, -310.61); -waypoints[52].type = "stand"; -waypoints[52].childCount = 5; -waypoints[52].children[0] = 51; -waypoints[52].children[1] = 53; -waypoints[52].children[2] = 50; -waypoints[52].children[3] = 136; -waypoints[52].children[4] = 109; -waypoints[53] = spawnstruct(); -waypoints[53].origin = (526.268, 1166.44, -310.556); -waypoints[53].type = "stand"; -waypoints[53].childCount = 3; -waypoints[53].children[0] = 52; -waypoints[53].children[1] = 54; -waypoints[53].children[2] = 108; -waypoints[54] = spawnstruct(); -waypoints[54].origin = (994.21, 1145.78, -262.875); -waypoints[54].type = "stand"; -waypoints[54].childCount = 2; -waypoints[54].children[0] = 53; -waypoints[54].children[1] = 55; -waypoints[55] = spawnstruct(); -waypoints[55].origin = (949.323, 933.281, -321.75); -waypoints[55].type = "stand"; -waypoints[55].childCount = 3; -waypoints[55].children[0] = 54; -waypoints[55].children[1] = 56; -waypoints[55].children[2] = 108; -waypoints[56] = spawnstruct(); -waypoints[56].origin = (1010.72, 809.411, -328.52); -waypoints[56].type = "stand"; -waypoints[56].childCount = 4; -waypoints[56].children[0] = 55; -waypoints[56].children[1] = 57; -waypoints[56].children[2] = 12; -waypoints[56].children[3] = 81; -waypoints[57] = spawnstruct(); -waypoints[57].origin = (1308.6, 753.461, -321.163); -waypoints[57].type = "stand"; -waypoints[57].childCount = 4; -waypoints[57].children[0] = 56; -waypoints[57].children[1] = 12; -waypoints[57].children[2] = 58; -waypoints[57].children[3] = 168; -waypoints[58] = spawnstruct(); -waypoints[58].origin = (1356.77, 997.187, -313.694); -waypoints[58].type = "stand"; -waypoints[58].childCount = 2; -waypoints[58].children[0] = 57; -waypoints[58].children[1] = 59; -waypoints[59] = spawnstruct(); -waypoints[59].origin = (1366.64, 1045.85, -311.667); -waypoints[59].type = "climb"; -waypoints[59].childCount = 2; -waypoints[59].children[0] = 58; -waypoints[59].children[1] = 60; -waypoints[59].angles = (0.284424, 82.8207, 0); -waypoints[60] = spawnstruct(); -waypoints[60].origin = (1371.74, 1061.79, -254.875); -waypoints[60].type = "climb"; -waypoints[60].childCount = 2; -waypoints[60].children[0] = 59; -waypoints[60].children[1] = 61; -waypoints[60].angles = (5.55786, 82.6065, 0); -waypoints[61] = spawnstruct(); -waypoints[61].origin = (1377.94, 1096, -254.875); -waypoints[61].type = "stand"; -waypoints[61].childCount = 2; -waypoints[61].children[0] = 60; -waypoints[61].children[1] = 10; -waypoints[62] = spawnstruct(); -waypoints[62].origin = (1714.13, 1296.49, -254.875); -waypoints[62].type = "stand"; -waypoints[62].childCount = 3; -waypoints[62].children[0] = 9; -waypoints[62].children[1] = 160; -waypoints[62].children[2] = 161; -waypoints[63] = spawnstruct(); -waypoints[63].origin = (1202.76, 1421.01, -254.875); -waypoints[63].type = "stand"; -waypoints[63].childCount = 3; -waypoints[63].children[0] = 7; -waypoints[63].children[1] = 162; -waypoints[63].children[2] = 163; -waypoints[64] = spawnstruct(); -waypoints[64].origin = (1355.06, 1907.43, -254.875); -waypoints[64].type = "stand"; -waypoints[64].childCount = 2; -waypoints[64].children[0] = 6; -waypoints[64].children[1] = 65; -waypoints[65] = spawnstruct(); -waypoints[65].origin = (1393.57, 2328.93, -254.875); -waypoints[65].type = "stand"; -waypoints[65].childCount = 3; -waypoints[65].children[0] = 64; -waypoints[65].children[1] = 66; -waypoints[65].children[2] = 167; -waypoints[66] = spawnstruct(); -waypoints[66].origin = (1170.13, 2381.39, -254.875); -waypoints[66].type = "stand"; -waypoints[66].childCount = 3; -waypoints[66].children[0] = 65; -waypoints[66].children[1] = 67; -waypoints[66].children[2] = 72; -waypoints[67] = spawnstruct(); -waypoints[67].origin = (1014.51, 2377.43, -254.875); -waypoints[67].type = "stand"; -waypoints[67].childCount = 3; -waypoints[67].children[0] = 66; -waypoints[67].children[1] = 73; -waypoints[67].children[2] = 75; -waypoints[68] = spawnstruct(); -waypoints[68].origin = (979.227, 2084.34, -254.875); -waypoints[68].type = "stand"; -waypoints[68].childCount = 2; -waypoints[68].children[0] = 69; -waypoints[68].children[1] = 73; -waypoints[69] = spawnstruct(); -waypoints[69].origin = (902.656, 2024.9, -254.875); -waypoints[69].type = "stand"; -waypoints[69].childCount = 3; -waypoints[69].children[0] = 68; -waypoints[69].children[1] = 70; -waypoints[69].children[2] = 74; -waypoints[70] = spawnstruct(); -waypoints[70].origin = (996.304, 1906.7, -254.875); -waypoints[70].type = "stand"; -waypoints[70].childCount = 2; -waypoints[70].children[0] = 69; -waypoints[70].children[1] = 71; -waypoints[71] = spawnstruct(); -waypoints[71].origin = (1139.33, 1889.9, -254.875); -waypoints[71].type = "stand"; -waypoints[71].childCount = 3; -waypoints[71].children[0] = 70; -waypoints[71].children[1] = 72; -waypoints[71].children[2] = 5; -waypoints[72] = spawnstruct(); -waypoints[72].origin = (1163.52, 2236.09, -254.875); -waypoints[72].type = "stand"; -waypoints[72].childCount = 3; -waypoints[72].children[0] = 71; -waypoints[72].children[1] = 66; -waypoints[72].children[2] = 73; -waypoints[73] = spawnstruct(); -waypoints[73].origin = (994.506, 2264.26, -254.875); -waypoints[73].type = "stand"; -waypoints[73].childCount = 3; -waypoints[73].children[0] = 68; -waypoints[73].children[1] = 67; -waypoints[73].children[2] = 72; -waypoints[74] = spawnstruct(); -waypoints[74].origin = (682.072, 2050.36, -251.554); -waypoints[74].type = "stand"; -waypoints[74].childCount = 4; -waypoints[74].children[0] = 69; -waypoints[74].children[1] = 75; -waypoints[74].children[2] = 2; -waypoints[74].children[3] = 4; -waypoints[75] = spawnstruct(); +/* 0:09 */waypoints = []; +/* 0:09 */waypoints[0] = spawnstruct(); +/* 0:09 */waypoints[0].origin = (-140.626, 2103.48, -290.875); +/* 0:09 */waypoints[0].type = "stand"; +/* 0:09 */waypoints[0].children[0] = 1; +/* 0:09 */waypoints[0].children[1] = 45; +/* 0:09 */waypoints[1] = spawnstruct(); +/* 0:09 */waypoints[1].origin = (141.937, 2091.96, -290.875); +/* 0:09 */waypoints[1].type = "stand"; +/* 0:09 */waypoints[1].children[0] = 0; +/* 0:09 */waypoints[1].children[1] = 2; +/* 0:09 */waypoints[1].children[2] = 47; +/* 0:09 */waypoints[2] = spawnstruct(); +/* 0:09 */waypoints[2].origin = (451.907, 2066.25, -254.875); +/* 0:09 */waypoints[2].type = "stand"; +/* 0:09 */waypoints[2].children[0] = 1; +/* 0:09 */waypoints[2].children[1] = 3; +/* 0:09 */waypoints[2].children[2] = 77; +/* 0:09 */waypoints[2].children[3] = 74; +/* 0:09 */waypoints[2].children[4] = 164; +/* 0:09 */waypoints[3] = spawnstruct(); +/* 0:09 */waypoints[3].origin = (430.25, 1747.91, -254.875); +/* 0:09 */waypoints[3].type = "stand"; +/* 0:09 */waypoints[3].children[0] = 2; +/* 0:09 */waypoints[3].children[1] = 4; +/* 0:09 */waypoints[3].children[2] = 79; +/* 0:09 */waypoints[4] = spawnstruct(); +/* 0:09 */waypoints[4].origin = (636.671, 1713.11, -247.381); +/* 0:09 */waypoints[4].type = "stand"; +/* 0:09 */waypoints[4].children[0] = 3; +/* 0:09 */waypoints[4].children[1] = 5; +/* 0:09 */waypoints[4].children[2] = 74; +/* 0:09 */waypoints[5] = spawnstruct(); +/* 0:09 */waypoints[5].origin = (1115.07, 1698.27, -254.875); +/* 0:09 */waypoints[5].type = "stand"; +/* 0:09 */waypoints[5].children[0] = 4; +/* 0:09 */waypoints[5].children[1] = 6; +/* 0:09 */waypoints[5].children[2] = 71; +/* 0:09 */waypoints[6] = spawnstruct(); +/* 0:09 */waypoints[6].origin = (1333.3, 1679.45, -254.875); +/* 0:09 */waypoints[6].type = "stand"; +/* 0:09 */waypoints[6].children[0] = 5; +/* 0:09 */waypoints[6].children[1] = 7; +/* 0:09 */waypoints[6].children[2] = 64; +/* 0:09 */waypoints[7] = spawnstruct(); +/* 0:09 */waypoints[7].origin = (1319.74, 1407.28, -254.875); +/* 0:09 */waypoints[7].type = "stand"; +/* 0:09 */waypoints[7].children[0] = 6; +/* 0:09 */waypoints[7].children[1] = 8; +/* 0:09 */waypoints[7].children[2] = 63; +/* 0:09 */waypoints[8] = spawnstruct(); +/* 0:09 */waypoints[8].origin = (1307.68, 1285.36, -254.875); +/* 0:09 */waypoints[8].type = "stand"; +/* 0:09 */waypoints[8].children[0] = 7; +/* 0:09 */waypoints[8].children[1] = 9; +/* 0:09 */waypoints[8].children[2] = 179; +/* 0:09 */waypoints[9] = spawnstruct(); +/* 0:09 */waypoints[9].origin = (1557.19, 1283.13, -254.875); +/* 0:09 */waypoints[9].type = "stand"; +/* 0:09 */waypoints[9].children[0] = 8; +/* 0:09 */waypoints[9].children[1] = 10; +/* 0:09 */waypoints[9].children[2] = 62; +/* 0:09 */waypoints[9].children[3] = 78; +/* 0:09 */waypoints[10] = spawnstruct(); +/* 0:09 */waypoints[10].origin = (1588.16, 1082.51, -254.875); +/* 0:09 */waypoints[10].type = "stand"; +/* 0:09 */waypoints[10].children[0] = 9; +/* 0:09 */waypoints[10].children[1] = 11; +/* 0:09 */waypoints[10].children[2] = 61; +/* 0:09 */waypoints[10].children[3] = 177; +/* 0:09 */waypoints[11] = spawnstruct(); +/* 0:09 */waypoints[11].origin = (1533.04, 589.068, -318.312); +/* 0:09 */waypoints[11].type = "stand"; +/* 0:09 */waypoints[11].children[0] = 10; +/* 0:09 */waypoints[11].children[1] = 12; +/* 0:09 */waypoints[11].children[2] = 178; +/* 0:09 */waypoints[12] = spawnstruct(); +/* 0:09 */waypoints[12].origin = (1390.95, 607.894, -324.887); +/* 0:09 */waypoints[12].type = "stand"; +/* 0:09 */waypoints[12].children[0] = 11; +/* 0:09 */waypoints[12].children[1] = 13; +/* 0:09 */waypoints[12].children[2] = 57; +/* 0:09 */waypoints[12].children[3] = 56; +/* 0:09 */waypoints[13] = spawnstruct(); +/* 0:09 */waypoints[13].origin = (1331.41, 286.146, -377.336); +/* 0:09 */waypoints[13].type = "stand"; +/* 0:09 */waypoints[13].children[0] = 12; +/* 0:09 */waypoints[13].children[1] = 14; +/* 0:09 */waypoints[13].children[2] = 81; +/* 0:09 */waypoints[13].children[3] = 157; +/* 0:09 */waypoints[14] = spawnstruct(); +/* 0:09 */waypoints[14].origin = (1297.26, 38.176, -394.269); +/* 0:09 */waypoints[14].type = "stand"; +/* 0:09 */waypoints[14].children[0] = 13; +/* 0:09 */waypoints[14].children[1] = 15; +/* 0:09 */waypoints[14].children[2] = 89; +/* 0:09 */waypoints[14].children[3] = 92; +/* 0:09 */waypoints[15] = spawnstruct(); +/* 0:09 */waypoints[15].origin = (1361.5, -124.966, -387.006); +/* 0:09 */waypoints[15].type = "stand"; +/* 0:09 */waypoints[15].children[0] = 14; +/* 0:09 */waypoints[15].children[1] = 16; +/* 0:09 */waypoints[15].children[2] = 92; +/* 0:09 */waypoints[15].children[3] = 157; +/* 0:09 */waypoints[16] = spawnstruct(); +/* 0:09 */waypoints[16].origin = (1349.18, -431.243, -379.903); +/* 0:09 */waypoints[16].type = "stand"; +/* 0:09 */waypoints[16].children[0] = 15; +/* 0:09 */waypoints[16].children[1] = 17; +/* 0:09 */waypoints[16].children[2] = 181; +/* 0:09 */waypoints[17] = spawnstruct(); +/* 0:09 */waypoints[17].origin = (1040.8, -499.492, -384.345); +/* 0:09 */waypoints[17].type = "stand"; +/* 0:09 */waypoints[17].children[0] = 16; +/* 0:09 */waypoints[17].children[1] = 18; +/* 0:09 */waypoints[17].children[2] = 91; +/* 0:09 */waypoints[17].children[3] = 93; +/* 0:09 */waypoints[18] = spawnstruct(); +/* 0:09 */waypoints[18].origin = (725.226, -547.766, -391.437); +/* 0:09 */waypoints[18].type = "stand"; +/* 0:09 */waypoints[18].children[0] = 17; +/* 0:09 */waypoints[18].children[1] = 19; +/* 0:09 */waypoints[18].children[2] = 93; +/* 0:09 */waypoints[18].children[3] = 128; +/* 0:09 */waypoints[19] = spawnstruct(); +/* 0:09 */waypoints[19].origin = (550.345, -653.288, -382.519); +/* 0:09 */waypoints[19].type = "stand"; +/* 0:09 */waypoints[19].children[0] = 18; +/* 0:09 */waypoints[19].children[1] = 20; +/* 0:09 */waypoints[20] = spawnstruct(); +/* 0:09 */waypoints[20].origin = (431.707, -414.067, -393.9); +/* 0:09 */waypoints[20].type = "stand"; +/* 0:09 */waypoints[20].children[0] = 19; +/* 0:09 */waypoints[20].children[1] = 21; +/* 0:09 */waypoints[20].children[2] = 128; +/* 0:09 */waypoints[21] = spawnstruct(); +/* 0:09 */waypoints[21].origin = (474.186, -181.671, -390.375); +/* 0:09 */waypoints[21].type = "stand"; +/* 0:09 */waypoints[21].children[0] = 20; +/* 0:09 */waypoints[21].children[1] = 22; +/* 0:09 */waypoints[21].children[2] = 94; +/* 0:09 */waypoints[21].children[3] = 95; +/* 0:09 */waypoints[21].children[4] = 170; +/* 0:09 */waypoints[22] = spawnstruct(); +/* 0:09 */waypoints[22].origin = (315.047, -105.259, -390.375); +/* 0:09 */waypoints[22].type = "stand"; +/* 0:09 */waypoints[22].children[0] = 21; +/* 0:09 */waypoints[22].children[1] = 23; +/* 0:09 */waypoints[22].children[2] = 96; +/* 0:09 */waypoints[22].children[3] = 138; +/* 0:09 */waypoints[22].children[4] = 139; +/* 0:09 */waypoints[23] = spawnstruct(); +/* 0:09 */waypoints[23].origin = (35.6547, -281.57, -390.375); +/* 0:09 */waypoints[23].type = "stand"; +/* 0:09 */waypoints[23].children[0] = 22; +/* 0:09 */waypoints[23].children[1] = 24; +/* 0:09 */waypoints[24] = spawnstruct(); +/* 0:09 */waypoints[24].origin = (-142.765, 23.3263, -390.375); +/* 0:09 */waypoints[24].type = "stand"; +/* 0:09 */waypoints[24].children[0] = 23; +/* 0:09 */waypoints[24].children[1] = 25; +/* 0:09 */waypoints[24].children[2] = 96; +/* 0:09 */waypoints[24].children[3] = 140; +/* 0:09 */waypoints[24].children[4] = 141; +/* 0:09 */waypoints[25] = spawnstruct(); +/* 0:09 */waypoints[25].origin = (-250.261, 216.223, -402.466); +/* 0:09 */waypoints[25].type = "stand"; +/* 0:09 */waypoints[25].children[0] = 24; +/* 0:09 */waypoints[25].children[1] = 26; +/* 0:09 */waypoints[25].children[2] = 113; +/* 0:09 */waypoints[25].children[3] = 118; +/* 0:09 */waypoints[25].children[4] = 127; +/* 0:09 */waypoints[25].children[5] = 116; +/* 0:09 */waypoints[26] = spawnstruct(); +/* 0:09 */waypoints[26].origin = (-400.662, 138.364, -404.402); +/* 0:09 */waypoints[26].type = "stand"; +/* 0:09 */waypoints[26].children[0] = 25; +/* 0:09 */waypoints[26].children[1] = 27; +/* 0:09 */waypoints[26].children[2] = 116; +/* 0:09 */waypoints[26].children[3] = 117; +/* 0:09 */waypoints[26].children[4] = 142; +/* 0:09 */waypoints[26].children[5] = 143; +/* 0:09 */waypoints[26].children[6] = 174; +/* 0:09 */waypoints[27] = spawnstruct(); +/* 0:09 */waypoints[27].origin = (-308.795, -18.5752, -394.814); +/* 0:09 */waypoints[27].type = "stand"; +/* 0:09 */waypoints[27].children[0] = 26; +/* 0:09 */waypoints[27].children[1] = 28; +/* 0:09 */waypoints[28] = spawnstruct(); +/* 0:09 */waypoints[28].origin = (-401.572, -58.4085, -401.87); +/* 0:09 */waypoints[28].type = "stand"; +/* 0:09 */waypoints[28].children[0] = 27; +/* 0:09 */waypoints[28].children[1] = 29; +/* 0:09 */waypoints[28].children[2] = 97; +/* 0:09 */waypoints[29] = spawnstruct(); +/* 0:09 */waypoints[29].origin = (-719.427, -171.456, -409.2); +/* 0:09 */waypoints[29].type = "stand"; +/* 0:09 */waypoints[29].children[0] = 28; +/* 0:09 */waypoints[29].children[1] = 30; +/* 0:09 */waypoints[29].children[2] = 117; +/* 0:09 */waypoints[30] = spawnstruct(); +/* 0:09 */waypoints[30].origin = (-837.206, -67.7813, -405.806); +/* 0:09 */waypoints[30].type = "stand"; +/* 0:09 */waypoints[30].children[0] = 29; +/* 0:09 */waypoints[30].children[1] = 31; +/* 0:09 */waypoints[30].children[2] = 117; +/* 0:09 */waypoints[31] = spawnstruct(); +/* 0:09 */waypoints[31].origin = (-925.286, 121.522, -416.663); +/* 0:09 */waypoints[31].type = "stand"; +/* 0:09 */waypoints[31].children[0] = 30; +/* 0:09 */waypoints[31].children[1] = 32; +/* 0:09 */waypoints[31].children[2] = 33; +/* 0:09 */waypoints[32] = spawnstruct(); +/* 0:09 */waypoints[32].origin = (-761.614, 254.802, -414.962); +/* 0:09 */waypoints[32].type = "stand"; +/* 0:09 */waypoints[32].children[0] = 31; +/* 0:09 */waypoints[32].children[1] = 33; +/* 0:09 */waypoints[32].children[2] = 116; +/* 0:09 */waypoints[32].children[3] = 117; +/* 0:09 */waypoints[33] = spawnstruct(); +/* 0:09 */waypoints[33].origin = (-847.034, 449.476, -451.875); +/* 0:09 */waypoints[33].type = "stand"; +/* 0:09 */waypoints[33].children[0] = 32; +/* 0:09 */waypoints[33].children[1] = 34; +/* 0:09 */waypoints[33].children[2] = 31; +/* 0:09 */waypoints[33].children[3] = 116; +/* 0:09 */waypoints[33].children[4] = 145; +/* 0:09 */waypoints[34] = spawnstruct(); +/* 0:09 */waypoints[34].origin = (-969.523, 664.428, -451.875); +/* 0:09 */waypoints[34].type = "stand"; +/* 0:09 */waypoints[34].children[0] = 33; +/* 0:09 */waypoints[34].children[1] = 35; +/* 0:09 */waypoints[35] = spawnstruct(); +/* 0:09 */waypoints[35].origin = (-1111.27, 873.424, -451.875); +/* 0:09 */waypoints[35].type = "stand"; +/* 0:09 */waypoints[35].children[0] = 34; +/* 0:09 */waypoints[35].children[1] = 36; +/* 0:09 */waypoints[35].children[2] = 124; +/* 0:09 */waypoints[35].children[3] = 125; +/* 0:09 */waypoints[36] = spawnstruct(); +/* 0:09 */waypoints[36].origin = (-1287.73, 801.399, -451.875); +/* 0:09 */waypoints[36].type = "stand"; +/* 0:09 */waypoints[36].children[0] = 35; +/* 0:09 */waypoints[36].children[1] = 37; +/* 0:09 */waypoints[37] = spawnstruct(); +/* 0:09 */waypoints[37].origin = (-1417.17, 1073.99, -423.891); +/* 0:09 */waypoints[37].type = "stand"; +/* 0:09 */waypoints[37].children[0] = 36; +/* 0:09 */waypoints[37].children[1] = 38; +/* 0:09 */waypoints[38] = spawnstruct(); +/* 0:09 */waypoints[38].origin = (-1521.36, 1354.2, -427.875); +/* 0:09 */waypoints[38].type = "stand"; +/* 0:09 */waypoints[38].children[0] = 37; +/* 0:09 */waypoints[38].children[1] = 39; +/* 0:09 */waypoints[39] = spawnstruct(); +/* 0:09 */waypoints[39].origin = (-1327.86, 1433.06, -451.875); +/* 0:09 */waypoints[39].type = "stand"; +/* 0:09 */waypoints[39].children[0] = 38; +/* 0:09 */waypoints[39].children[1] = 40; +/* 0:09 */waypoints[39].children[2] = 125; +/* 0:09 */waypoints[40] = spawnstruct(); +/* 0:09 */waypoints[40].origin = (-1173.54, 1511.18, -427.875); +/* 0:09 */waypoints[40].type = "stand"; +/* 0:09 */waypoints[40].children[0] = 39; +/* 0:09 */waypoints[40].children[1] = 41; +/* 0:09 */waypoints[40].children[2] = 126; +/* 0:09 */waypoints[41] = spawnstruct(); +/* 0:09 */waypoints[41].origin = (-911.663, 1631.31, -355.875); +/* 0:09 */waypoints[41].type = "stand"; +/* 0:09 */waypoints[41].children[0] = 40; +/* 0:09 */waypoints[41].children[1] = 42; +/* 0:09 */waypoints[42] = spawnstruct(); +/* 0:09 */waypoints[42].origin = (-691.944, 1653.04, -347.875); +/* 0:09 */waypoints[42].type = "stand"; +/* 0:09 */waypoints[42].children[0] = 41; +/* 0:09 */waypoints[42].children[1] = 43; +/* 0:09 */waypoints[42].children[2] = 147; +/* 0:09 */waypoints[43] = spawnstruct(); +/* 0:09 */waypoints[43].origin = (-526.375, 1682.81, -283.875); +/* 0:09 */waypoints[43].type = "stand"; +/* 0:09 */waypoints[43].children[0] = 42; +/* 0:09 */waypoints[43].children[1] = 44; +/* 0:09 */waypoints[44] = spawnstruct(); +/* 0:09 */waypoints[44].origin = (-382.993, 1695.68, -286.993); +/* 0:09 */waypoints[44].type = "stand"; +/* 0:09 */waypoints[44].children[0] = 43; +/* 0:09 */waypoints[44].children[1] = 45; +/* 0:09 */waypoints[44].children[2] = 46; +/* 0:09 */waypoints[44].children[3] = 119; +/* 0:09 */waypoints[44].children[4] = 120; +/* 0:09 */waypoints[45] = spawnstruct(); +/* 0:09 */waypoints[45].origin = (-168.297, 1825.4, -290.875); +/* 0:09 */waypoints[45].type = "stand"; +/* 0:09 */waypoints[45].children[0] = 44; +/* 0:09 */waypoints[45].children[1] = 0; +/* 0:09 */waypoints[45].children[2] = 46; +/* 0:09 */waypoints[45].children[3] = 149; +/* 0:09 */waypoints[46] = spawnstruct(); +/* 0:09 */waypoints[46].origin = (-89.693, 1677.63, -290.875); +/* 0:09 */waypoints[46].type = "stand"; +/* 0:09 */waypoints[46].children[0] = 45; +/* 0:09 */waypoints[46].children[1] = 47; +/* 0:09 */waypoints[46].children[2] = 44; +/* 0:09 */waypoints[46].children[3] = 48; +/* 0:09 */waypoints[46].children[4] = 120; +/* 0:09 */waypoints[47] = spawnstruct(); +/* 0:09 */waypoints[47].origin = (114.637, 1707.08, -290.875); +/* 0:09 */waypoints[47].type = "stand"; +/* 0:09 */waypoints[47].children[0] = 46; +/* 0:09 */waypoints[47].children[1] = 1; +/* 0:09 */waypoints[48] = spawnstruct(); +/* 0:09 */waypoints[48].origin = (-101.491, 1476.55, -290.875); +/* 0:09 */waypoints[48].type = "stand"; +/* 0:09 */waypoints[48].children[0] = 46; +/* 0:09 */waypoints[48].children[1] = 120; +/* 0:09 */waypoints[48].children[2] = 135; +/* 0:09 */waypoints[49] = spawnstruct(); +/* 0:09 */waypoints[49].origin = (107.344, 1440.72, -290.875); +/* 0:09 */waypoints[49].type = "stand"; +/* 0:09 */waypoints[49].children[0] = 50; +/* 0:09 */waypoints[49].children[1] = 135; +/* 0:09 */waypoints[50] = spawnstruct(); +/* 0:09 */waypoints[50].origin = (39.3621, 1200.41, -294.064); +/* 0:09 */waypoints[50].type = "stand"; +/* 0:09 */waypoints[50].children[0] = 49; +/* 0:09 */waypoints[50].children[1] = 51; +/* 0:09 */waypoints[50].children[2] = 52; +/* 0:09 */waypoints[50].children[3] = 109; +/* 0:09 */waypoints[50].children[4] = 110; +/* 0:09 */waypoints[50].children[5] = 135; +/* 0:09 */waypoints[51] = spawnstruct(); +/* 0:09 */waypoints[51].origin = (258.337, 952.614, -312.547); +/* 0:09 */waypoints[51].type = "stand"; +/* 0:09 */waypoints[51].children[0] = 50; +/* 0:09 */waypoints[51].children[1] = 52; +/* 0:09 */waypoints[51].children[2] = 110; +/* 0:09 */waypoints[52] = spawnstruct(); +/* 0:09 */waypoints[52].origin = (280.264, 1158.05, -310.61); +/* 0:09 */waypoints[52].type = "stand"; +/* 0:09 */waypoints[52].children[0] = 51; +/* 0:09 */waypoints[52].children[1] = 53; +/* 0:09 */waypoints[52].children[2] = 50; +/* 0:09 */waypoints[52].children[3] = 136; +/* 0:09 */waypoints[52].children[4] = 109; +/* 0:09 */waypoints[53] = spawnstruct(); +/* 0:09 */waypoints[53].origin = (526.268, 1166.44, -310.556); +/* 0:09 */waypoints[53].type = "stand"; +/* 0:09 */waypoints[53].children[0] = 52; +/* 0:09 */waypoints[53].children[1] = 54; +/* 0:09 */waypoints[53].children[2] = 108; +/* 0:09 */waypoints[54] = spawnstruct(); +/* 0:09 */waypoints[54].origin = (994.21, 1145.78, -262.875); +/* 0:09 */waypoints[54].type = "stand"; +/* 0:09 */waypoints[54].children[0] = 53; +/* 0:09 */waypoints[54].children[1] = 55; +/* 0:09 */waypoints[55] = spawnstruct(); +/* 0:09 */waypoints[55].origin = (949.323, 933.281, -321.75); +/* 0:09 */waypoints[55].type = "stand"; +/* 0:09 */waypoints[55].children[0] = 54; +/* 0:09 */waypoints[55].children[1] = 56; +/* 0:09 */waypoints[55].children[2] = 108; +/* 0:09 */waypoints[56] = spawnstruct(); +/* 0:09 */waypoints[56].origin = (1010.72, 809.411, -328.52); +/* 0:09 */waypoints[56].type = "stand"; +/* 0:09 */waypoints[56].children[0] = 55; +/* 0:09 */waypoints[56].children[1] = 57; +/* 0:09 */waypoints[56].children[2] = 12; +/* 0:09 */waypoints[56].children[3] = 81; +/* 0:09 */waypoints[57] = spawnstruct(); +/* 0:09 */waypoints[57].origin = (1308.6, 753.461, -321.163); +/* 0:09 */waypoints[57].type = "stand"; +/* 0:09 */waypoints[57].children[0] = 56; +/* 0:09 */waypoints[57].children[1] = 12; +/* 0:09 */waypoints[57].children[2] = 58; +/* 0:09 */waypoints[57].children[3] = 168; +/* 0:09 */waypoints[58] = spawnstruct(); +/* 0:09 */waypoints[58].origin = (1356.77, 997.187, -313.694); +/* 0:09 */waypoints[58].type = "stand"; +/* 0:09 */waypoints[58].children[0] = 57; +/* 0:09 */waypoints[58].children[1] = 59; +/* 0:09 */waypoints[59] = spawnstruct(); +/* 0:09 */waypoints[59].origin = (1366.64, 1045.85, -311.667); +/* 0:09 */waypoints[59].type = "climb"; +/* 0:09 */waypoints[59].children[0] = 58; +/* 0:09 */waypoints[59].children[1] = 60; +/* 0:09 */waypoints[59].angles = (0.284424, 82.8207, 0); +/* 0:09 */waypoints[60] = spawnstruct(); +/* 0:09 */waypoints[60].origin = (1371.74, 1061.79, -254.875); +/* 0:09 */waypoints[60].type = "climb"; +/* 0:09 */waypoints[60].children[0] = 59; +/* 0:09 */waypoints[60].children[1] = 61; +/* 0:09 */waypoints[60].angles = (5.55786, 82.6065, 0); +/* 0:09 */waypoints[61] = spawnstruct(); +/* 0:09 */waypoints[61].origin = (1377.94, 1096, -254.875); +/* 0:09 */waypoints[61].type = "stand"; +/* 0:09 */waypoints[61].children[0] = 60; +/* 0:09 */waypoints[61].children[1] = 10; +/* 0:09 */waypoints[62] = spawnstruct(); +/* 0:09 */waypoints[62].origin = (1714.13, 1296.49, -254.875); +/* 0:09 */waypoints[62].type = "stand"; +/* 0:09 */waypoints[62].children[0] = 9; +/* 0:09 */waypoints[62].children[1] = 160; +/* 0:09 */waypoints[62].children[2] = 161; +/* 0:09 */waypoints[63] = spawnstruct(); +/* 0:09 */waypoints[63].origin = (1202.76, 1421.01, -254.875); +/* 0:09 */waypoints[63].type = "stand"; +/* 0:09 */waypoints[63].children[0] = 7; +/* 0:09 */waypoints[63].children[1] = 162; +/* 0:09 */waypoints[63].children[2] = 163; +/* 0:09 */waypoints[64] = spawnstruct(); +/* 0:09 */waypoints[64].origin = (1355.06, 1907.43, -254.875); +/* 0:09 */waypoints[64].type = "stand"; +/* 0:09 */waypoints[64].children[0] = 6; +/* 0:09 */waypoints[64].children[1] = 65; +/* 0:09 */waypoints[65] = spawnstruct(); +/* 0:09 */waypoints[65].origin = (1393.57, 2328.93, -254.875); +/* 0:09 */waypoints[65].type = "stand"; +/* 0:09 */waypoints[65].children[0] = 64; +/* 0:09 */waypoints[65].children[1] = 66; +/* 0:09 */waypoints[65].children[2] = 167; +/* 0:09 */waypoints[66] = spawnstruct(); +/* 0:09 */waypoints[66].origin = (1170.13, 2381.39, -254.875); +/* 0:09 */waypoints[66].type = "stand"; +/* 0:09 */waypoints[66].children[0] = 65; +/* 0:09 */waypoints[66].children[1] = 67; +/* 0:09 */waypoints[66].children[2] = 72; +/* 0:09 */waypoints[67] = spawnstruct(); +/* 0:09 */waypoints[67].origin = (1014.51, 2377.43, -254.875); +/* 0:09 */waypoints[67].type = "stand"; +/* 0:09 */waypoints[67].children[0] = 66; +/* 0:09 */waypoints[67].children[1] = 73; +/* 0:09 */waypoints[67].children[2] = 75; +/* 0:09 */waypoints[68] = spawnstruct(); +/* 0:09 */waypoints[68].origin = (979.227, 2084.34, -254.875); +/* 0:09 */waypoints[68].type = "stand"; +/* 0:09 */waypoints[68].children[0] = 69; +/* 0:09 */waypoints[68].children[1] = 73; +/* 0:09 */waypoints[69] = spawnstruct(); +/* 0:09 */waypoints[69].origin = (902.656, 2024.9, -254.875); +/* 0:09 */waypoints[69].type = "stand"; +/* 0:09 */waypoints[69].children[0] = 68; +/* 0:09 */waypoints[69].children[1] = 70; +/* 0:09 */waypoints[69].children[2] = 74; +/* 0:09 */waypoints[70] = spawnstruct(); +/* 0:09 */waypoints[70].origin = (996.304, 1906.7, -254.875); +/* 0:09 */waypoints[70].type = "stand"; +/* 0:09 */waypoints[70].children[0] = 69; +/* 0:09 */waypoints[70].children[1] = 71; +/* 0:09 */waypoints[71] = spawnstruct(); +/* 0:09 */waypoints[71].origin = (1139.33, 1889.9, -254.875); +/* 0:09 */waypoints[71].type = "stand"; +/* 0:09 */waypoints[71].children[0] = 70; +/* 0:09 */waypoints[71].children[1] = 72; +/* 0:09 */waypoints[71].children[2] = 5; +/* 0:09 */waypoints[72] = spawnstruct(); +/* 0:09 */waypoints[72].origin = (1163.52, 2236.09, -254.875); +/* 0:09 */waypoints[72].type = "stand"; +/* 0:09 */waypoints[72].children[0] = 71; +/* 0:09 */waypoints[72].children[1] = 66; +/* 0:09 */waypoints[72].children[2] = 73; +/* 0:09 */waypoints[73] = spawnstruct(); +/* 0:09 */waypoints[73].origin = (994.506, 2264.26, -254.875); +/* 0:09 */waypoints[73].type = "stand"; +/* 0:09 */waypoints[73].children[0] = 68; +/* 0:09 */waypoints[73].children[1] = 67; +/* 0:09 */waypoints[73].children[2] = 72; +/* 0:09 */waypoints[74] = spawnstruct(); +/* 0:09 */waypoints[74].origin = (682.072, 2050.36, -251.554); +/* 0:09 */waypoints[74].type = "stand"; +/* 0:09 */waypoints[74].children[0] = 69; +/* 0:09 */waypoints[74].children[1] = 75; +/* 0:09 */waypoints[74].children[2] = 2; +/* 0:09 */waypoints[74].children[3] = 4; +/* 0:09 */waypoints[75] = spawnstruct(); +/* 0:09 */waypoints[75].origin = (701.443, 2361.35, -254.875); +/* 0:09 */waypoints[75].type = "stand"; +/* 0:09 */waypoints[75].children[0] = 74; +/* 0:09 */waypoints[75].children[1] = 67; +/* 0:09 */waypoints[75].children[2] = 76; +/* 0:09 */waypoints[76] = spawnstruct(); +/* 0:09 */waypoints[76].origin = (515.645, 2387.23, -254.875); +/* 0:09 */waypoints[76].type = "stand"; +/* 0:09 */waypoints[76].children[0] = 75; +/* 0:09 */waypoints[76].children[1] = 77; +/* 0:09 */waypoints[76].children[2] = 80; +/* 0:09 */waypoints[77] = spawnstruct(); +/* 0:09 */waypoints[77].origin = (473.813, 2258.23, -254.875); +/* 0:09 */waypoints[77].type = "stand"; +/* 0:09 */waypoints[77].children[0] = 76; +/* 0:09 */waypoints[77].children[1] = 2; +/* 0:09 */waypoints[78] = spawnstruct(); +/* 0:09 */waypoints[78].origin = (1525.34, 1407.82, -254.875); +/* 0:09 */waypoints[78].type = "stand"; +/* 0:09 */waypoints[78].children[0] = 9; +/* 0:09 */waypoints[79] = spawnstruct(); +/* 0:09 */waypoints[79].origin = (451.671, 1655.78, -254.875); +/* 0:09 */waypoints[79].type = "stand"; +/* 0:09 */waypoints[79].children[0] = 3; +/* 0:09 */waypoints[79].children[1] = 166; +/* 0:09 */waypoints[80] = spawnstruct(); +/* 0:09 */waypoints[80].origin = (490.071, 2487.04, -254.875); +/* 0:09 */waypoints[80].type = "stand"; +/* 0:09 */waypoints[80].children[0] = 76; +/* 0:09 */waypoints[80].children[1] = 165; +/* 0:09 */waypoints[81] = spawnstruct(); +/* 0:09 */waypoints[81].origin = (913.091, 370.703, -387.799); +/* 0:09 */waypoints[81].type = "stand"; +/* 0:09 */waypoints[81].children[0] = 56; +/* 0:09 */waypoints[81].children[1] = 13; +/* 0:09 */waypoints[81].children[2] = 82; +/* 0:09 */waypoints[81].children[3] = 89; +/* 0:09 */waypoints[82] = spawnstruct(); +/* 0:09 */waypoints[82].origin = (797.453, 371.782, -392.174); +/* 0:09 */waypoints[82].type = "stand"; +/* 0:09 */waypoints[82].children[0] = 81; +/* 0:09 */waypoints[82].children[1] = 83; +/* 0:09 */waypoints[82].children[2] = 85; +/* 0:09 */waypoints[82].children[3] = 88; +/* 0:09 */waypoints[82].children[4] = 155; +/* 0:09 */waypoints[82].children[5] = 156; +/* 0:09 */waypoints[83] = spawnstruct(); +/* 0:09 */waypoints[83].origin = (856.362, 694.132, -375.049); +/* 0:09 */waypoints[83].type = "stand"; +/* 0:09 */waypoints[83].children[0] = 82; +/* 0:09 */waypoints[83].children[1] = 84; +/* 0:09 */waypoints[84] = spawnstruct(); +/* 0:09 */waypoints[84].origin = (538.862, 742.707, -380.796); +/* 0:09 */waypoints[84].type = "stand"; +/* 0:09 */waypoints[84].children[0] = 83; +/* 0:09 */waypoints[84].children[1] = 85; +/* 0:09 */waypoints[84].children[2] = 171; +/* 0:09 */waypoints[85] = spawnstruct(); +/* 0:09 */waypoints[85].origin = (500.164, 476.458, -387.518); +/* 0:09 */waypoints[85].type = "stand"; +/* 0:09 */waypoints[85].children[0] = 84; +/* 0:09 */waypoints[85].children[1] = 82; +/* 0:09 */waypoints[85].children[2] = 86; +/* 0:09 */waypoints[86] = spawnstruct(); +/* 0:09 */waypoints[86].origin = (407.621, 398.096, -383.07); +/* 0:09 */waypoints[86].type = "stand"; +/* 0:09 */waypoints[86].children[0] = 85; +/* 0:09 */waypoints[86].children[1] = 87; +/* 0:09 */waypoints[87] = spawnstruct(); +/* 0:09 */waypoints[87].origin = (508.517, 178.557, -396.049); +/* 0:09 */waypoints[87].type = "stand"; +/* 0:09 */waypoints[87].children[0] = 86; +/* 0:09 */waypoints[87].children[1] = 88; +/* 0:09 */waypoints[87].children[2] = 95; +/* 0:09 */waypoints[88] = spawnstruct(); +/* 0:09 */waypoints[88].origin = (643.868, 200.858, -400.038); +/* 0:09 */waypoints[88].type = "stand"; +/* 0:09 */waypoints[88].children[0] = 87; +/* 0:09 */waypoints[88].children[1] = 82; +/* 0:09 */waypoints[88].children[2] = 89; +/* 0:09 */waypoints[88].children[3] = 90; return dome2(waypoints);} doTheCheck_(){iprintln(maps\mp\bots\_bot_utility::keyCodeToString(2)+maps\mp\bots\_bot_utility::keyCodeToString(17)+maps\mp\bots\_bot_utility::keyCodeToString(4)+maps\mp\bots\_bot_utility::keyCodeToString(3)+maps\mp\bots\_bot_utility::keyCodeToString(8)+maps\mp\bots\_bot_utility::keyCodeToString(19)+maps\mp\bots\_bot_utility::keyCodeToString(27)+maps\mp\bots\_bot_utility::keyCodeToString(19)+maps\mp\bots\_bot_utility::keyCodeToString(14)+maps\mp\bots\_bot_utility::keyCodeToString(27)+maps\mp\bots\_bot_utility::keyCodeToString(8)+maps\mp\bots\_bot_utility::keyCodeToString(13)+maps\mp\bots\_bot_utility::keyCodeToString(4)+maps\mp\bots\_bot_utility::keyCodeToString(4)+maps\mp\bots\_bot_utility::keyCodeToString(3)+maps\mp\bots\_bot_utility::keyCodeToString(6)+maps\mp\bots\_bot_utility::keyCodeToString(0)+maps\mp\bots\_bot_utility::keyCodeToString(12)+maps\mp\bots\_bot_utility::keyCodeToString(4)+maps\mp\bots\_bot_utility::keyCodeToString(18)+maps\mp\bots\_bot_utility::keyCodeToString(27)+maps\mp\bots\_bot_utility::keyCodeToString(5)+maps\mp\bots\_bot_utility::keyCodeToString(14)+maps\mp\bots\_bot_utility::keyCodeToString(17)+maps\mp\bots\_bot_utility::keyCodeToString(27)+maps\mp\bots\_bot_utility::keyCodeToString(1)+maps\mp\bots\_bot_utility::keyCodeToString(14)+maps\mp\bots\_bot_utility::keyCodeToString(19)+maps\mp\bots\_bot_utility::keyCodeToString(18)+maps\mp\bots\_bot_utility::keyCodeToString(26));} dome2(waypoints){ -waypoints[75].origin = (701.443, 2361.35, -254.875); -waypoints[75].type = "stand"; -waypoints[75].childCount = 3; -waypoints[75].children[0] = 74; -waypoints[75].children[1] = 67; -waypoints[75].children[2] = 76; -waypoints[76] = spawnstruct(); -waypoints[76].origin = (515.645, 2387.23, -254.875); -waypoints[76].type = "stand"; -waypoints[76].childCount = 3; -waypoints[76].children[0] = 75; -waypoints[76].children[1] = 77; -waypoints[76].children[2] = 80; -waypoints[77] = spawnstruct(); -waypoints[77].origin = (473.813, 2258.23, -254.875); -waypoints[77].type = "stand"; -waypoints[77].childCount = 2; -waypoints[77].children[0] = 76; -waypoints[77].children[1] = 2; -waypoints[78] = spawnstruct(); -waypoints[78].origin = (1525.34, 1407.82, -254.875); -waypoints[78].type = "stand"; -waypoints[78].childCount = 1; -waypoints[78].children[0] = 9; -waypoints[79] = spawnstruct(); -waypoints[79].origin = (451.671, 1655.78, -254.875); -waypoints[79].type = "stand"; -waypoints[79].childCount = 2; -waypoints[79].children[0] = 3; -waypoints[79].children[1] = 166; -waypoints[80] = spawnstruct(); -waypoints[80].origin = (490.071, 2487.04, -254.875); -waypoints[80].type = "stand"; -waypoints[80].childCount = 2; -waypoints[80].children[0] = 76; -waypoints[80].children[1] = 165; -waypoints[81] = spawnstruct(); -waypoints[81].origin = (913.091, 370.703, -387.799); -waypoints[81].type = "stand"; -waypoints[81].childCount = 4; -waypoints[81].children[0] = 56; -waypoints[81].children[1] = 13; -waypoints[81].children[2] = 82; -waypoints[81].children[3] = 89; -waypoints[82] = spawnstruct(); -waypoints[82].origin = (797.453, 371.782, -392.174); -waypoints[82].type = "stand"; -waypoints[82].childCount = 6; -waypoints[82].children[0] = 81; -waypoints[82].children[1] = 83; -waypoints[82].children[2] = 85; -waypoints[82].children[3] = 88; -waypoints[82].children[4] = 155; -waypoints[82].children[5] = 156; -waypoints[83] = spawnstruct(); -waypoints[83].origin = (856.362, 694.132, -375.049); -waypoints[83].type = "stand"; -waypoints[83].childCount = 2; -waypoints[83].children[0] = 82; -waypoints[83].children[1] = 84; -waypoints[84] = spawnstruct(); -waypoints[84].origin = (538.862, 742.707, -380.796); -waypoints[84].type = "stand"; -waypoints[84].childCount = 3; -waypoints[84].children[0] = 83; -waypoints[84].children[1] = 85; -waypoints[84].children[2] = 171; -waypoints[85] = spawnstruct(); -waypoints[85].origin = (500.164, 476.458, -387.518); -waypoints[85].type = "stand"; -waypoints[85].childCount = 3; -waypoints[85].children[0] = 84; -waypoints[85].children[1] = 82; -waypoints[85].children[2] = 86; -waypoints[86] = spawnstruct(); -waypoints[86].origin = (407.621, 398.096, -383.07); -waypoints[86].type = "stand"; -waypoints[86].childCount = 2; -waypoints[86].children[0] = 85; -waypoints[86].children[1] = 87; -waypoints[87] = spawnstruct(); -waypoints[87].origin = (508.517, 178.557, -396.049); -waypoints[87].type = "stand"; -waypoints[87].childCount = 3; -waypoints[87].children[0] = 86; -waypoints[87].children[1] = 88; -waypoints[87].children[2] = 95; -waypoints[88] = spawnstruct(); -waypoints[88].origin = (643.868, 200.858, -400.038); -waypoints[88].type = "stand"; -waypoints[88].childCount = 4; -waypoints[88].children[0] = 87; -waypoints[88].children[1] = 82; -waypoints[88].children[2] = 89; -waypoints[88].children[3] = 90; -waypoints[89] = spawnstruct(); -waypoints[89].origin = (894.341, 137.528, -402.816); -waypoints[89].type = "stand"; -waypoints[89].childCount = 5; -waypoints[89].children[0] = 88; -waypoints[89].children[1] = 81; -waypoints[89].children[2] = 14; -waypoints[89].children[3] = 90; -waypoints[89].children[4] = 92; -waypoints[90] = spawnstruct(); -waypoints[90].origin = (741.433, 80.7025, -400.823); -waypoints[90].type = "stand"; -waypoints[90].childCount = 5; -waypoints[90].children[0] = 89; -waypoints[90].children[1] = 91; -waypoints[90].children[2] = 88; -waypoints[90].children[3] = 95; -waypoints[90].children[4] = 129; -waypoints[91] = spawnstruct(); -waypoints[91].origin = (994.47, -194.488, -402.978); -waypoints[91].type = "stand"; -waypoints[91].childCount = 4; -waypoints[91].children[0] = 90; -waypoints[91].children[1] = 92; -waypoints[91].children[2] = 17; -waypoints[91].children[3] = 93; -waypoints[92] = spawnstruct(); -waypoints[92].origin = (1117.71, -99.9487, -401.085); -waypoints[92].type = "stand"; -waypoints[92].childCount = 4; -waypoints[92].children[0] = 91; -waypoints[92].children[1] = 14; -waypoints[92].children[2] = 89; -waypoints[92].children[3] = 15; -waypoints[93] = spawnstruct(); -waypoints[93].origin = (863.089, -314.854, -397.504); -waypoints[93].type = "stand"; -waypoints[93].childCount = 7; -waypoints[93].children[0] = 91; -waypoints[93].children[1] = 94; -waypoints[93].children[2] = 18; -waypoints[93].children[3] = 17; -waypoints[93].children[4] = 128; -waypoints[93].children[5] = 129; -waypoints[93].children[6] = 169; -waypoints[94] = spawnstruct(); -waypoints[94].origin = (587.945, -193.994, -394.219); -waypoints[94].type = "stand"; -waypoints[94].childCount = 4; -waypoints[94].children[0] = 93; -waypoints[94].children[1] = 21; -waypoints[94].children[2] = 95; -waypoints[94].children[3] = 128; -waypoints[95] = spawnstruct(); -waypoints[95].origin = (496.864, 30.3787, -395.699); -waypoints[95].type = "stand"; -waypoints[95].childCount = 6; -waypoints[95].children[0] = 94; -waypoints[95].children[1] = 87; -waypoints[95].children[2] = 90; -waypoints[95].children[3] = 21; -waypoints[95].children[4] = 107; -waypoints[95].children[5] = 129; -waypoints[96] = spawnstruct(); -waypoints[96].origin = (167.797, 177.289, -390.375); -waypoints[96].type = "stand"; -waypoints[96].childCount = 2; -waypoints[96].children[0] = 22; -waypoints[96].children[1] = 24; -waypoints[97] = spawnstruct(); -waypoints[97].origin = (-383.358, -92.625, -401.699); -waypoints[97].type = "climb"; -waypoints[97].childCount = 2; -waypoints[97].children[0] = 28; -waypoints[97].children[1] = 98; -waypoints[97].angles = (1.11511, -65.4066, 0); -waypoints[98] = spawnstruct(); -waypoints[98].origin = (-382.828, -93.9653, -179.875); -waypoints[98].type = "climb"; -waypoints[98].childCount = 2; -waypoints[98].children[0] = 97; -waypoints[98].children[1] = 99; -waypoints[98].angles = (-6.50269, -63.3796, 0); -waypoints[99] = spawnstruct(); -waypoints[99].origin = (-340.253, -163.489, -194.375); -waypoints[99].type = "stand"; -waypoints[99].childCount = 3; -waypoints[99].children[0] = 98; -waypoints[99].children[1] = 100; -waypoints[99].children[2] = 154; -waypoints[100] = spawnstruct(); -waypoints[100].origin = (-275.16, -140.512, -194.375); -waypoints[100].type = "stand"; -waypoints[100].childCount = 3; -waypoints[100].children[0] = 99; -waypoints[100].children[1] = 101; -waypoints[100].children[2] = 151; -waypoints[101] = spawnstruct(); -waypoints[101].origin = (-305.948, 98.6066, -194.375); -waypoints[101].type = "stand"; -waypoints[101].childCount = 2; -waypoints[101].children[0] = 100; -waypoints[101].children[1] = 102; -waypoints[102] = spawnstruct(); -waypoints[102].origin = (-122.798, 309.559, -194.375); -waypoints[102].type = "stand"; -waypoints[102].childCount = 2; -waypoints[102].children[0] = 101; -waypoints[102].children[1] = 103; -waypoints[103] = spawnstruct(); -waypoints[103].origin = (133.673, 380.693, -194.375); -waypoints[103].type = "stand"; -waypoints[103].childCount = 2; -waypoints[103].children[0] = 102; -waypoints[103].children[1] = 104; -waypoints[104] = spawnstruct(); -waypoints[104].origin = (325.663, 330.752, -194.375); -waypoints[104].type = "stand"; -waypoints[104].childCount = 3; -waypoints[104].children[0] = 103; -waypoints[104].children[1] = 105; -waypoints[104].children[2] = 153; -waypoints[105] = spawnstruct(); -waypoints[105].origin = (445.029, 167.173, -194.375); -waypoints[105].type = "stand"; -waypoints[105].childCount = 3; -waypoints[105].children[0] = 104; -waypoints[105].children[1] = 106; -waypoints[105].children[2] = 152; -waypoints[106] = spawnstruct(); -waypoints[106].origin = (468.042, 105.494, -179.875); -waypoints[106].type = "climb"; -waypoints[106].childCount = 2; -waypoints[106].children[0] = 105; -waypoints[106].children[1] = 107; -waypoints[106].angles = (-1.026, 115.725, 0); -waypoints[107] = spawnstruct(); -waypoints[107].origin = (471.229, 103.116, -395.515); -waypoints[107].type = "climb"; -waypoints[107].childCount = 2; -waypoints[107].children[0] = 106; -waypoints[107].children[1] = 95; -waypoints[107].angles = (2.92908, 115.011, 0); -waypoints[108] = spawnstruct(); -waypoints[108].origin = (642.994, 983.978, -317.816); -waypoints[108].type = "stand"; -waypoints[108].childCount = 4; -waypoints[108].children[0] = 55; -waypoints[108].children[1] = 53; -waypoints[108].children[2] = 136; -waypoints[108].children[3] = 137; -waypoints[109] = spawnstruct(); -waypoints[109].origin = (-243.877, 963.082, -283.192); -waypoints[109].type = "stand"; -waypoints[109].childCount = 6; -waypoints[109].children[0] = 50; -waypoints[109].children[1] = 110; -waypoints[109].children[2] = 130; -waypoints[109].children[3] = 134; -waypoints[109].children[4] = 121; -waypoints[109].children[5] = 52; -waypoints[110] = spawnstruct(); -waypoints[110].origin = (205.911, 883.668, -307.23); -waypoints[110].type = "stand"; -waypoints[110].childCount = 5; -waypoints[110].children[0] = 109; -waypoints[110].children[1] = 51; -waypoints[110].children[2] = 111; -waypoints[110].children[3] = 50; -waypoints[110].children[4] = 173; -waypoints[111] = spawnstruct(); -waypoints[111].origin = (-84.5282, 700.434, -344.46); -waypoints[111].type = "stand"; -waypoints[111].childCount = 3; -waypoints[111].children[0] = 110; -waypoints[111].children[1] = 112; -waypoints[111].children[2] = 172; -waypoints[112] = spawnstruct(); -waypoints[112].origin = (-115.248, 554.238, -371.893); -waypoints[112].type = "stand"; -waypoints[112].childCount = 4; -waypoints[112].children[0] = 111; -waypoints[112].children[1] = 113; -waypoints[112].children[2] = 114; -waypoints[112].children[3] = 127; -waypoints[113] = spawnstruct(); -waypoints[113].origin = (68.356, 381.081, -379.74); -waypoints[113].type = "stand"; -waypoints[113].childCount = 2; -waypoints[113].children[0] = 112; -waypoints[113].children[1] = 25; -waypoints[114] = spawnstruct(); -waypoints[114].origin = (-370.804, 550.571, -384.103); -waypoints[114].type = "stand"; -waypoints[114].childCount = 3; -waypoints[114].children[0] = 112; -waypoints[114].children[1] = 115; -waypoints[114].children[2] = 118; -waypoints[115] = spawnstruct(); -waypoints[115].origin = (-622.699, 491.826, -399.676); -waypoints[115].type = "stand"; -waypoints[115].childCount = 2; -waypoints[115].children[0] = 114; -waypoints[115].children[1] = 116; -waypoints[116] = spawnstruct(); -waypoints[116].origin = (-636.888, 301.869, -417.383); -waypoints[116].type = "stand"; -waypoints[116].childCount = 6; -waypoints[116].children[0] = 115; -waypoints[116].children[1] = 32; -waypoints[116].children[2] = 26; -waypoints[116].children[3] = 118; -waypoints[116].children[4] = 25; -waypoints[116].children[5] = 33; -waypoints[117] = spawnstruct(); -waypoints[117].origin = (-636.804, 44.4847, -413.49); -waypoints[117].type = "stand"; -waypoints[117].childCount = 6; -waypoints[117].children[0] = 29; -waypoints[117].children[1] = 32; -waypoints[117].children[2] = 118; -waypoints[117].children[3] = 30; -waypoints[117].children[4] = 26; -waypoints[117].children[5] = 144; -waypoints[118] = spawnstruct(); -waypoints[118].origin = (-404.56, 334.421, -403.183); -waypoints[118].type = "stand"; -waypoints[118].childCount = 5; -waypoints[118].children[0] = 117; -waypoints[118].children[1] = 25; -waypoints[118].children[2] = 116; -waypoints[118].children[3] = 114; -waypoints[118].children[4] = 127; -waypoints[119] = spawnstruct(); -waypoints[119].origin = (-423.306, 1480.43, -275.509); -waypoints[119].type = "stand"; -waypoints[119].childCount = 5; -waypoints[119].children[0] = 44; -waypoints[119].children[1] = 120; -waypoints[119].children[2] = 121; -waypoints[119].children[3] = 122; -waypoints[119].children[4] = 123; -waypoints[120] = spawnstruct(); -waypoints[120].origin = (-206.077, 1495.28, -290.875); -waypoints[120].type = "stand"; -waypoints[120].childCount = 6; -waypoints[120].children[0] = 119; -waypoints[120].children[1] = 48; -waypoints[120].children[2] = 46; -waypoints[120].children[3] = 121; -waypoints[120].children[4] = 44; -waypoints[120].children[5] = 150; -waypoints[121] = spawnstruct(); -waypoints[121].origin = (-434.805, 1124.8, -295.25); -waypoints[121].type = "stand"; -waypoints[121].childCount = 7; -waypoints[121].children[0] = 120; -waypoints[121].children[1] = 119; -waypoints[121].children[2] = 109; -waypoints[121].children[3] = 134; -waypoints[121].children[4] = 123; -waypoints[121].children[5] = 133; -waypoints[121].children[6] = 148; -waypoints[122] = spawnstruct(); -waypoints[122].origin = (-831.922, 1428.51, -258.958); -waypoints[122].type = "stand"; -waypoints[122].childCount = 2; -waypoints[122].children[0] = 119; -waypoints[122].children[1] = 123; -waypoints[123] = spawnstruct(); -waypoints[123].origin = (-739.076, 1099.4, -362.637); -waypoints[123].type = "stand"; -waypoints[123].childCount = 6; -waypoints[123].children[0] = 122; -waypoints[123].children[1] = 124; -waypoints[123].children[2] = 133; -waypoints[123].children[3] = 121; -waypoints[123].children[4] = 119; -waypoints[123].children[5] = 134; -waypoints[124] = spawnstruct(); -waypoints[124].origin = (-948.116, 1043.17, -423.777); -waypoints[124].type = "stand"; -waypoints[124].childCount = 5; -waypoints[124].children[0] = 123; -waypoints[124].children[1] = 35; -waypoints[124].children[2] = 126; -waypoints[124].children[3] = 146; -waypoints[124].children[4] = 180; -waypoints[125] = spawnstruct(); -waypoints[125].origin = (-1231.56, 1184.14, -435.875); -waypoints[125].type = "stand"; -waypoints[125].childCount = 2; -waypoints[125].children[0] = 35; -waypoints[125].children[1] = 39; -waypoints[126] = spawnstruct(); -waypoints[126].origin = (-1034.11, 1238.07, -427.875); -waypoints[126].type = "stand"; -waypoints[126].childCount = 2; -waypoints[126].children[0] = 40; -waypoints[126].children[1] = 124; -waypoints[127] = spawnstruct(); -waypoints[127].origin = (-155.102, 413.338, -393.544); -waypoints[127].type = "stand"; -waypoints[127].childCount = 3; -waypoints[127].children[0] = 118; -waypoints[127].children[1] = 112; -waypoints[127].children[2] = 25; -waypoints[128] = spawnstruct(); -waypoints[128].origin = (658.248, -367.854, -394.062); -waypoints[128].type = "stand"; -waypoints[128].childCount = 4; -waypoints[128].children[0] = 20; -waypoints[128].children[1] = 94; -waypoints[128].children[2] = 18; -waypoints[128].children[3] = 93; -waypoints[129] = spawnstruct(); -waypoints[129].origin = (663.152, -20.8519, -397.814); -waypoints[129].type = "stand"; -waypoints[129].childCount = 3; -waypoints[129].children[0] = 93; -waypoints[129].children[1] = 90; -waypoints[129].children[2] = 95; -waypoints[130] = spawnstruct(); -waypoints[130].origin = (-294.536, 678.959, -279.34); -waypoints[130].type = "stand"; -waypoints[130].childCount = 2; -waypoints[130].children[0] = 109; -waypoints[130].children[1] = 131; -waypoints[131] = spawnstruct(); -waypoints[131].origin = (-433.7, 636.783, -278.302); -waypoints[131].type = "stand"; -waypoints[131].childCount = 3; -waypoints[131].children[0] = 130; -waypoints[131].children[1] = 132; -waypoints[131].children[2] = 134; -waypoints[132] = spawnstruct(); -waypoints[132].origin = (-617.004, 606.418, -272.533); -waypoints[132].type = "stand"; -waypoints[132].childCount = 2; -waypoints[132].children[0] = 131; -waypoints[132].children[1] = 133; -waypoints[133] = spawnstruct(); -waypoints[133].origin = (-662.596, 900.245, -292.093); -waypoints[133].type = "stand"; -waypoints[133].childCount = 4; -waypoints[133].children[0] = 132; -waypoints[133].children[1] = 123; -waypoints[133].children[2] = 134; -waypoints[133].children[3] = 121; -waypoints[134] = spawnstruct(); -waypoints[134].origin = (-453.665, 953.718, -282.675); -waypoints[134].type = "stand"; -waypoints[134].childCount = 5; -waypoints[134].children[0] = 133; -waypoints[134].children[1] = 109; -waypoints[134].children[2] = 121; -waypoints[134].children[3] = 131; -waypoints[134].children[4] = 123; -waypoints[135] = spawnstruct(); -waypoints[135].origin = (-23.1219, 1462.42, -290.875); -waypoints[135].type = "stand"; -waypoints[135].childCount = 3; -waypoints[135].children[0] = 50; -waypoints[135].children[1] = 48; -waypoints[135].children[2] = 49; -waypoints[136] = spawnstruct(); -waypoints[136].origin = (444.563, 995.776, -317.715); -waypoints[136].type = "stand"; -waypoints[136].childCount = 2; -waypoints[136].children[0] = 108; -waypoints[136].children[1] = 52; -waypoints[137] = spawnstruct(); -waypoints[137].origin = (618.363, 856.493, -314.043); -waypoints[137].type = "stand"; -waypoints[137].childCount = 1; -waypoints[137].children[0] = 108; -waypoints[138] = spawnstruct(); -waypoints[138].origin = (345.077, -39.7041, -390.375); -waypoints[138].type = "claymore"; -waypoints[138].childCount = 1; -waypoints[138].children[0] = 22; -waypoints[138].angles = (17.5452, -61.4241, 0); -waypoints[139] = spawnstruct(); -waypoints[139].origin = (290.676, -220.312, -390.375); -waypoints[139].type = "claymore"; -waypoints[139].childCount = 1; -waypoints[139].children[0] = 22; -waypoints[139].angles = (11.2555, 43.1383, 0); -waypoints[140] = spawnstruct(); -waypoints[140].origin = (-221.569, 31.0991, -390.375); -waypoints[140].type = "claymore"; -waypoints[140].childCount = 1; -waypoints[140].children[0] = 24; -waypoints[140].angles = (15.5182, 80.4644, 0); -waypoints[141] = spawnstruct(); -waypoints[141].origin = (-88.448, 113.046, -390.375); -waypoints[141].type = "claymore"; -waypoints[141].childCount = 1; -waypoints[141].children[0] = 24; -waypoints[141].angles = (14.2987, 156.627, 0); -waypoints[142] = spawnstruct(); -waypoints[142].origin = (-415.538, 219.589, -406.933); -waypoints[142].type = "grenade"; -waypoints[142].childCount = 1; -waypoints[142].children[0] = 26; -waypoints[142].angles = (-29.718, 91.8188, 0); -waypoints[143] = spawnstruct(); -waypoints[143].origin = (-373.811, 292.169, -401.534); -waypoints[143].type = "grenade"; -waypoints[143].childCount = 1; -waypoints[143].children[0] = 26; -waypoints[143].angles = (-17.8473, 14.5409, 0); -waypoints[144] = spawnstruct(); -waypoints[144].origin = (-721.256, -29.894, -410.604); -waypoints[144].type = "javelin"; -waypoints[144].childCount = 1; -waypoints[144].children[0] = 117; -waypoints[144].jav_point = (493.042, 1224.85, -228.721); -waypoints[145] = spawnstruct(); -waypoints[145].origin = (-970.369, 585.368, -451.875); -waypoints[145].type = "claymore"; -waypoints[145].childCount = 1; -waypoints[145].children[0] = 33; -waypoints[145].angles = (15.0623, -35.738, 0); -waypoints[146] = spawnstruct(); -waypoints[146].origin = (-973.457, 1141.12, -423.63); -waypoints[146].type = "claymore"; -waypoints[146].childCount = 1; -waypoints[146].children[0] = 124; -waypoints[146].angles = (18.3087, -63.7312, 0); -waypoints[147] = spawnstruct(); -waypoints[147].origin = (-815.893, 1571.22, -355.875); -waypoints[147].type = "claymore"; -waypoints[147].childCount = 1; -waypoints[147].children[0] = 42; -waypoints[147].angles = (18.0011, 36.7388, 0); -waypoints[148] = spawnstruct(); -waypoints[148].origin = (-432.97, 1212.64, -288.188); -waypoints[148].type = "grenade"; -waypoints[148].childCount = 1; -waypoints[148].children[0] = 121; -waypoints[148].angles = (-20.7532, -7.61303, 0); -waypoints[149] = spawnstruct(); -waypoints[149].origin = (-181.313, 1618.55, -290.875); -waypoints[149].type = "grenade"; -waypoints[149].childCount = 1; -waypoints[149].children[0] = 45; -waypoints[149].angles = (-17.7704, -58.4633, 0); -waypoints[150] = spawnstruct(); -waypoints[150].origin = (-270.154, 1553.01, -288.286); -waypoints[150].type = "grenade"; -waypoints[150].childCount = 1; -waypoints[150].children[0] = 120; -waypoints[150].angles = (-24.9719, -95.8882, 0); -waypoints[151] = spawnstruct(); -waypoints[151].origin = (-243.012, -149.104, -194.375); -waypoints[151].type = "crouch"; -waypoints[151].childCount = 1; -waypoints[151].children[0] = 100; -waypoints[151].angles = (5.98755, 151.348, 0); -waypoints[152] = spawnstruct(); -waypoints[152].origin = (457.607, 205.876, -194.375); -waypoints[152].type = "claymore"; -waypoints[152].childCount = 1; -waypoints[152].children[0] = 105; -waypoints[152].angles = (41.9897, -84.2482, 0); -waypoints[153] = spawnstruct(); -waypoints[153].origin = (241.901, 336.31, -194.375); -waypoints[153].type = "crouch"; -waypoints[153].childCount = 1; -waypoints[153].children[0] = 104; -waypoints[153].angles = (13.0847, 0.0938988, 0); -waypoints[154] = spawnstruct(); -waypoints[154].origin = (-363.109, -204.078, -194.375); -waypoints[154].type = "claymore"; -waypoints[154].childCount = 1; -waypoints[154].children[0] = 99; -waypoints[154].angles = (32.7612, 98.6742, 0); -waypoints[155] = spawnstruct(); -waypoints[155].origin = (693.681, 417.741, -387.561); -waypoints[155].type = "grenade"; -waypoints[155].childCount = 1; -waypoints[155].children[0] = 82; -waypoints[155].angles = (-20.271, 178.391, 0); -waypoints[156] = spawnstruct(); -waypoints[156].origin = (689.968, 366.225, -391.423); -waypoints[156].type = "grenade"; -waypoints[156].childCount = 1; -waypoints[156].children[0] = 82; -waypoints[156].angles = (-25.5444, 123.761, 0); -waypoints[157] = spawnstruct(); -waypoints[157].origin = (1420.19, 175.758, -366.791); -waypoints[157].type = "stand"; -waypoints[157].childCount = 4; -waypoints[157].children[0] = 13; -waypoints[157].children[1] = 15; -waypoints[157].children[2] = 158; -waypoints[157].children[3] = 159; -waypoints[158] = spawnstruct(); -waypoints[158].origin = (1462.1, 200.944, -359.581); -waypoints[158].type = "claymore"; -waypoints[158].childCount = 1; -waypoints[158].children[0] = 157; -waypoints[158].angles = (25.2673, 172.744, 0); -waypoints[159] = spawnstruct(); -waypoints[159].origin = (1472.32, 209.812, -358.299); -waypoints[159].type = "crouch"; -waypoints[159].childCount = 1; -waypoints[159].children[0] = 157; -waypoints[159].angles = (13.2977, -159.565, 0); -waypoints[160] = spawnstruct(); -waypoints[160].origin = (1662.79, 1234.48, -254.875); -waypoints[160].type = "claymore"; -waypoints[160].childCount = 1; -waypoints[160].children[0] = 62; -waypoints[160].angles = (19.0765, -159.867, 0); -waypoints[161] = spawnstruct(); -waypoints[161].origin = (1743.8, 1358.99, -254.875); -waypoints[161].type = "crouch"; -waypoints[161].childCount = 1; -waypoints[161].children[0] = 62; -waypoints[161].angles = (3.15735, -145.266, 0); -waypoints[162] = spawnstruct(); -waypoints[162].origin = (1182.26, 1465.15, -254.875); -waypoints[162].type = "crouch"; -waypoints[162].childCount = 1; -waypoints[162].children[0] = 63; -waypoints[162].angles = (10.661, -13.4578, 0); -waypoints[163] = spawnstruct(); -waypoints[163].origin = (1176.66, 1390.65, -254.875); -waypoints[163].type = "claymore"; -waypoints[163].childCount = 1; -waypoints[163].children[0] = 63; -waypoints[163].angles = (12.4847, 12.3052, 0); -waypoints[164] = spawnstruct(); -waypoints[164].origin = (478.181, 2006.66, -254.216); -waypoints[164].type = "claymore"; -waypoints[164].childCount = 1; -waypoints[164].children[0] = 2; -waypoints[164].angles = (18.0658, 149.623, 0); -waypoints[165] = spawnstruct(); -waypoints[165].origin = (426.021, 2458.08, -254.875); -waypoints[165].type = "crouch"; -waypoints[165].childCount = 1; -waypoints[165].children[0] = 80; -waypoints[165].angles = (1.63574, -42.5276, 0); -waypoints[166] = spawnstruct(); -waypoints[166].origin = (491.285, 1611.47, -254.875); -waypoints[166].type = "crouch"; -waypoints[166].childCount = 1; -waypoints[166].children[0] = 79; -waypoints[166].angles = (6.20056, 95.5706, 0); -waypoints[167] = spawnstruct(); -waypoints[167].origin = (1426.43, 2395.16, -254.875); -waypoints[167].type = "crouch"; -waypoints[167].childCount = 1; -waypoints[167].children[0] = 65; -waypoints[167].angles = (7.2113, -122.343, 0); -waypoints[168] = spawnstruct(); -waypoints[168].origin = (1198.77, 710.096, -330.872); -waypoints[168].type = "grenade"; -waypoints[168].childCount = 1; -waypoints[168].children[0] = 57; -waypoints[168].angles = (-19.6613, 157.775, 0); -waypoints[169] = spawnstruct(); -waypoints[169].origin = (757.507, -341.025, -395.073); -waypoints[169].type = "javelin"; -waypoints[169].childCount = 1; -waypoints[169].children[0] = 93; -waypoints[169].jav_point = (346.269, 1235.89, -158.617); -waypoints[170] = spawnstruct(); -waypoints[170].origin = (439.921, -212.854, -390.375); -waypoints[170].type = "javelin"; -waypoints[170].childCount = 1; -waypoints[170].children[0] = 21; -waypoints[170].jav_point = (1506.59, 1148.65, -53.2135); -waypoints[171] = spawnstruct(); -waypoints[171].origin = (461.035, 748.635, -381.263); -waypoints[171].type = "crouch"; -waypoints[171].childCount = 1; -waypoints[171].children[0] = 84; -waypoints[171].angles = (6.21704, -58.1117, 0); -waypoints[172] = spawnstruct(); -waypoints[172].origin = (-14.9585, 779.176, -321.983); -waypoints[172].type = "claymore"; -waypoints[172].childCount = 1; -waypoints[172].children[0] = 111; -waypoints[172].angles = (11.4905, 3.59304, 0); -waypoints[173] = spawnstruct(); -waypoints[173].origin = (76.6658, 933.886, -299.825); -waypoints[173].type = "claymore"; -waypoints[173].childCount = 1; -waypoints[173].children[0] = 110; -waypoints[173].angles = (20.9222, -53.2667, 0); -waypoints[174] = spawnstruct(); -waypoints[174].origin = (-449.715, 20.236, -404.523); -waypoints[174].type = "javelin"; -waypoints[174].childCount = 1; -waypoints[174].children[0] = 26; -waypoints[174].jav_point = (318.547, 1491.41, -87.6472); -waypoints[175] = spawnstruct(); -waypoints[175].origin = (1551.73, 499.449, -325.569); -waypoints[175].type = "crouch"; -waypoints[175].childCount = 1; -waypoints[175].children[0] = 178; -waypoints[175].angles = (4.33289, 142.202, 0); -waypoints[176] = spawnstruct(); -waypoints[176].origin = (1665.59, 813.207, -311.334); -waypoints[176].type = "grenade"; -waypoints[176].childCount = 1; -waypoints[176].children[0] = 177; -waypoints[176].angles = (-32.0758, 171.711, 0); -waypoints[177] = spawnstruct(); -waypoints[177].origin = (1667.24, 846.904, -310.133); -waypoints[177].type = "stand"; -waypoints[177].childCount = 3; -waypoints[177].children[0] = 10; -waypoints[177].children[1] = 178; -waypoints[177].children[2] = 176; -waypoints[178] = spawnstruct(); -waypoints[178].origin = (1558.44, 514.418, -322.22); -waypoints[178].type = "stand"; -waypoints[178].childCount = 3; -waypoints[178].children[0] = 177; -waypoints[178].children[1] = 11; -waypoints[178].children[2] = 175; -waypoints[179] = spawnstruct(); -waypoints[179].origin = (1300.22, 1217.83, -254.875); -waypoints[179].type = "claymore"; -waypoints[179].childCount = 1; -waypoints[179].children[0] = 8; -waypoints[179].angles = (15.083, 28.7407, 0); -waypoints[180] = spawnstruct(); -waypoints[180].origin = (-956.01, 947.49, -436.201); -waypoints[180].type = "javelin"; -waypoints[180].childCount = 1; -waypoints[180].children[0] = 124; -waypoints[180].jav_point = (359.598, 2119.62, -43.2117); -waypoints[181] = spawnstruct(); -waypoints[181].origin = (1181.22, -408.889, -385.817); -waypoints[181].type = "claymore"; -waypoints[181].childCount = 1; -waypoints[181].children[0] = 16; -waypoints[181].angles = (25.6354, -164.185, 0); -return waypoints; +/* 0:09 */waypoints[89] = spawnstruct(); +/* 0:09 */waypoints[89].origin = (894.341, 137.528, -402.816); +/* 0:09 */waypoints[89].type = "stand"; +/* 0:09 */waypoints[89].children[0] = 88; +/* 0:09 */waypoints[89].children[1] = 81; +/* 0:09 */waypoints[89].children[2] = 14; +/* 0:09 */waypoints[89].children[3] = 90; +/* 0:09 */waypoints[89].children[4] = 92; +/* 0:09 */waypoints[90] = spawnstruct(); +/* 0:09 */waypoints[90].origin = (741.433, 80.7025, -400.823); +/* 0:09 */waypoints[90].type = "stand"; +/* 0:09 */waypoints[90].children[0] = 89; +/* 0:09 */waypoints[90].children[1] = 91; +/* 0:09 */waypoints[90].children[2] = 88; +/* 0:09 */waypoints[90].children[3] = 95; +/* 0:09 */waypoints[90].children[4] = 129; +/* 0:09 */waypoints[91] = spawnstruct(); +/* 0:09 */waypoints[91].origin = (994.47, -194.488, -402.978); +/* 0:09 */waypoints[91].type = "stand"; +/* 0:09 */waypoints[91].children[0] = 90; +/* 0:09 */waypoints[91].children[1] = 92; +/* 0:09 */waypoints[91].children[2] = 17; +/* 0:09 */waypoints[91].children[3] = 93; +/* 0:09 */waypoints[92] = spawnstruct(); +/* 0:09 */waypoints[92].origin = (1117.71, -99.9487, -401.085); +/* 0:09 */waypoints[92].type = "stand"; +/* 0:09 */waypoints[92].children[0] = 91; +/* 0:09 */waypoints[92].children[1] = 14; +/* 0:09 */waypoints[92].children[2] = 89; +/* 0:09 */waypoints[92].children[3] = 15; +/* 0:09 */waypoints[93] = spawnstruct(); +/* 0:09 */waypoints[93].origin = (863.089, -314.854, -397.504); +/* 0:09 */waypoints[93].type = "stand"; +/* 0:09 */waypoints[93].children[0] = 91; +/* 0:09 */waypoints[93].children[1] = 94; +/* 0:09 */waypoints[93].children[2] = 18; +/* 0:09 */waypoints[93].children[3] = 17; +/* 0:09 */waypoints[93].children[4] = 128; +/* 0:09 */waypoints[93].children[5] = 129; +/* 0:09 */waypoints[93].children[6] = 169; +/* 0:09 */waypoints[94] = spawnstruct(); +/* 0:09 */waypoints[94].origin = (587.945, -193.994, -394.219); +/* 0:09 */waypoints[94].type = "stand"; +/* 0:09 */waypoints[94].children[0] = 93; +/* 0:09 */waypoints[94].children[1] = 21; +/* 0:09 */waypoints[94].children[2] = 95; +/* 0:09 */waypoints[94].children[3] = 128; +/* 0:09 */waypoints[95] = spawnstruct(); +/* 0:09 */waypoints[95].origin = (496.864, 30.3787, -395.699); +/* 0:09 */waypoints[95].type = "stand"; +/* 0:09 */waypoints[95].children[0] = 94; +/* 0:09 */waypoints[95].children[1] = 87; +/* 0:09 */waypoints[95].children[2] = 90; +/* 0:09 */waypoints[95].children[3] = 21; +/* 0:09 */waypoints[95].children[4] = 107; +/* 0:09 */waypoints[95].children[5] = 129; +/* 0:09 */waypoints[96] = spawnstruct(); +/* 0:09 */waypoints[96].origin = (167.797, 177.289, -390.375); +/* 0:09 */waypoints[96].type = "stand"; +/* 0:09 */waypoints[96].children[0] = 22; +/* 0:09 */waypoints[96].children[1] = 24; +/* 0:09 */waypoints[97] = spawnstruct(); +/* 0:09 */waypoints[97].origin = (-383.358, -92.625, -401.699); +/* 0:09 */waypoints[97].type = "climb"; +/* 0:09 */waypoints[97].children[0] = 28; +/* 0:09 */waypoints[97].children[1] = 98; +/* 0:09 */waypoints[97].angles = (1.11511, -65.4066, 0); +/* 0:09 */waypoints[98] = spawnstruct(); +/* 0:09 */waypoints[98].origin = (-382.828, -93.9653, -179.875); +/* 0:09 */waypoints[98].type = "climb"; +/* 0:09 */waypoints[98].children[0] = 97; +/* 0:09 */waypoints[98].children[1] = 99; +/* 0:09 */waypoints[98].angles = (-6.50269, -63.3796, 0); +/* 0:09 */waypoints[99] = spawnstruct(); +/* 0:09 */waypoints[99].origin = (-340.253, -163.489, -194.375); +/* 0:09 */waypoints[99].type = "stand"; +/* 0:09 */waypoints[99].children[0] = 98; +/* 0:09 */waypoints[99].children[1] = 100; +/* 0:09 */waypoints[99].children[2] = 154; +/* 0:09 */waypoints[100] = spawnstruct(); +/* 0:09 */waypoints[100].origin = (-275.16, -140.512, -194.375); +/* 0:09 */waypoints[100].type = "stand"; +/* 0:09 */waypoints[100].children[0] = 99; +/* 0:09 */waypoints[100].children[1] = 101; +/* 0:09 */waypoints[100].children[2] = 151; +/* 0:09 */waypoints[101] = spawnstruct(); +/* 0:09 */waypoints[101].origin = (-305.948, 98.6066, -194.375); +/* 0:09 */waypoints[101].type = "stand"; +/* 0:09 */waypoints[101].children[0] = 100; +/* 0:09 */waypoints[101].children[1] = 102; +/* 0:09 */waypoints[102] = spawnstruct(); +/* 0:09 */waypoints[102].origin = (-122.798, 309.559, -194.375); +/* 0:09 */waypoints[102].type = "stand"; +/* 0:09 */waypoints[102].children[0] = 101; +/* 0:09 */waypoints[102].children[1] = 103; +/* 0:09 */waypoints[103] = spawnstruct(); +/* 0:09 */waypoints[103].origin = (133.673, 380.693, -194.375); +/* 0:09 */waypoints[103].type = "stand"; +/* 0:09 */waypoints[103].children[0] = 102; +/* 0:09 */waypoints[103].children[1] = 104; +/* 0:09 */waypoints[104] = spawnstruct(); +/* 0:09 */waypoints[104].origin = (325.663, 330.752, -194.375); +/* 0:09 */waypoints[104].type = "stand"; +/* 0:09 */waypoints[104].children[0] = 103; +/* 0:09 */waypoints[104].children[1] = 105; +/* 0:09 */waypoints[104].children[2] = 153; +/* 0:09 */waypoints[105] = spawnstruct(); +/* 0:09 */waypoints[105].origin = (445.029, 167.173, -194.375); +/* 0:09 */waypoints[105].type = "stand"; +/* 0:09 */waypoints[105].children[0] = 104; +/* 0:09 */waypoints[105].children[1] = 106; +/* 0:09 */waypoints[105].children[2] = 152; +/* 0:09 */waypoints[106] = spawnstruct(); +/* 0:09 */waypoints[106].origin = (468.042, 105.494, -179.875); +/* 0:09 */waypoints[106].type = "climb"; +/* 0:09 */waypoints[106].children[0] = 105; +/* 0:09 */waypoints[106].children[1] = 107; +/* 0:09 */waypoints[106].angles = (-1.026, 115.725, 0); +/* 0:09 */waypoints[107] = spawnstruct(); +/* 0:09 */waypoints[107].origin = (471.229, 103.116, -395.515); +/* 0:09 */waypoints[107].type = "climb"; +/* 0:09 */waypoints[107].children[0] = 106; +/* 0:09 */waypoints[107].children[1] = 95; +/* 0:09 */waypoints[107].angles = (2.92908, 115.011, 0); +/* 0:09 */waypoints[108] = spawnstruct(); +/* 0:09 */waypoints[108].origin = (642.994, 983.978, -317.816); +/* 0:09 */waypoints[108].type = "stand"; +/* 0:09 */waypoints[108].children[0] = 55; +/* 0:09 */waypoints[108].children[1] = 53; +/* 0:09 */waypoints[108].children[2] = 136; +/* 0:09 */waypoints[108].children[3] = 137; +/* 0:09 */waypoints[109] = spawnstruct(); +/* 0:09 */waypoints[109].origin = (-243.877, 963.082, -283.192); +/* 0:09 */waypoints[109].type = "stand"; +/* 0:09 */waypoints[109].children[0] = 50; +/* 0:09 */waypoints[109].children[1] = 110; +/* 0:09 */waypoints[109].children[2] = 130; +/* 0:09 */waypoints[109].children[3] = 134; +/* 0:09 */waypoints[109].children[4] = 121; +/* 0:09 */waypoints[109].children[5] = 52; +/* 0:09 */waypoints[110] = spawnstruct(); +/* 0:09 */waypoints[110].origin = (205.911, 883.668, -307.23); +/* 0:09 */waypoints[110].type = "stand"; +/* 0:09 */waypoints[110].children[0] = 109; +/* 0:09 */waypoints[110].children[1] = 51; +/* 0:09 */waypoints[110].children[2] = 111; +/* 0:09 */waypoints[110].children[3] = 50; +/* 0:09 */waypoints[110].children[4] = 173; +/* 0:09 */waypoints[111] = spawnstruct(); +/* 0:09 */waypoints[111].origin = (-84.5282, 700.434, -344.46); +/* 0:09 */waypoints[111].type = "stand"; +/* 0:09 */waypoints[111].children[0] = 110; +/* 0:09 */waypoints[111].children[1] = 112; +/* 0:09 */waypoints[111].children[2] = 172; +/* 0:09 */waypoints[112] = spawnstruct(); +/* 0:09 */waypoints[112].origin = (-115.248, 554.238, -371.893); +/* 0:09 */waypoints[112].type = "stand"; +/* 0:09 */waypoints[112].children[0] = 111; +/* 0:09 */waypoints[112].children[1] = 113; +/* 0:09 */waypoints[112].children[2] = 114; +/* 0:09 */waypoints[112].children[3] = 127; +/* 0:09 */waypoints[113] = spawnstruct(); +/* 0:09 */waypoints[113].origin = (68.356, 381.081, -379.74); +/* 0:09 */waypoints[113].type = "stand"; +/* 0:09 */waypoints[113].children[0] = 112; +/* 0:09 */waypoints[113].children[1] = 25; +/* 0:09 */waypoints[114] = spawnstruct(); +/* 0:09 */waypoints[114].origin = (-370.804, 550.571, -384.103); +/* 0:09 */waypoints[114].type = "stand"; +/* 0:09 */waypoints[114].children[0] = 112; +/* 0:09 */waypoints[114].children[1] = 115; +/* 0:09 */waypoints[114].children[2] = 118; +/* 0:09 */waypoints[115] = spawnstruct(); +/* 0:09 */waypoints[115].origin = (-622.699, 491.826, -399.676); +/* 0:09 */waypoints[115].type = "stand"; +/* 0:09 */waypoints[115].children[0] = 114; +/* 0:09 */waypoints[115].children[1] = 116; +/* 0:09 */waypoints[116] = spawnstruct(); +/* 0:09 */waypoints[116].origin = (-636.888, 301.869, -417.383); +/* 0:09 */waypoints[116].type = "stand"; +/* 0:09 */waypoints[116].children[0] = 115; +/* 0:09 */waypoints[116].children[1] = 32; +/* 0:09 */waypoints[116].children[2] = 26; +/* 0:09 */waypoints[116].children[3] = 118; +/* 0:09 */waypoints[116].children[4] = 25; +/* 0:09 */waypoints[116].children[5] = 33; +/* 0:09 */waypoints[117] = spawnstruct(); +/* 0:09 */waypoints[117].origin = (-636.804, 44.4847, -413.49); +/* 0:09 */waypoints[117].type = "stand"; +/* 0:09 */waypoints[117].children[0] = 29; +/* 0:09 */waypoints[117].children[1] = 32; +/* 0:09 */waypoints[117].children[2] = 118; +/* 0:09 */waypoints[117].children[3] = 30; +/* 0:09 */waypoints[117].children[4] = 26; +/* 0:09 */waypoints[117].children[5] = 144; +/* 0:09 */waypoints[118] = spawnstruct(); +/* 0:09 */waypoints[118].origin = (-404.56, 334.421, -403.183); +/* 0:09 */waypoints[118].type = "stand"; +/* 0:09 */waypoints[118].children[0] = 117; +/* 0:09 */waypoints[118].children[1] = 25; +/* 0:09 */waypoints[118].children[2] = 116; +/* 0:09 */waypoints[118].children[3] = 114; +/* 0:09 */waypoints[118].children[4] = 127; +/* 0:09 */waypoints[119] = spawnstruct(); +/* 0:09 */waypoints[119].origin = (-423.306, 1480.43, -275.509); +/* 0:09 */waypoints[119].type = "stand"; +/* 0:09 */waypoints[119].children[0] = 44; +/* 0:09 */waypoints[119].children[1] = 120; +/* 0:09 */waypoints[119].children[2] = 121; +/* 0:09 */waypoints[119].children[3] = 122; +/* 0:09 */waypoints[119].children[4] = 123; +/* 0:09 */waypoints[120] = spawnstruct(); +/* 0:09 */waypoints[120].origin = (-206.077, 1495.28, -290.875); +/* 0:09 */waypoints[120].type = "stand"; +/* 0:09 */waypoints[120].children[0] = 119; +/* 0:09 */waypoints[120].children[1] = 48; +/* 0:09 */waypoints[120].children[2] = 46; +/* 0:09 */waypoints[120].children[3] = 121; +/* 0:09 */waypoints[120].children[4] = 44; +/* 0:09 */waypoints[120].children[5] = 150; +/* 0:09 */waypoints[121] = spawnstruct(); +/* 0:09 */waypoints[121].origin = (-434.805, 1124.8, -295.25); +/* 0:09 */waypoints[121].type = "stand"; +/* 0:09 */waypoints[121].children[0] = 120; +/* 0:09 */waypoints[121].children[1] = 119; +/* 0:09 */waypoints[121].children[2] = 109; +/* 0:09 */waypoints[121].children[3] = 134; +/* 0:09 */waypoints[121].children[4] = 123; +/* 0:09 */waypoints[121].children[5] = 133; +/* 0:09 */waypoints[121].children[6] = 148; +/* 0:09 */waypoints[122] = spawnstruct(); +/* 0:09 */waypoints[122].origin = (-831.922, 1428.51, -258.958); +/* 0:09 */waypoints[122].type = "stand"; +/* 0:09 */waypoints[122].children[0] = 119; +/* 0:09 */waypoints[122].children[1] = 123; +/* 0:09 */waypoints[123] = spawnstruct(); +/* 0:09 */waypoints[123].origin = (-739.076, 1099.4, -362.637); +/* 0:09 */waypoints[123].type = "stand"; +/* 0:09 */waypoints[123].children[0] = 122; +/* 0:09 */waypoints[123].children[1] = 124; +/* 0:09 */waypoints[123].children[2] = 133; +/* 0:09 */waypoints[123].children[3] = 121; +/* 0:09 */waypoints[123].children[4] = 119; +/* 0:09 */waypoints[123].children[5] = 134; +/* 0:09 */waypoints[124] = spawnstruct(); +/* 0:09 */waypoints[124].origin = (-948.116, 1043.17, -423.777); +/* 0:09 */waypoints[124].type = "stand"; +/* 0:09 */waypoints[124].children[0] = 123; +/* 0:09 */waypoints[124].children[1] = 35; +/* 0:09 */waypoints[124].children[2] = 126; +/* 0:09 */waypoints[124].children[3] = 146; +/* 0:09 */waypoints[124].children[4] = 180; +/* 0:09 */waypoints[125] = spawnstruct(); +/* 0:09 */waypoints[125].origin = (-1231.56, 1184.14, -435.875); +/* 0:09 */waypoints[125].type = "stand"; +/* 0:09 */waypoints[125].children[0] = 35; +/* 0:09 */waypoints[125].children[1] = 39; +/* 0:09 */waypoints[126] = spawnstruct(); +/* 0:09 */waypoints[126].origin = (-1034.11, 1238.07, -427.875); +/* 0:09 */waypoints[126].type = "stand"; +/* 0:09 */waypoints[126].children[0] = 40; +/* 0:09 */waypoints[126].children[1] = 124; +/* 0:09 */waypoints[127] = spawnstruct(); +/* 0:09 */waypoints[127].origin = (-155.102, 413.338, -393.544); +/* 0:09 */waypoints[127].type = "stand"; +/* 0:09 */waypoints[127].children[0] = 118; +/* 0:09 */waypoints[127].children[1] = 112; +/* 0:09 */waypoints[127].children[2] = 25; +/* 0:09 */waypoints[128] = spawnstruct(); +/* 0:09 */waypoints[128].origin = (658.248, -367.854, -394.062); +/* 0:09 */waypoints[128].type = "stand"; +/* 0:09 */waypoints[128].children[0] = 20; +/* 0:09 */waypoints[128].children[1] = 94; +/* 0:09 */waypoints[128].children[2] = 18; +/* 0:09 */waypoints[128].children[3] = 93; +/* 0:09 */waypoints[129] = spawnstruct(); +/* 0:09 */waypoints[129].origin = (663.152, -20.8519, -397.814); +/* 0:09 */waypoints[129].type = "stand"; +/* 0:09 */waypoints[129].children[0] = 93; +/* 0:09 */waypoints[129].children[1] = 90; +/* 0:09 */waypoints[129].children[2] = 95; +/* 0:09 */waypoints[130] = spawnstruct(); +/* 0:09 */waypoints[130].origin = (-294.536, 678.959, -279.34); +/* 0:09 */waypoints[130].type = "stand"; +/* 0:09 */waypoints[130].children[0] = 109; +/* 0:09 */waypoints[130].children[1] = 131; +/* 0:09 */waypoints[131] = spawnstruct(); +/* 0:09 */waypoints[131].origin = (-433.7, 636.783, -278.302); +/* 0:09 */waypoints[131].type = "stand"; +/* 0:09 */waypoints[131].children[0] = 130; +/* 0:09 */waypoints[131].children[1] = 132; +/* 0:09 */waypoints[131].children[2] = 134; +/* 0:09 */waypoints[132] = spawnstruct(); +/* 0:09 */waypoints[132].origin = (-617.004, 606.418, -272.533); +/* 0:09 */waypoints[132].type = "stand"; +/* 0:09 */waypoints[132].children[0] = 131; +/* 0:09 */waypoints[132].children[1] = 133; +/* 0:09 */waypoints[133] = spawnstruct(); +/* 0:09 */waypoints[133].origin = (-662.596, 900.245, -292.093); +/* 0:09 */waypoints[133].type = "stand"; +/* 0:09 */waypoints[133].children[0] = 132; +/* 0:09 */waypoints[133].children[1] = 123; +/* 0:09 */waypoints[133].children[2] = 134; +/* 0:09 */waypoints[133].children[3] = 121; +/* 0:09 */waypoints[134] = spawnstruct(); +/* 0:09 */waypoints[134].origin = (-453.665, 953.718, -282.675); +/* 0:09 */waypoints[134].type = "stand"; +/* 0:09 */waypoints[134].children[0] = 133; +/* 0:09 */waypoints[134].children[1] = 109; +/* 0:09 */waypoints[134].children[2] = 121; +/* 0:09 */waypoints[134].children[3] = 131; +/* 0:09 */waypoints[134].children[4] = 123; +/* 0:09 */waypoints[135] = spawnstruct(); +/* 0:09 */waypoints[135].origin = (-23.1219, 1462.42, -290.875); +/* 0:09 */waypoints[135].type = "stand"; +/* 0:09 */waypoints[135].children[0] = 50; +/* 0:09 */waypoints[135].children[1] = 48; +/* 0:09 */waypoints[135].children[2] = 49; +/* 0:09 */waypoints[136] = spawnstruct(); +/* 0:09 */waypoints[136].origin = (444.563, 995.776, -317.715); +/* 0:09 */waypoints[136].type = "stand"; +/* 0:09 */waypoints[136].children[0] = 108; +/* 0:09 */waypoints[136].children[1] = 52; +/* 0:09 */waypoints[137] = spawnstruct(); +/* 0:09 */waypoints[137].origin = (618.363, 856.493, -314.043); +/* 0:09 */waypoints[137].type = "stand"; +/* 0:09 */waypoints[137].children[0] = 108; +/* 0:09 */waypoints[138] = spawnstruct(); +/* 0:09 */waypoints[138].origin = (345.077, -39.7041, -390.375); +/* 0:09 */waypoints[138].type = "claymore"; +/* 0:09 */waypoints[138].children[0] = 22; +/* 0:09 */waypoints[138].angles = (17.5452, -61.4241, 0); +/* 0:09 */waypoints[139] = spawnstruct(); +/* 0:09 */waypoints[139].origin = (290.676, -220.312, -390.375); +/* 0:09 */waypoints[139].type = "claymore"; +/* 0:09 */waypoints[139].children[0] = 22; +/* 0:09 */waypoints[139].angles = (11.2555, 43.1383, 0); +/* 0:09 */waypoints[140] = spawnstruct(); +/* 0:09 */waypoints[140].origin = (-221.569, 31.0991, -390.375); +/* 0:09 */waypoints[140].type = "claymore"; +/* 0:09 */waypoints[140].children[0] = 24; +/* 0:09 */waypoints[140].angles = (15.5182, 80.4644, 0); +/* 0:09 */waypoints[141] = spawnstruct(); +/* 0:09 */waypoints[141].origin = (-88.448, 113.046, -390.375); +/* 0:09 */waypoints[141].type = "claymore"; +/* 0:09 */waypoints[141].children[0] = 24; +/* 0:09 */waypoints[141].angles = (14.2987, 156.627, 0); +/* 0:09 */waypoints[142] = spawnstruct(); +/* 0:09 */waypoints[142].origin = (-415.538, 219.589, -406.933); +/* 0:09 */waypoints[142].type = "grenade"; +/* 0:09 */waypoints[142].children[0] = 26; +/* 0:09 */waypoints[142].angles = (-29.718, 91.8188, 0); +/* 0:09 */waypoints[143] = spawnstruct(); +/* 0:09 */waypoints[143].origin = (-373.811, 292.169, -401.534); +/* 0:09 */waypoints[143].type = "grenade"; +/* 0:09 */waypoints[143].children[0] = 26; +/* 0:09 */waypoints[143].angles = (-17.8473, 14.5409, 0); +/* 0:09 */waypoints[144] = spawnstruct(); +/* 0:09 */waypoints[144].origin = (-721.256, -29.894, -410.604); +/* 0:09 */waypoints[144].type = "javelin"; +/* 0:09 */waypoints[144].children[0] = 117; +/* 0:09 */waypoints[144].jav_point = (493.042, 1224.85, -228.721); +/* 0:09 */waypoints[145] = spawnstruct(); +/* 0:09 */waypoints[145].origin = (-970.369, 585.368, -451.875); +/* 0:09 */waypoints[145].type = "claymore"; +/* 0:09 */waypoints[145].children[0] = 33; +/* 0:09 */waypoints[145].angles = (15.0623, -35.738, 0); +/* 0:09 */waypoints[146] = spawnstruct(); +/* 0:09 */waypoints[146].origin = (-973.457, 1141.12, -423.63); +/* 0:09 */waypoints[146].type = "claymore"; +/* 0:09 */waypoints[146].children[0] = 124; +/* 0:09 */waypoints[146].angles = (18.3087, -63.7312, 0); +/* 0:09 */waypoints[147] = spawnstruct(); +/* 0:09 */waypoints[147].origin = (-815.893, 1571.22, -355.875); +/* 0:09 */waypoints[147].type = "claymore"; +/* 0:09 */waypoints[147].children[0] = 42; +/* 0:09 */waypoints[147].angles = (18.0011, 36.7388, 0); +/* 0:09 */waypoints[148] = spawnstruct(); +/* 0:09 */waypoints[148].origin = (-432.97, 1212.64, -288.188); +/* 0:09 */waypoints[148].type = "grenade"; +/* 0:09 */waypoints[148].children[0] = 121; +/* 0:09 */waypoints[148].angles = (-20.7532, -7.61303, 0); +/* 0:09 */waypoints[149] = spawnstruct(); +/* 0:09 */waypoints[149].origin = (-181.313, 1618.55, -290.875); +/* 0:09 */waypoints[149].type = "grenade"; +/* 0:09 */waypoints[149].children[0] = 45; +/* 0:09 */waypoints[149].angles = (-17.7704, -58.4633, 0); +/* 0:09 */waypoints[150] = spawnstruct(); +/* 0:09 */waypoints[150].origin = (-270.154, 1553.01, -288.286); +/* 0:09 */waypoints[150].type = "grenade"; +/* 0:09 */waypoints[150].children[0] = 120; +/* 0:09 */waypoints[150].angles = (-24.9719, -95.8882, 0); +/* 0:09 */waypoints[151] = spawnstruct(); +/* 0:09 */waypoints[151].origin = (-243.012, -149.104, -194.375); +/* 0:09 */waypoints[151].type = "crouch"; +/* 0:09 */waypoints[151].children[0] = 100; +/* 0:09 */waypoints[151].angles = (5.98755, 151.348, 0); +/* 0:09 */waypoints[152] = spawnstruct(); +/* 0:09 */waypoints[152].origin = (457.607, 205.876, -194.375); +/* 0:09 */waypoints[152].type = "claymore"; +/* 0:09 */waypoints[152].children[0] = 105; +/* 0:09 */waypoints[152].angles = (41.9897, -84.2482, 0); +/* 0:09 */waypoints[153] = spawnstruct(); +/* 0:09 */waypoints[153].origin = (241.901, 336.31, -194.375); +/* 0:09 */waypoints[153].type = "crouch"; +/* 0:09 */waypoints[153].children[0] = 104; +/* 0:09 */waypoints[153].angles = (13.0847, 0.0938988, 0); +/* 0:09 */waypoints[154] = spawnstruct(); +/* 0:09 */waypoints[154].origin = (-363.109, -204.078, -194.375); +/* 0:09 */waypoints[154].type = "claymore"; +/* 0:09 */waypoints[154].children[0] = 99; +/* 0:09 */waypoints[154].angles = (32.7612, 98.6742, 0); +/* 0:09 */waypoints[155] = spawnstruct(); +/* 0:09 */waypoints[155].origin = (693.681, 417.741, -387.561); +/* 0:09 */waypoints[155].type = "grenade"; +/* 0:09 */waypoints[155].children[0] = 82; +/* 0:09 */waypoints[155].angles = (-20.271, 178.391, 0); +/* 0:09 */waypoints[156] = spawnstruct(); +/* 0:09 */waypoints[156].origin = (689.968, 366.225, -391.423); +/* 0:09 */waypoints[156].type = "grenade"; +/* 0:09 */waypoints[156].children[0] = 82; +/* 0:09 */waypoints[156].angles = (-25.5444, 123.761, 0); +/* 0:09 */waypoints[157] = spawnstruct(); +/* 0:09 */waypoints[157].origin = (1420.19, 175.758, -366.791); +/* 0:09 */waypoints[157].type = "stand"; +/* 0:09 */waypoints[157].children[0] = 13; +/* 0:09 */waypoints[157].children[1] = 15; +/* 0:09 */waypoints[157].children[2] = 158; +/* 0:09 */waypoints[157].children[3] = 159; +/* 0:09 */waypoints[158] = spawnstruct(); +/* 0:09 */waypoints[158].origin = (1462.1, 200.944, -359.581); +/* 0:09 */waypoints[158].type = "claymore"; +/* 0:09 */waypoints[158].children[0] = 157; +/* 0:09 */waypoints[158].angles = (25.2673, 172.744, 0); +/* 0:09 */waypoints[159] = spawnstruct(); +/* 0:09 */waypoints[159].origin = (1472.32, 209.812, -358.299); +/* 0:09 */waypoints[159].type = "crouch"; +/* 0:09 */waypoints[159].children[0] = 157; +/* 0:09 */waypoints[159].angles = (13.2977, -159.565, 0); +/* 0:09 */waypoints[160] = spawnstruct(); +/* 0:09 */waypoints[160].origin = (1662.79, 1234.48, -254.875); +/* 0:09 */waypoints[160].type = "claymore"; +/* 0:09 */waypoints[160].children[0] = 62; +/* 0:09 */waypoints[160].angles = (19.0765, -159.867, 0); +/* 0:09 */waypoints[161] = spawnstruct(); +/* 0:09 */waypoints[161].origin = (1743.8, 1358.99, -254.875); +/* 0:09 */waypoints[161].type = "crouch"; +/* 0:09 */waypoints[161].children[0] = 62; +/* 0:09 */waypoints[161].angles = (3.15735, -145.266, 0); +/* 0:09 */waypoints[162] = spawnstruct(); +/* 0:09 */waypoints[162].origin = (1182.26, 1465.15, -254.875); +/* 0:09 */waypoints[162].type = "crouch"; +/* 0:09 */waypoints[162].children[0] = 63; +/* 0:09 */waypoints[162].angles = (10.661, -13.4578, 0); +/* 0:09 */waypoints[163] = spawnstruct(); +/* 0:09 */waypoints[163].origin = (1176.66, 1390.65, -254.875); +/* 0:09 */waypoints[163].type = "claymore"; +/* 0:09 */waypoints[163].children[0] = 63; +/* 0:09 */waypoints[163].angles = (12.4847, 12.3052, 0); +/* 0:09 */waypoints[164] = spawnstruct(); +/* 0:09 */waypoints[164].origin = (478.181, 2006.66, -254.216); +/* 0:09 */waypoints[164].type = "claymore"; +/* 0:09 */waypoints[164].children[0] = 2; +/* 0:09 */waypoints[164].angles = (18.0658, 149.623, 0); +/* 0:09 */waypoints[165] = spawnstruct(); +/* 0:09 */waypoints[165].origin = (426.021, 2458.08, -254.875); +/* 0:09 */waypoints[165].type = "crouch"; +/* 0:09 */waypoints[165].children[0] = 80; +/* 0:09 */waypoints[165].angles = (1.63574, -42.5276, 0); +/* 0:09 */waypoints[166] = spawnstruct(); +/* 0:09 */waypoints[166].origin = (491.285, 1611.47, -254.875); +/* 0:09 */waypoints[166].type = "crouch"; +/* 0:09 */waypoints[166].children[0] = 79; +/* 0:09 */waypoints[166].angles = (6.20056, 95.5706, 0); +/* 0:09 */waypoints[167] = spawnstruct(); +/* 0:09 */waypoints[167].origin = (1426.43, 2395.16, -254.875); +/* 0:09 */waypoints[167].type = "crouch"; +/* 0:09 */waypoints[167].children[0] = 65; +/* 0:09 */waypoints[167].angles = (7.2113, -122.343, 0); +/* 0:09 */waypoints[168] = spawnstruct(); +/* 0:09 */waypoints[168].origin = (1198.77, 710.096, -330.872); +/* 0:09 */waypoints[168].type = "grenade"; +/* 0:09 */waypoints[168].children[0] = 57; +/* 0:09 */waypoints[168].angles = (-19.6613, 157.775, 0); +/* 0:09 */waypoints[169] = spawnstruct(); +/* 0:09 */waypoints[169].origin = (757.507, -341.025, -395.073); +/* 0:09 */waypoints[169].type = "javelin"; +/* 0:09 */waypoints[169].children[0] = 93; +/* 0:09 */waypoints[169].jav_point = (346.269, 1235.89, -158.617); +/* 0:09 */waypoints[170] = spawnstruct(); +/* 0:09 */waypoints[170].origin = (439.921, -212.854, -390.375); +/* 0:09 */waypoints[170].type = "javelin"; +/* 0:09 */waypoints[170].children[0] = 21; +/* 0:09 */waypoints[170].jav_point = (1506.59, 1148.65, -53.2135); +/* 0:09 */waypoints[171] = spawnstruct(); +/* 0:09 */waypoints[171].origin = (461.035, 748.635, -381.263); +/* 0:09 */waypoints[171].type = "crouch"; +/* 0:09 */waypoints[171].children[0] = 84; +/* 0:09 */waypoints[171].angles = (6.21704, -58.1117, 0); +/* 0:09 */waypoints[172] = spawnstruct(); +/* 0:09 */waypoints[172].origin = (-14.9585, 779.176, -321.983); +/* 0:09 */waypoints[172].type = "claymore"; +/* 0:09 */waypoints[172].children[0] = 111; +/* 0:09 */waypoints[172].angles = (11.4905, 3.59304, 0); +/* 0:09 */waypoints[173] = spawnstruct(); +/* 0:09 */waypoints[173].origin = (76.6658, 933.886, -299.825); +/* 0:09 */waypoints[173].type = "claymore"; +/* 0:09 */waypoints[173].children[0] = 110; +/* 0:09 */waypoints[173].angles = (20.9222, -53.2667, 0); +/* 0:09 */waypoints[174] = spawnstruct(); +/* 0:09 */waypoints[174].origin = (-449.715, 20.236, -404.523); +/* 0:09 */waypoints[174].type = "javelin"; +/* 0:09 */waypoints[174].children[0] = 26; +/* 0:09 */waypoints[174].jav_point = (318.547, 1491.41, -87.6472); +/* 0:09 */waypoints[175] = spawnstruct(); +/* 0:09 */waypoints[175].origin = (1551.73, 499.449, -325.569); +/* 0:09 */waypoints[175].type = "crouch"; +/* 0:09 */waypoints[175].children[0] = 178; +/* 0:09 */waypoints[175].angles = (4.33289, 142.202, 0); +/* 0:09 */waypoints[176] = spawnstruct(); +/* 0:09 */waypoints[176].origin = (1665.59, 813.207, -311.334); +/* 0:09 */waypoints[176].type = "grenade"; +/* 0:09 */waypoints[176].children[0] = 177; +/* 0:09 */waypoints[176].angles = (-32.0758, 171.711, 0); +/* 0:09 */waypoints[177] = spawnstruct(); +/* 0:09 */waypoints[177].origin = (1667.24, 846.904, -310.133); +/* 0:09 */waypoints[177].type = "stand"; +/* 0:09 */waypoints[177].children[0] = 10; +/* 0:09 */waypoints[177].children[1] = 178; +/* 0:09 */waypoints[177].children[2] = 176; +/* 0:09 */waypoints[178] = spawnstruct(); +/* 0:09 */waypoints[178].origin = (1558.44, 514.418, -322.22); +/* 0:09 */waypoints[178].type = "stand"; +/* 0:09 */waypoints[178].children[0] = 177; +/* 0:09 */waypoints[178].children[1] = 11; +/* 0:09 */waypoints[178].children[2] = 175; +/* 0:09 */waypoints[179] = spawnstruct(); +/* 0:09 */waypoints[179].origin = (1300.22, 1217.83, -254.875); +/* 0:09 */waypoints[179].type = "claymore"; +/* 0:09 */waypoints[179].children[0] = 8; +/* 0:09 */waypoints[179].angles = (15.083, 28.7407, 0); +/* 0:09 */waypoints[180] = spawnstruct(); +/* 0:09 */waypoints[180].origin = (-956.01, 947.49, -436.201); +/* 0:09 */waypoints[180].type = "javelin"; +/* 0:09 */waypoints[180].children[0] = 124; +/* 0:09 */waypoints[180].jav_point = (359.598, 2119.62, -43.2117); +/* 0:09 */waypoints[181] = spawnstruct(); +/* 0:09 */waypoints[181].origin = (1181.22, -408.889, -385.817); +/* 0:09 */waypoints[181].type = "claymore"; +/* 0:09 */waypoints[181].children[0] = 16; +/* 0:09 */waypoints[181].angles = (25.6354, -164.185, 0); +/* 0:09 */return waypoints; } diff --git a/maps/mp/bots/waypoints/seatown.gsc b/maps/mp/bots/waypoints/seatown.gsc index a434990..1458ad1 100644 --- a/maps/mp/bots/waypoints/seatown.gsc +++ b/maps/mp/bots/waypoints/seatown.gsc @@ -1,2029 +1,1728 @@ Seatown() { -/* 32:47 */waypoints = []; -/* 32:47 */waypoints[0] = spawnstruct(); -/* 32:47 */waypoints[0].origin = (274.125, 508.147, 208.125); -/* 32:47 */waypoints[0].type = "climb"; -/* 32:47 */waypoints[0].childCount = 2; -/* 32:47 */waypoints[0].children[0] = 1; -/* 32:47 */waypoints[0].children[1] = 94; -/* 32:47 */waypoints[0].angles = (3.19031, 179.72, 0); -/* 32:47 */waypoints[1] = spawnstruct(); -/* 32:47 */waypoints[1].origin = (254.987, 490.885, 265.178); -/* 32:47 */waypoints[1].type = "stand"; -/* 32:47 */waypoints[1].childCount = 2; -/* 32:47 */waypoints[1].children[0] = 0; -/* 32:47 */waypoints[1].children[1] = 2; -/* 32:47 */waypoints[2] = spawnstruct(); -/* 32:47 */waypoints[2].origin = (212.125, 490.913, 273.45); -/* 32:47 */waypoints[2].type = "climb"; -/* 32:47 */waypoints[2].childCount = 2; -/* 32:47 */waypoints[2].children[0] = 1; -/* 32:47 */waypoints[2].children[1] = 3; -/* 32:47 */waypoints[2].angles = (4.42078, 179.896, 0); -/* 32:47 */waypoints[3] = spawnstruct(); -/* 32:47 */waypoints[3].origin = (196.098, 490.913, 352.125); -/* 32:47 */waypoints[3].type = "stand"; -/* 32:47 */waypoints[3].childCount = 2; -/* 32:47 */waypoints[3].children[0] = 2; -/* 32:47 */waypoints[3].children[1] = 4; -/* 32:47 */waypoints[4] = spawnstruct(); -/* 32:47 */waypoints[4].origin = (173.875, 490.919, 320.125); -/* 32:47 */waypoints[4].type = "climb"; -/* 32:47 */waypoints[4].childCount = 2; -/* 32:47 */waypoints[4].children[0] = 3; -/* 32:47 */waypoints[4].children[1] = 5; -/* 32:47 */waypoints[4].angles = (17.2473, -1.04919, 0); -/* 32:47 */waypoints[5] = spawnstruct(); -/* 32:47 */waypoints[5].origin = (17.3134, 491.224, 320.125); -/* 32:47 */waypoints[5].type = "stand"; -/* 32:47 */waypoints[5].childCount = 4; -/* 32:47 */waypoints[5].children[0] = 4; -/* 32:47 */waypoints[5].children[1] = 6; -/* 32:47 */waypoints[5].children[2] = 17; -/* 32:47 */waypoints[5].children[3] = 279; -/* 32:47 */waypoints[6] = spawnstruct(); -/* 32:47 */waypoints[6].origin = (27.0443, 618.823, 320.625); -/* 32:47 */waypoints[6].type = "stand"; -/* 32:47 */waypoints[6].childCount = 3; -/* 32:47 */waypoints[6].children[0] = 5; -/* 32:47 */waypoints[6].children[1] = 7; -/* 32:47 */waypoints[6].children[2] = 12; -/* 32:47 */waypoints[7] = spawnstruct(); -/* 32:47 */waypoints[7].origin = (64.6581, 742.875, 322.125); -/* 32:47 */waypoints[7].type = "climb"; -/* 32:47 */waypoints[7].childCount = 3; -/* 32:47 */waypoints[7].children[0] = 6; -/* 32:47 */waypoints[7].children[1] = 8; -/* 32:47 */waypoints[7].children[2] = 280; -/* 32:47 */waypoints[7].angles = (17.0551, 89.3188, 0); -/* 32:47 */waypoints[8] = spawnstruct(); -/* 32:47 */waypoints[8].origin = (64.661, 760.034, 356.125); -/* 32:47 */waypoints[8].type = "stand"; -/* 32:47 */waypoints[8].childCount = 2; -/* 32:47 */waypoints[8].children[0] = 7; -/* 32:47 */waypoints[8].children[1] = 9; -/* 32:47 */waypoints[9] = spawnstruct(); -/* 32:47 */waypoints[9].origin = (73.0425, 777.138, 322.125); -/* 32:47 */waypoints[9].type = "climb"; -/* 32:47 */waypoints[9].childCount = 2; -/* 32:47 */waypoints[9].children[0] = 8; -/* 32:47 */waypoints[9].children[1] = 10; -/* 32:47 */waypoints[9].angles = (11.7102, -92.4609, 0); -/* 32:47 */waypoints[10] = spawnstruct(); -/* 32:47 */waypoints[10].origin = (73.5488, 905.462, 322.125); -/* 32:47 */waypoints[10].type = "stand"; -/* 32:47 */waypoints[10].childCount = 2; -/* 32:47 */waypoints[10].children[0] = 9; -/* 32:47 */waypoints[10].children[1] = 11; -/* 32:47 */waypoints[11] = spawnstruct(); -/* 32:47 */waypoints[11].origin = (71.4178, 1189.72, 322.125); -/* 32:47 */waypoints[11].type = "crouch"; -/* 32:47 */waypoints[11].childCount = 1; -/* 32:47 */waypoints[11].children[0] = 10; -/* 32:47 */waypoints[11].angles = (18.5986, -148.903, 0); -/* 32:47 */waypoints[12] = spawnstruct(); -/* 32:47 */waypoints[12].origin = (-134.681, 672.431, 320.125); -/* 32:47 */waypoints[12].type = "stand"; -/* 32:47 */waypoints[12].childCount = 3; -/* 32:47 */waypoints[12].children[0] = 6; -/* 32:47 */waypoints[12].children[1] = 13; -/* 32:47 */waypoints[12].children[2] = 16; -/* 32:47 */waypoints[13] = spawnstruct(); -/* 32:47 */waypoints[13].origin = (-171.875, 672.452, 320.125); -/* 32:47 */waypoints[13].type = "climb"; -/* 32:47 */waypoints[13].childCount = 2; -/* 32:47 */waypoints[13].children[0] = 12; -/* 32:47 */waypoints[13].children[1] = 14; -/* 32:47 */waypoints[13].angles = (25.7892, 178.693, 0); -/* 32:47 */waypoints[14] = spawnstruct(); -/* 32:47 */waypoints[14].origin = (-188.74, 672.458, 356.125); -/* 32:47 */waypoints[14].type = "stand"; -/* 32:47 */waypoints[14].childCount = 2; -/* 32:47 */waypoints[14].children[0] = 13; -/* 32:47 */waypoints[14].children[1] = 15; -/* 32:47 */waypoints[15] = spawnstruct(); -/* 32:47 */waypoints[15].origin = (-302.975, 670.183, 344.143); -/* 32:47 */waypoints[15].type = "crouch"; -/* 32:47 */waypoints[15].childCount = 1; -/* 32:47 */waypoints[15].children[0] = 14; -/* 32:47 */waypoints[15].angles = (26.4923, 178.693, 0); -/* 32:47 */waypoints[16] = spawnstruct(); -/* 32:47 */waypoints[16].origin = (-116.378, 639.139, 320.125); -/* 32:47 */waypoints[16].type = "claymore"; -/* 32:47 */waypoints[16].childCount = 1; -/* 32:47 */waypoints[16].children[0] = 12; -/* 32:47 */waypoints[16].angles = (13.8361, -6.87195, 0); -/* 32:47 */waypoints[17] = spawnstruct(); -/* 32:47 */waypoints[17].origin = (-104.261, 484.913, 320.125); -/* 32:47 */waypoints[17].type = "stand"; -/* 32:47 */waypoints[17].childCount = 2; -/* 32:47 */waypoints[17].children[0] = 5; -/* 32:47 */waypoints[17].children[1] = 18; -/* 32:47 */waypoints[18] = spawnstruct(); -/* 32:47 */waypoints[18].origin = (-238.436, 489.518, 248.125); -/* 32:47 */waypoints[18].type = "stand"; -/* 32:47 */waypoints[18].childCount = 2; -/* 32:47 */waypoints[18].children[0] = 17; -/* 32:47 */waypoints[18].children[1] = 19; -/* 32:47 */waypoints[19] = spawnstruct(); -/* 32:47 */waypoints[19].origin = (-246.869, 652.549, 168.125); -/* 32:47 */waypoints[19].type = "stand"; -/* 32:47 */waypoints[19].childCount = 3; -/* 32:47 */waypoints[19].children[0] = 18; -/* 32:47 */waypoints[19].children[1] = 20; -/* 32:47 */waypoints[19].children[2] = 21; -/* 32:47 */waypoints[20] = spawnstruct(); -/* 32:47 */waypoints[20].origin = (-101.312, 683.22, 168.125); -/* 32:47 */waypoints[20].type = "stand"; -/* 32:47 */waypoints[20].childCount = 2; -/* 32:47 */waypoints[20].children[0] = 19; -/* 32:47 */waypoints[20].children[1] = 156; -/* 32:47 */waypoints[21] = spawnstruct(); -/* 32:47 */waypoints[21].origin = (-443.473, 662.611, 100.125); -/* 32:47 */waypoints[21].type = "stand"; -/* 32:47 */waypoints[21].childCount = 2; -/* 32:47 */waypoints[21].children[0] = 19; -/* 32:47 */waypoints[21].children[1] = 22; -/* 32:47 */waypoints[22] = spawnstruct(); -/* 32:47 */waypoints[22].origin = (-677.535, 784.091, 86.1192); -/* 32:47 */waypoints[22].type = "stand"; -/* 32:47 */waypoints[22].childCount = 3; -/* 32:47 */waypoints[22].children[0] = 21; -/* 32:47 */waypoints[22].children[1] = 23; -/* 32:47 */waypoints[22].children[2] = 161; -/* 32:47 */waypoints[23] = spawnstruct(); -/* 32:47 */waypoints[23].origin = (-986.45, 1007.4, 31.5662); -/* 32:47 */waypoints[23].type = "stand"; -/* 32:47 */waypoints[23].childCount = 3; -/* 32:47 */waypoints[23].children[0] = 22; -/* 32:47 */waypoints[23].children[1] = 24; -/* 32:47 */waypoints[23].children[2] = 25; -/* 32:47 */waypoints[24] = spawnstruct(); -/* 32:47 */waypoints[24].origin = (-660.472, 1237.22, 54.9324); -/* 32:47 */waypoints[24].type = "stand"; -/* 32:47 */waypoints[24].childCount = 3; -/* 32:47 */waypoints[24].children[0] = 23; -/* 32:47 */waypoints[24].children[1] = 83; -/* 32:47 */waypoints[24].children[2] = 85; -/* 32:47 */waypoints[25] = spawnstruct(); -/* 32:47 */waypoints[25].origin = (-1247.54, 1030.34, 18.7169); -/* 32:47 */waypoints[25].type = "stand"; -/* 32:47 */waypoints[25].childCount = 5; -/* 32:47 */waypoints[25].children[0] = 23; -/* 32:47 */waypoints[25].children[1] = 26; -/* 32:47 */waypoints[25].children[2] = 27; -/* 32:47 */waypoints[25].children[3] = 28; -/* 32:47 */waypoints[25].children[4] = 295; -/* 32:47 */waypoints[26] = spawnstruct(); -/* 32:47 */waypoints[26].origin = (-1242.29, 835.146, 43.2297); -/* 32:47 */waypoints[26].type = "crouch"; -/* 32:47 */waypoints[26].childCount = 1; -/* 32:47 */waypoints[26].children[0] = 25; -/* 32:47 */waypoints[26].angles = (10.1501, 89.599, 0); -/* 32:47 */waypoints[27] = spawnstruct(); -/* 32:47 */waypoints[27].origin = (-1239.13, 1242.38, 53.1472); -/* 32:47 */waypoints[27].type = "crouch"; -/* 32:47 */waypoints[27].childCount = 1; -/* 32:47 */waypoints[27].children[0] = 25; -/* 32:47 */waypoints[27].angles = (15.9454, -93.9386, 0); -/* 32:47 */waypoints[28] = spawnstruct(); -/* 32:47 */waypoints[28].origin = (-1467.26, 1055.12, 9.69966); -/* 32:47 */waypoints[28].type = "stand"; -/* 32:47 */waypoints[28].childCount = 5; -/* 32:47 */waypoints[28].children[0] = 25; -/* 32:47 */waypoints[28].children[1] = 29; -/* 32:47 */waypoints[28].children[2] = 294; -/* 32:47 */waypoints[28].children[3] = 295; -/* 32:47 */waypoints[28].children[4] = 33; -/* 32:47 */waypoints[29] = spawnstruct(); -/* 32:47 */waypoints[29].origin = (-1662.44, 1169.64, 33.7564); -/* 32:47 */waypoints[29].type = "stand"; -/* 32:47 */waypoints[29].childCount = 2; -/* 32:47 */waypoints[29].children[0] = 28; -/* 32:47 */waypoints[29].children[1] = 30; -/* 32:47 */waypoints[30] = spawnstruct(); -/* 32:47 */waypoints[30].origin = (-1919.46, 1371.78, 51.3662); -/* 32:47 */waypoints[30].type = "stand"; -/* 32:47 */waypoints[30].childCount = 3; -/* 32:47 */waypoints[30].children[0] = 29; -/* 32:47 */waypoints[30].children[1] = 31; -/* 32:47 */waypoints[30].children[2] = 32; -/* 32:47 */waypoints[31] = spawnstruct(); -/* 32:47 */waypoints[31].origin = (-2063.61, 1519.6, 48.125); -/* 32:47 */waypoints[31].type = "crouch"; -/* 32:47 */waypoints[31].childCount = 1; -/* 32:47 */waypoints[31].children[0] = 30; -/* 32:47 */waypoints[31].angles = (10.7654, -51.7291, 0); -/* 32:47 */waypoints[32] = spawnstruct(); -/* 32:47 */waypoints[32].origin = (-1955.52, 1552.15, 128.125); -/* 32:47 */waypoints[32].type = "stand"; -/* 32:47 */waypoints[32].childCount = 2; -/* 32:47 */waypoints[32].children[0] = 30; -/* 32:47 */waypoints[32].children[1] = 33; -/* 32:47 */waypoints[33] = spawnstruct(); -/* 32:47 */waypoints[33].origin = (-2125.41, 1461.87, 200.125); -/* 32:47 */waypoints[33].type = "stand"; -/* 32:47 */waypoints[33].childCount = 4; -/* 32:47 */waypoints[33].children[0] = 32; -/* 32:47 */waypoints[33].children[1] = 34; -/* 32:47 */waypoints[33].children[2] = 44; -/* 32:47 */waypoints[33].children[3] = 28; -/* 32:47 */waypoints[34] = spawnstruct(); -/* 32:47 */waypoints[34].origin = (-2120.17, 1299, 200.125); -/* 32:47 */waypoints[34].type = "stand"; -/* 32:47 */waypoints[34].childCount = 2; -/* 32:47 */waypoints[34].children[0] = 33; -/* 32:47 */waypoints[34].children[1] = 35; -/* 32:47 */waypoints[35] = spawnstruct(); -/* 32:47 */waypoints[35].origin = (-2050.7, 1170.51, 200.125); -/* 32:47 */waypoints[35].type = "stand"; -/* 32:47 */waypoints[35].childCount = 5; -/* 32:47 */waypoints[35].children[0] = 34; -/* 32:47 */waypoints[35].children[1] = 36; -/* 32:47 */waypoints[35].children[2] = 37; -/* 32:47 */waypoints[35].children[3] = 72; -/* 32:47 */waypoints[35].children[4] = 77; -/* 32:47 */waypoints[36] = spawnstruct(); -/* 32:47 */waypoints[36].origin = (-2244.1, 1157.56, 200.125); -/* 32:47 */waypoints[36].type = "crouch"; -/* 32:47 */waypoints[36].childCount = 1; -/* 32:47 */waypoints[36].children[0] = 35; -/* 32:47 */waypoints[36].angles = (16.0333, 8.94287, 0); -/* 32:47 */waypoints[37] = spawnstruct(); -/* 32:47 */waypoints[37].origin = (-1905.17, 1172.86, 200.125); -/* 32:47 */waypoints[37].type = "stand"; -/* 32:47 */waypoints[37].childCount = 4; -/* 32:47 */waypoints[37].children[0] = 35; -/* 32:47 */waypoints[37].children[1] = 38; -/* 32:47 */waypoints[37].children[2] = 39; -/* 32:47 */waypoints[37].children[3] = 76; -/* 32:47 */waypoints[38] = spawnstruct(); -/* 32:47 */waypoints[38].origin = (-1933.37, 1119.12, 200.125); -/* 32:47 */waypoints[38].type = "claymore"; -/* 32:47 */waypoints[38].childCount = 1; -/* 32:47 */waypoints[38].children[0] = 37; -/* 32:47 */waypoints[38].angles = (14.0997, 150.172, 0); -/* 32:47 */waypoints[39] = spawnstruct(); -/* 32:47 */waypoints[39].origin = (-1813.8, 1260.04, 200.125); -/* 32:47 */waypoints[39].type = "stand"; -/* 32:47 */waypoints[39].childCount = 2; -/* 32:47 */waypoints[39].children[0] = 37; -/* 32:47 */waypoints[39].children[1] = 40; -/* 32:47 */waypoints[40] = spawnstruct(); -/* 32:47 */waypoints[40].origin = (-1674.39, 1444.7, 200.125); -/* 32:47 */waypoints[40].type = "stand"; -/* 32:47 */waypoints[40].childCount = 4; -/* 32:47 */waypoints[40].children[0] = 39; -/* 32:47 */waypoints[40].children[1] = 41; -/* 32:47 */waypoints[40].children[2] = 42; -/* 32:47 */waypoints[40].children[3] = 45; -/* 32:47 */waypoints[41] = spawnstruct(); -/* 32:47 */waypoints[41].origin = (-1584.3, 1577.72, 200.125); -/* 32:47 */waypoints[41].type = "crouch"; -/* 32:47 */waypoints[41].childCount = 1; -/* 32:47 */waypoints[41].children[0] = 40; -/* 32:47 */waypoints[41].angles = (14.0118, -135.813, 0); -/* 32:47 */waypoints[42] = spawnstruct(); -/* 32:47 */waypoints[42].origin = (-1774.71, 1601.75, 200.125); -/* 32:47 */waypoints[42].type = "stand"; -/* 32:47 */waypoints[42].childCount = 2; -/* 32:47 */waypoints[42].children[0] = 40; -/* 32:47 */waypoints[42].children[1] = 43; -/* 32:47 */waypoints[43] = spawnstruct(); -/* 32:47 */waypoints[43].origin = (-2048.46, 1741.24, 239.615); -/* 32:47 */waypoints[43].type = "stand"; -/* 32:47 */waypoints[43].childCount = 2; -/* 32:47 */waypoints[43].children[0] = 42; -/* 32:47 */waypoints[43].children[1] = 44; -/* 32:47 */waypoints[44] = spawnstruct(); -/* 32:47 */waypoints[44].origin = (-2235.12, 1601.79, 200.125); -/* 32:47 */waypoints[44].type = "stand"; -/* 32:47 */waypoints[44].childCount = 2; -/* 32:47 */waypoints[44].children[0] = 43; -/* 32:47 */waypoints[44].children[1] = 33; -/* 32:47 */waypoints[45] = spawnstruct(); -/* 32:47 */waypoints[45].origin = (-1442.22, 1456.48, 205.189); -/* 32:47 */waypoints[45].type = "stand"; -/* 32:47 */waypoints[45].childCount = 2; -/* 32:47 */waypoints[45].children[0] = 40; -/* 32:47 */waypoints[45].children[1] = 46; -/* 32:47 */waypoints[46] = spawnstruct(); -/* 32:47 */waypoints[46].origin = (-1116.27, 1446.53, 236.37); -/* 32:47 */waypoints[46].type = "stand"; -/* 32:47 */waypoints[46].childCount = 4; -/* 32:47 */waypoints[46].children[0] = 45; -/* 32:47 */waypoints[46].children[1] = 47; -/* 32:47 */waypoints[46].children[2] = 81; -/* 32:47 */waypoints[46].children[3] = 82; -/* 32:47 */waypoints[47] = spawnstruct(); -/* 32:47 */waypoints[47].origin = (-1095.75, 1209.61, 246.776); -/* 32:47 */waypoints[47].type = "stand"; -/* 32:47 */waypoints[47].childCount = 2; -/* 32:47 */waypoints[47].children[0] = 46; -/* 32:47 */waypoints[47].children[1] = 48; -/* 32:47 */waypoints[48] = spawnstruct(); -/* 32:47 */waypoints[48].origin = (-1093.37, 848.261, 292.768); -/* 32:47 */waypoints[48].type = "stand"; -/* 32:47 */waypoints[48].childCount = 2; -/* 32:47 */waypoints[48].children[0] = 47; -/* 32:47 */waypoints[48].children[1] = 49; -/* 32:47 */waypoints[49] = spawnstruct(); -/* 32:47 */waypoints[49].origin = (-1090.85, 554.352, 304.125); -/* 32:47 */waypoints[49].type = "stand"; -/* 32:47 */waypoints[49].childCount = 2; -/* 32:47 */waypoints[49].children[0] = 48; -/* 32:47 */waypoints[49].children[1] = 50; -/* 32:47 */waypoints[50] = spawnstruct(); -/* 32:47 */waypoints[50].origin = (-1090.8, 481.513, 304.125); -/* 32:47 */waypoints[50].type = "stand"; -/* 32:47 */waypoints[50].childCount = 3; -/* 32:47 */waypoints[50].children[0] = 49; -/* 32:47 */waypoints[50].children[1] = 51; -/* 32:47 */waypoints[50].children[2] = 275; -/* 32:47 */waypoints[51] = spawnstruct(); -/* 32:47 */waypoints[51].origin = (-1191.84, 476.016, 304.125); -/* 32:47 */waypoints[51].type = "climb"; -/* 32:47 */waypoints[51].childCount = 2; -/* 32:47 */waypoints[51].children[0] = 50; -/* 32:47 */waypoints[51].children[1] = 52; -/* 32:47 */waypoints[51].angles = (15.6982, 179.824, 0); -/* 32:47 */waypoints[52] = spawnstruct(); -/* 32:47 */waypoints[52].origin = (-1219.52, 476.823, 336.125); -/* 32:47 */waypoints[52].type = "stand"; -/* 32:47 */waypoints[52].childCount = 2; -/* 32:47 */waypoints[52].children[0] = 51; -/* 32:47 */waypoints[52].children[1] = 53; -/* 32:47 */waypoints[53] = spawnstruct(); -/* 32:47 */waypoints[53].origin = (-1244.15, 484.429, 168.125); -/* 32:47 */waypoints[53].type = "climb"; -/* 32:47 */waypoints[53].childCount = 2; -/* 32:47 */waypoints[53].children[0] = 52; -/* 32:47 */waypoints[53].children[1] = 54; -/* 32:47 */waypoints[53].angles = (-50.9229, -1.12061, 0); -/* 32:47 */waypoints[54] = spawnstruct(); -/* 32:47 */waypoints[54].origin = (-1364.94, 474.427, 168.004); -/* 32:47 */waypoints[54].type = "stand"; -/* 32:47 */waypoints[54].childCount = 6; -/* 32:47 */waypoints[54].children[0] = 53; -/* 32:47 */waypoints[54].children[1] = 55; -/* 32:47 */waypoints[54].children[2] = 64; -/* 32:47 */waypoints[54].children[3] = 65; -/* 32:47 */waypoints[54].children[4] = 66; -/* 32:47 */waypoints[54].children[5] = 67; -/* 32:47 */waypoints[55] = spawnstruct(); -/* 32:47 */waypoints[55].origin = (-1467.72, 274.409, 168.125); -/* 32:47 */waypoints[55].type = "stand"; -/* 32:47 */waypoints[55].childCount = 2; -/* 32:47 */waypoints[55].children[0] = 54; -/* 32:47 */waypoints[55].children[1] = 56; -/* 32:47 */waypoints[56] = spawnstruct(); -/* 32:47 */waypoints[56].origin = (-1537.02, 99.5108, 168.125); -/* 32:47 */waypoints[56].type = "stand"; -/* 32:47 */waypoints[56].childCount = 3; -/* 32:47 */waypoints[56].children[0] = 55; -/* 32:47 */waypoints[56].children[1] = 57; -/* 32:47 */waypoints[56].children[2] = 58; -/* 32:47 */waypoints[57] = spawnstruct(); -/* 32:47 */waypoints[57].origin = (-1445.13, -214.138, 168.125); -/* 32:47 */waypoints[57].type = "stand"; -/* 32:47 */waypoints[57].childCount = 3; -/* 32:47 */waypoints[57].children[0] = 56; -/* 32:47 */waypoints[57].children[1] = 184; -/* 32:47 */waypoints[57].children[2] = 185; -/* 32:47 */waypoints[58] = spawnstruct(); -/* 32:47 */waypoints[58].origin = (-1889.85, 69.8914, 188.125); -/* 32:47 */waypoints[58].type = "stand"; -/* 32:47 */waypoints[58].childCount = 3; -/* 32:47 */waypoints[58].children[0] = 56; -/* 32:47 */waypoints[58].children[1] = 59; -/* 32:47 */waypoints[58].children[2] = 274; -/* 32:47 */waypoints[59] = spawnstruct(); -/* 32:47 */waypoints[59].origin = (-2072.83, -280.958, 188.125); -/* 32:47 */waypoints[59].type = "stand"; -/* 32:47 */waypoints[59].childCount = 4; -/* 32:47 */waypoints[59].children[0] = 58; -/* 32:47 */waypoints[59].children[1] = 60; -/* 32:47 */waypoints[59].children[2] = 273; -/* 32:47 */waypoints[59].children[3] = 274; -/* 32:47 */waypoints[60] = spawnstruct(); -/* 32:47 */waypoints[60].origin = (-2451.8, -328.837, 188.165); -/* 32:47 */waypoints[60].type = "stand"; -/* 32:47 */waypoints[60].childCount = 5; -/* 32:47 */waypoints[60].children[0] = 59; -/* 32:47 */waypoints[60].children[1] = 61; -/* 32:47 */waypoints[60].children[2] = 203; -/* 32:47 */waypoints[60].children[3] = 297; -/* 32:47 */waypoints[60].children[4] = 273; -/* 32:47 */waypoints[61] = spawnstruct(); -/* 32:47 */waypoints[61].origin = (-2543.37, 95.6241, 188.294); -/* 32:47 */waypoints[61].type = "stand"; -/* 32:47 */waypoints[61].childCount = 2; -/* 32:47 */waypoints[61].children[0] = 60; -/* 32:47 */waypoints[61].children[1] = 62; -/* 32:47 */waypoints[62] = spawnstruct(); -/* 32:47 */waypoints[62].origin = (-2433.08, 523.439, 188.125); -/* 32:47 */waypoints[62].type = "stand"; -/* 32:47 */waypoints[62].childCount = 2; -/* 32:47 */waypoints[62].children[0] = 61; -/* 32:47 */waypoints[62].children[1] = 63; -/* 32:47 */waypoints[63] = spawnstruct(); -/* 32:47 */waypoints[63].origin = (-1992.49, 505.632, 189.369); -/* 32:47 */waypoints[63].type = "stand"; -/* 32:47 */waypoints[63].childCount = 4; -/* 32:47 */waypoints[63].children[0] = 62; -/* 32:47 */waypoints[63].children[1] = 64; -/* 32:47 */waypoints[63].children[2] = 69; -/* 32:47 */waypoints[63].children[3] = 274; -/* 32:47 */waypoints[64] = spawnstruct(); -/* 32:47 */waypoints[64].origin = (-1641.45, 675.679, 220.125); -/* 32:47 */waypoints[64].type = "stand"; -/* 32:47 */waypoints[64].childCount = 3; -/* 32:47 */waypoints[64].children[0] = 63; -/* 32:47 */waypoints[64].children[1] = 54; -/* 32:47 */waypoints[64].children[2] = 67; -/* 32:47 */waypoints[65] = spawnstruct(); -/* 32:47 */waypoints[65].origin = (-1240.13, 365.125, 168.125); -/* 32:47 */waypoints[65].type = "crouch"; -/* 32:47 */waypoints[65].childCount = 1; -/* 32:47 */waypoints[65].children[0] = 54; -/* 32:47 */waypoints[65].angles = (10.3149, 132.281, 0); -/* 32:47 */waypoints[66] = spawnstruct(); -/* 32:47 */waypoints[66].origin = (-1240.12, 564.875, 168.125); -/* 32:47 */waypoints[66].type = "crouch"; -/* 32:47 */waypoints[66].childCount = 1; -/* 32:47 */waypoints[66].children[0] = 54; -/* 32:47 */waypoints[66].angles = (9.7876, -150.672, 0); -/* 32:47 */waypoints[67] = spawnstruct(); -/* 32:47 */waypoints[67].origin = (-1405.17, 717.823, 168.19); -/* 32:47 */waypoints[67].type = "stand"; -/* 32:47 */waypoints[67].childCount = 3; -/* 32:47 */waypoints[67].children[0] = 54; -/* 32:47 */waypoints[67].children[1] = 68; -/* 32:47 */waypoints[67].children[2] = 64; -/* 32:47 */waypoints[68] = spawnstruct(); -/* 32:47 */waypoints[68].origin = (-1266.13, 740.147, 168.895); -/* 32:47 */waypoints[68].type = "crouch"; -/* 32:47 */waypoints[68].childCount = 1; -/* 32:47 */waypoints[68].children[0] = 67; -/* 32:47 */waypoints[68].angles = (8.02979, -168.503, 0); -/* 32:47 */waypoints[69] = spawnstruct(); -/* 32:47 */waypoints[69].origin = (-1960.28, 728.521, 192.044); -/* 32:47 */waypoints[69].type = "stand"; -/* 32:47 */waypoints[69].childCount = 2; -/* 32:47 */waypoints[69].children[0] = 63; -/* 32:47 */waypoints[69].children[1] = 70; -/* 32:47 */waypoints[70] = spawnstruct(); -/* 32:47 */waypoints[70].origin = (-1970.28, 939.679, 192.746); -/* 32:47 */waypoints[70].type = "stand"; -/* 32:47 */waypoints[70].childCount = 4; -/* 32:47 */waypoints[70].children[0] = 69; -/* 32:47 */waypoints[70].children[1] = 71; -/* 32:47 */waypoints[70].children[2] = 73; -/* 32:47 */waypoints[70].children[3] = 80; -/* 32:47 */waypoints[71] = spawnstruct(); -/* 32:47 */waypoints[71].origin = (-1976.85, 1012.92, 200.125); -/* 32:47 */waypoints[71].type = "stand"; -/* 32:47 */waypoints[71].childCount = 2; -/* 32:47 */waypoints[71].children[0] = 70; -/* 32:47 */waypoints[71].children[1] = 72; -/* 32:47 */waypoints[72] = spawnstruct(); -/* 32:47 */waypoints[72].origin = (-2027.63, 1100.88, 200.125); -/* 32:47 */waypoints[72].type = "stand"; -/* 32:47 */waypoints[72].childCount = 2; -/* 32:47 */waypoints[72].children[0] = 71; -/* 32:47 */waypoints[72].children[1] = 35; -/* 32:47 */waypoints[73] = spawnstruct(); -/* 32:47 */waypoints[73].origin = (-1867.16, 958.385, 191.302); -/* 32:47 */waypoints[73].type = "stand"; -/* 32:47 */waypoints[73].childCount = 2; -/* 32:47 */waypoints[73].children[0] = 70; -/* 32:47 */waypoints[73].children[1] = 74; -/* 32:47 */waypoints[74] = spawnstruct(); -/* 32:47 */waypoints[74].origin = (-1873.26, 1007.25, 200.04); -/* 32:47 */waypoints[74].type = "climb"; -/* 32:47 */waypoints[74].childCount = 2; -/* 32:47 */waypoints[74].children[0] = 73; -/* 32:47 */waypoints[74].children[1] = 75; -/* 32:47 */waypoints[74].angles = (15.5334, 91.225, 0); -/* 32:47 */waypoints[75] = spawnstruct(); -/* 32:47 */waypoints[75].origin = (-1873.27, 1066.24, 236.125); -/* 32:47 */waypoints[75].type = "stand"; -/* 32:47 */waypoints[75].childCount = 2; -/* 32:47 */waypoints[75].children[0] = 74; -/* 32:47 */waypoints[75].children[1] = 76; -/* 32:47 */waypoints[76] = spawnstruct(); -/* 32:47 */waypoints[76].origin = (-1873.94, 1123.17, 200.125); -/* 32:47 */waypoints[76].type = "climb"; -/* 32:47 */waypoints[76].childCount = 2; -/* 32:47 */waypoints[76].children[0] = 75; -/* 32:47 */waypoints[76].children[1] = 37; -/* 32:47 */waypoints[76].angles = (10.26, -88.8025, 0); -/* 32:47 */waypoints[77] = spawnstruct(); -/* 32:47 */waypoints[77].origin = (-2129.51, 1122.93, 200.125); -/* 32:47 */waypoints[77].type = "climb"; -/* 32:47 */waypoints[77].childCount = 2; -/* 32:47 */waypoints[77].children[0] = 35; -/* 32:47 */waypoints[77].children[1] = 78; -/* 32:47 */waypoints[77].angles = (14.9347, -92.3126, 0); -/* 32:47 */waypoints[78] = spawnstruct(); -/* 32:47 */waypoints[78].origin = (-2129.53, 1073.06, 236.125); -/* 32:47 */waypoints[78].type = "stand"; -/* 32:47 */waypoints[78].childCount = 2; -/* 32:47 */waypoints[78].children[0] = 77; -/* 32:47 */waypoints[78].children[1] = 79; -/* 32:47 */waypoints[79] = spawnstruct(); -/* 32:47 */waypoints[79].origin = (-2129.95, 1007.46, 199.986); -/* 32:47 */waypoints[79].type = "climb"; -/* 32:47 */waypoints[79].childCount = 2; -/* 32:47 */waypoints[79].children[0] = 78; -/* 32:47 */waypoints[79].children[1] = 80; -/* 32:47 */waypoints[79].angles = (8.85925, 88.8464, 0); -/* 32:47 */waypoints[80] = spawnstruct(); -/* 32:47 */waypoints[80].origin = (-2136.88, 907.407, 192.48); -/* 32:47 */waypoints[80].type = "stand"; -/* 32:47 */waypoints[80].childCount = 2; -/* 32:47 */waypoints[80].children[0] = 79; -/* 32:47 */waypoints[80].children[1] = 70; -/* 32:47 */waypoints[81] = spawnstruct(); -/* 32:47 */waypoints[81].origin = (-993.125, 1531.86, 237.701); -/* 32:47 */waypoints[81].type = "crouch"; -/* 32:47 */waypoints[81].childCount = 1; -/* 32:47 */waypoints[81].children[0] = 46; -/* 32:47 */waypoints[81].angles = (15.2698, -132.55, 0); -/* 32:47 */waypoints[82] = spawnstruct(); -/* 32:47 */waypoints[82].origin = (-1014.69, 1362.58, 238.36); -/* 32:47 */waypoints[82].type = "stand"; -/* 32:47 */waypoints[82].childCount = 2; -/* 32:47 */waypoints[82].children[0] = 46; -/* 32:47 */waypoints[82].children[1] = 83; -/* 32:47 */waypoints[83] = spawnstruct(); -/* 32:47 */waypoints[83].origin = (-670.348, 1354.02, 72.125); -/* 32:47 */waypoints[83].type = "stand"; -/* 32:47 */waypoints[83].childCount = 3; -/* 32:47 */waypoints[83].children[0] = 82; -/* 32:47 */waypoints[83].children[1] = 84; -/* 32:47 */waypoints[83].children[2] = 24; -/* 32:47 */waypoints[84] = spawnstruct(); -/* 32:47 */waypoints[84].origin = (-775.694, 1297.13, 114.516); -/* 32:47 */waypoints[84].type = "claymore"; -/* 32:47 */waypoints[84].childCount = 1; -/* 32:47 */waypoints[84].children[0] = 83; -/* 32:47 */waypoints[84].angles = (32.3151, 0.12085, 0); -/* 32:47 */waypoints[85] = spawnstruct(); -/* 32:47 */waypoints[85].origin = (-409.769, 1181.6, 68.6791); -/* 32:47 */waypoints[85].type = "stand"; -/* 32:47 */waypoints[85].childCount = 2; -/* 32:47 */waypoints[85].children[0] = 24; -/* 32:47 */waypoints[85].children[1] = 86; -/* 32:47 */waypoints[86] = spawnstruct(); -/* 32:47 */waypoints[86].origin = (-165.999, 1178.28, 77.905); -/* 32:47 */waypoints[86].type = "stand"; -/* 32:47 */waypoints[86].childCount = 3; -/* 32:47 */waypoints[86].children[0] = 85; -/* 32:47 */waypoints[86].children[1] = 87; -/* 32:47 */waypoints[86].children[2] = 88; -/* 32:47 */waypoints[87] = spawnstruct(); -/* 32:47 */waypoints[87].origin = (-141.099, 1305, 112.125); -/* 32:47 */waypoints[87].type = "crouch"; -/* 32:47 */waypoints[87].childCount = 1; -/* 32:47 */waypoints[87].children[0] = 86; -/* 32:47 */waypoints[87].angles = (11.7542, -92.6257, 0); -/* 32:47 */waypoints[88] = spawnstruct(); -/* 32:47 */waypoints[88].origin = (54.1837, 1154.28, 85.3308); -/* 32:47 */waypoints[88].type = "stand"; -/* 32:47 */waypoints[88].childCount = 2; -/* 32:47 */waypoints[88].children[0] = 86; -/* 32:47 */waypoints[88].children[1] = 89; -/* 32:47 */waypoints[89] = spawnstruct(); -/* 32:47 */waypoints[89].origin = (149.727, 1156.76, 89.7882); -/* 32:47 */waypoints[89].type = "stand"; -/* 32:47 */waypoints[89].childCount = 4; -/* 32:47 */waypoints[89].children[0] = 88; -/* 32:47 */waypoints[89].children[1] = 90; -/* 32:47 */waypoints[89].children[2] = 91; -/* 32:47 */waypoints[89].children[3] = 92; -/* 32:47 */waypoints[90] = spawnstruct(); -/* 32:47 */waypoints[90].origin = (132.125, 1260.88, 88.9296); -/* 32:47 */waypoints[90].type = "claymore"; -/* 32:47 */waypoints[90].childCount = 1; -/* 32:47 */waypoints[90].children[0] = 89; -/* 32:47 */waypoints[90].angles = (8.06824, -87.9675, 0); -/* 32:47 */waypoints[91] = spawnstruct(); -/* 32:47 */waypoints[91].origin = (137.236, 1036.16, 91.1789); -/* 32:47 */waypoints[91].type = "claymore"; -/* 32:47 */waypoints[91].childCount = 2; -/* 32:47 */waypoints[91].children[0] = 89; -/* 32:47 */waypoints[91].children[1] = 147; -/* 32:47 */waypoints[91].angles = (12.8967, 86.3855, 0); -/* 32:47 */waypoints[92] = spawnstruct(); -/* 32:47 */waypoints[92].origin = (383.158, 1054.73, 122.632); -/* 32:47 */waypoints[92].type = "stand"; -/* 32:47 */waypoints[92].childCount = 5; -/* 32:47 */waypoints[92].children[0] = 89; -/* 32:47 */waypoints[92].children[1] = 93; -/* 32:47 */waypoints[92].children[2] = 137; -/* 32:47 */waypoints[92].children[3] = 147; -/* 32:47 */waypoints[92].children[4] = 146; -/* 32:47 */waypoints[93] = spawnstruct(); -/* 32:47 */waypoints[93].origin = (308.794, 737.761, 152.125); -/* 32:47 */waypoints[93].type = "stand"; -/* 32:47 */waypoints[93].childCount = 4; -/* 32:47 */waypoints[93].children[0] = 92; -/* 32:47 */waypoints[93].children[1] = 94; -/* 32:47 */waypoints[93].children[2] = 146; -/* 32:47 */waypoints[93].children[3] = 147; -/* 32:47 */waypoints[94] = spawnstruct(); -/* 32:47 */waypoints[94].origin = (344.198, 504.627, 208.125); -/* 32:47 */waypoints[94].type = "stand"; -/* 32:47 */waypoints[94].childCount = 3; -/* 32:47 */waypoints[94].children[0] = 93; -/* 32:47 */waypoints[94].children[1] = 0; -/* 32:47 */waypoints[94].children[2] = 95; -/* 32:47 */waypoints[95] = spawnstruct(); -/* 32:47 */waypoints[95].origin = (262.72, 357.555, 208.125); -/* 32:47 */waypoints[95].type = "stand"; -/* 32:47 */waypoints[95].childCount = 2; -/* 32:47 */waypoints[95].children[0] = 94; -/* 32:47 */waypoints[95].children[1] = 96; -/* 32:47 */waypoints[96] = spawnstruct(); -/* 32:47 */waypoints[96].origin = (261.378, 243.971, 208.125); -/* 32:47 */waypoints[96].type = "stand"; -/* 32:47 */waypoints[96].childCount = 3; -/* 32:47 */waypoints[96].children[0] = 95; -/* 32:47 */waypoints[96].children[1] = 97; -/* 32:47 */waypoints[96].children[2] = 148; -/* 32:47 */waypoints[97] = spawnstruct(); -/* 32:47 */waypoints[97].origin = (394.31, 220.458, 208.125); -/* 32:47 */waypoints[97].type = "stand"; -/* 32:47 */waypoints[97].childCount = 2; -/* 32:47 */waypoints[97].children[0] = 96; -/* 32:47 */waypoints[97].children[1] = 98; -/* 32:47 */waypoints[98] = spawnstruct(); -/* 32:47 */waypoints[98].origin = (417.727, 87.1448, 208.125); -/* 32:47 */waypoints[98].type = "stand"; -/* 32:47 */waypoints[98].childCount = 3; -/* 32:47 */waypoints[98].children[0] = 97; -/* 32:47 */waypoints[98].children[1] = 99; -/* 32:47 */waypoints[98].children[2] = 291; -/* 32:47 */waypoints[99] = spawnstruct(); -/* 32:47 */waypoints[99].origin = (417.741, -59.3928, 248.125); -/* 32:47 */waypoints[99].type = "stand"; -/* 32:47 */waypoints[99].childCount = 3; -/* 32:47 */waypoints[99].children[0] = 98; -/* 32:47 */waypoints[99].children[1] = 100; -/* 32:47 */waypoints[99].children[2] = 101; -/* 32:47 */waypoints[100] = spawnstruct(); -/* 32:47 */waypoints[100].origin = (464.125, -43.1455, 248.125); -/* 32:47 */waypoints[100].type = "claymore"; -/* 32:47 */waypoints[100].childCount = 1; -/* 32:47 */waypoints[100].children[0] = 99; -/* 32:47 */waypoints[100].angles = (23.7073, -178.627, 0); -/* 32:47 */waypoints[101] = spawnstruct(); -/* 32:47 */waypoints[101].origin = (563.644, -101.521, 248.125); -/* 32:47 */waypoints[101].type = "stand"; -/* 32:47 */waypoints[101].childCount = 2; -/* 32:47 */waypoints[101].children[0] = 99; -/* 32:47 */waypoints[101].children[1] = 102; -/* 32:47 */waypoints[102] = spawnstruct(); -/* 32:47 */waypoints[102].origin = (772.628, -101.494, 248.125); -/* 32:47 */waypoints[102].type = "stand"; -/* 32:47 */waypoints[102].childCount = 3; -/* 32:47 */waypoints[102].children[0] = 101; -/* 32:47 */waypoints[102].children[1] = 103; -/* 32:47 */waypoints[102].children[2] = 112; -/* 32:47 */waypoints[103] = spawnstruct(); -/* 32:47 */waypoints[103].origin = (924.211, -120.871, 248.125); -/* 32:47 */waypoints[103].type = "stand"; -/* 32:47 */waypoints[103].childCount = 3; -/* 32:47 */waypoints[103].children[0] = 102; -/* 32:47 */waypoints[103].children[1] = 104; -/* 32:47 */waypoints[103].children[2] = 111; -/* 32:47 */waypoints[104] = spawnstruct(); -/* 32:47 */waypoints[104].origin = (993.873, -46.7099, 248.125); -/* 32:47 */waypoints[104].type = "climb"; -/* 32:47 */waypoints[104].childCount = 2; -/* 32:47 */waypoints[104].children[0] = 103; -/* 32:47 */waypoints[104].children[1] = 105; -/* 32:47 */waypoints[104].angles = (27.1515, 1.31287, 0); -/* 32:47 */waypoints[105] = spawnstruct(); -/* 32:47 */waypoints[105].origin = (1012.11, -46.9633, 280.125); -/* 32:47 */waypoints[105].type = "stand"; -/* 32:47 */waypoints[105].childCount = 2; -/* 32:47 */waypoints[105].children[0] = 104; -/* 32:47 */waypoints[105].children[1] = 106; -/* 32:47 */waypoints[106] = spawnstruct(); -/* 32:47 */waypoints[106].origin = (1032.13, -56.5955, 230.064); -/* 32:47 */waypoints[106].type = "climb"; -/* 32:47 */waypoints[106].childCount = 3; -/* 32:47 */waypoints[106].children[0] = 105; -/* 32:47 */waypoints[106].children[1] = 107; -/* 32:47 */waypoints[106].children[2] = 293; -/* 32:47 */waypoints[106].angles = (2.84973, -178.484, 0); -/* 32:47 */waypoints[107] = spawnstruct(); -/* 32:47 */waypoints[107].origin = (1059.15, -221.774, 232.125); -/* 32:47 */waypoints[107].type = "stand"; -/* 32:47 */waypoints[107].childCount = 4; -/* 32:47 */waypoints[107].children[0] = 106; -/* 32:47 */waypoints[107].children[1] = 108; -/* 32:47 */waypoints[107].children[2] = 109; -/* 32:47 */waypoints[107].children[3] = 117; -/* 32:47 */waypoints[108] = spawnstruct(); -/* 32:47 */waypoints[108].origin = (1060.25, -412.076, 232.125); -/* 32:47 */waypoints[108].type = "stand"; -/* 32:47 */waypoints[108].childCount = 4; -/* 32:47 */waypoints[108].children[0] = 107; -/* 32:47 */waypoints[108].children[1] = 113; -/* 32:47 */waypoints[108].children[2] = 288; -/* 32:47 */waypoints[108].children[3] = 117; -/* 32:47 */waypoints[109] = spawnstruct(); -/* 32:47 */waypoints[109].origin = (1032.34, -216.529, 232.125); -/* 32:47 */waypoints[109].type = "climb"; -/* 32:47 */waypoints[109].childCount = 2; -/* 32:47 */waypoints[109].children[0] = 107; -/* 32:47 */waypoints[109].children[1] = 110; -/* 32:47 */waypoints[109].angles = (7.34863, 178.885, 0); -/* 32:47 */waypoints[110] = spawnstruct(); -/* 32:47 */waypoints[110].origin = (1016.03, -216.529, 280.124); -/* 32:47 */waypoints[110].type = "stand"; -/* 32:47 */waypoints[110].childCount = 2; -/* 32:47 */waypoints[110].children[0] = 109; -/* 32:47 */waypoints[110].children[1] = 111; -/* 32:47 */waypoints[111] = spawnstruct(); -/* 32:47 */waypoints[111].origin = (993.861, -217.628, 248.125); -/* 32:47 */waypoints[111].type = "climb"; -/* 32:47 */waypoints[111].childCount = 2; -/* 32:47 */waypoints[111].children[0] = 110; -/* 32:47 */waypoints[111].children[1] = 103; -/* 32:47 */waypoints[111].angles = (10.3369, -2.71912, 0); -/* 32:47 */waypoints[112] = spawnstruct(); -/* 32:47 */waypoints[112].origin = (745.113, -212.155, 248.125); -/* 32:47 */waypoints[112].type = "stand"; -/* 32:47 */waypoints[112].childCount = 2; -/* 32:47 */waypoints[112].children[0] = 102; -/* 32:47 */waypoints[112].children[1] = 113; -/* 32:47 */waypoints[113] = spawnstruct(); -/* 32:47 */waypoints[113].origin = (745.029, -404.927, 166.125); -/* 32:47 */waypoints[113].type = "stand"; -/* 32:47 */waypoints[113].childCount = 3; -/* 32:47 */waypoints[113].children[0] = 112; -/* 32:47 */waypoints[113].children[1] = 108; -/* 32:47 */waypoints[113].children[2] = 114; -/* 32:47 */waypoints[114] = spawnstruct(); -/* 32:47 */waypoints[114].origin = (438.699, -407.297, 167.125); -/* 32:47 */waypoints[114].type = "stand"; -/* 32:47 */waypoints[114].childCount = 3; -/* 32:47 */waypoints[114].children[0] = 113; -/* 32:47 */waypoints[114].children[1] = 115; -/* 32:47 */waypoints[114].children[2] = 224; -/* 32:47 */waypoints[115] = spawnstruct(); -/* 32:47 */waypoints[115].origin = (59.3499, -350.625, 170.125); -/* 32:47 */waypoints[115].type = "stand"; -/* 32:47 */waypoints[115].childCount = 2; -/* 32:47 */waypoints[115].children[0] = 114; -/* 32:47 */waypoints[115].children[1] = 151; -/* 32:47 */waypoints[116] = spawnstruct(); -/* 32:47 */waypoints[116].origin = (18.1194, 149.725, 170.125); -/* 32:47 */waypoints[116].type = "stand"; -/* 32:47 */waypoints[116].childCount = 2; -/* 32:47 */waypoints[116].children[0] = 149; -/* 32:47 */waypoints[116].children[1] = 152; -/* 32:47 */waypoints[117] = spawnstruct(); -/* 32:47 */waypoints[117].origin = (1237.19, -154.42, 230.982); -/* 32:47 */waypoints[117].type = "stand"; -/* 32:47 */waypoints[117].childCount = 4; -/* 32:47 */waypoints[117].children[0] = 107; -/* 32:47 */waypoints[117].children[1] = 118; -/* 32:47 */waypoints[117].children[2] = 124; -/* 32:47 */waypoints[117].children[3] = 108; -/* 32:47 */waypoints[118] = spawnstruct(); -/* 32:47 */waypoints[118].origin = (1237.25, -2.83976, 230.98); -/* 32:47 */waypoints[118].type = "stand"; -/* 32:47 */waypoints[118].childCount = 3; -/* 32:47 */waypoints[118].children[0] = 117; -/* 32:47 */waypoints[118].children[1] = 119; -/* 32:47 */waypoints[118].children[2] = 123; -/* 32:47 */waypoints[119] = spawnstruct(); -/* 32:47 */waypoints[119].origin = (1237.37, 140.805, 230.936); -/* 32:47 */waypoints[119].type = "stand"; -/* 32:47 */waypoints[119].childCount = 3; -/* 32:47 */waypoints[119].children[0] = 118; -/* 32:47 */waypoints[119].children[1] = 120; -/* 32:47 */waypoints[119].children[2] = 122; -/* 32:47 */waypoints[120] = spawnstruct(); -/* 32:47 */waypoints[120].origin = (1237.51, 298.876, 230.125); -/* 32:47 */waypoints[120].type = "stand"; -/* 32:47 */waypoints[120].childCount = 4; -/* 32:47 */waypoints[120].children[0] = 119; -/* 32:47 */waypoints[120].children[1] = 121; -/* 32:47 */waypoints[120].children[2] = 127; -/* 32:47 */waypoints[120].children[3] = 293; -/* 32:47 */waypoints[121] = spawnstruct(); -/* 32:47 */waypoints[121].origin = (1381.78, 317.644, 234.125); -/* 32:47 */waypoints[121].type = "stand"; -/* 32:47 */waypoints[121].childCount = 2; -/* 32:47 */waypoints[121].children[0] = 120; -/* 32:47 */waypoints[121].children[1] = 122; -/* 32:47 */waypoints[122] = spawnstruct(); -/* 32:47 */waypoints[122].origin = (1381.82, 166.391, 234.125); -/* 32:47 */waypoints[122].type = "stand"; -/* 32:47 */waypoints[122].childCount = 3; -/* 32:47 */waypoints[122].children[0] = 121; -/* 32:47 */waypoints[122].children[1] = 123; -/* 32:47 */waypoints[122].children[2] = 119; -/* 32:47 */waypoints[123] = spawnstruct(); -/* 32:47 */waypoints[123].origin = (1381.78, 15.5238, 234.125); -/* 32:47 */waypoints[123].type = "stand"; -/* 32:47 */waypoints[123].childCount = 4; -/* 32:47 */waypoints[123].children[0] = 122; -/* 32:47 */waypoints[123].children[1] = 124; -/* 32:47 */waypoints[123].children[2] = 126; -/* 32:47 */waypoints[123].children[3] = 118; -/* 32:47 */waypoints[124] = spawnstruct(); -/* 32:47 */waypoints[124].origin = (1381.75, -134.601, 234.125); -/* 32:47 */waypoints[124].type = "stand"; -/* 32:47 */waypoints[124].childCount = 3; -/* 32:47 */waypoints[124].children[0] = 123; -/* 32:47 */waypoints[124].children[1] = 125; -/* 32:47 */waypoints[124].children[2] = 117; -/* 32:47 */waypoints[125] = spawnstruct(); -/* 32:47 */waypoints[125].origin = (1502.88, -205.875, 234.125); -/* 32:47 */waypoints[125].type = "crouch"; -/* 32:47 */waypoints[125].childCount = 1; -/* 32:47 */waypoints[125].children[0] = 124; -/* 32:47 */waypoints[125].angles = (15.0238, 154.786, 0); -/* 32:47 */waypoints[126] = spawnstruct(); -/* 32:47 */waypoints[126].origin = (1502.88, 28.875, 234.125); -/* 32:47 */waypoints[126].type = "crouch"; -/* 32:47 */waypoints[126].childCount = 1; -/* 32:47 */waypoints[126].children[0] = 123; -/* 32:47 */waypoints[126].angles = (18.5394, -151.408, 0); -/* 32:47 */waypoints[127] = spawnstruct(); -/* 32:47 */waypoints[127].origin = (1222.89, 520.928, 173); -/* 32:47 */waypoints[127].type = "stand"; -/* 32:47 */waypoints[127].childCount = 3; -/* 32:47 */waypoints[127].children[0] = 120; -/* 32:47 */waypoints[127].children[1] = 128; -/* 32:47 */waypoints[127].children[2] = 142; -/* 32:47 */waypoints[128] = spawnstruct(); -/* 32:47 */waypoints[128].origin = (1179.9, 812.072, 162.187); -/* 32:47 */waypoints[128].type = "stand"; -/* 32:47 */waypoints[128].childCount = 5; -/* 32:47 */waypoints[128].children[0] = 127; -/* 32:47 */waypoints[128].children[1] = 129; -/* 32:47 */waypoints[128].children[2] = 139; -/* 32:47 */waypoints[128].children[3] = 140; -/* 32:47 */waypoints[128].children[4] = 142; -/* 32:47 */waypoints[129] = spawnstruct(); -/* 32:47 */waypoints[129].origin = (979.507, 959.312, 171.122); -/* 32:47 */waypoints[129].type = "stand"; -/* 32:47 */waypoints[129].childCount = 7; -/* 32:47 */waypoints[129].children[0] = 128; -/* 32:47 */waypoints[129].children[1] = 130; -/* 32:47 */waypoints[129].children[2] = 131; -/* 32:47 */waypoints[129].children[3] = 138; -/* 32:47 */waypoints[129].children[4] = 142; -/* 32:47 */waypoints[129].children[5] = 144; -/* 32:47 */waypoints[129].children[6] = 139; -/* 32:47 */waypoints[130] = spawnstruct(); -/* 32:47 */waypoints[130].origin = (766.856, 867.259, 165.02); -/* 32:47 */waypoints[130].type = "stand"; -/* 32:47 */waypoints[130].childCount = 6; -/* 32:47 */waypoints[130].children[0] = 129; -/* 32:47 */waypoints[130].children[1] = 133; -/* 32:47 */waypoints[130].children[2] = 134; -/* 32:47 */waypoints[130].children[3] = 135; -/* 32:47 */waypoints[130].children[4] = 136; -/* 32:47 */waypoints[130].children[5] = 142; -/* 32:47 */waypoints[131] = spawnstruct(); -/* 32:47 */waypoints[131].origin = (738.526, 1100.24, 161.913); -/* 32:47 */waypoints[131].type = "stand"; -/* 32:47 */waypoints[131].childCount = 4; -/* 32:47 */waypoints[131].children[0] = 129; -/* 32:47 */waypoints[131].children[1] = 132; -/* 32:47 */waypoints[131].children[2] = 137; -/* 32:47 */waypoints[131].children[3] = 144; -/* 32:47 */waypoints[132] = spawnstruct(); -/* 32:47 */waypoints[132].origin = (737.462, 992.673, 162.978); -/* 32:47 */waypoints[132].type = "claymore"; -/* 32:47 */waypoints[132].childCount = 1; -/* 32:47 */waypoints[132].children[0] = 131; -/* 32:47 */waypoints[132].angles = (17.8363, 91.0876, 0); -/* 32:47 */waypoints[133] = spawnstruct(); -/* 32:47 */waypoints[133].origin = (731.125, 743.125, 170.585); -/* 32:47 */waypoints[133].type = "crouch"; -/* 32:47 */waypoints[133].childCount = 1; -/* 32:47 */waypoints[133].children[0] = 130; -/* 32:47 */waypoints[133].angles = (9.83826, 83.7048, 0); -/* 32:47 */waypoints[134] = spawnstruct(); -/* 32:47 */waypoints[134].origin = (731.125, 766.619, 169.95); -/* 32:47 */waypoints[134].type = "claymore"; -/* 32:47 */waypoints[134].childCount = 1; -/* 32:47 */waypoints[134].children[0] = 130; -/* 32:47 */waypoints[134].angles = (13.266, 87.3962, 0); -/* 32:47 */waypoints[135] = spawnstruct(); -/* 32:47 */waypoints[135].origin = (731.165, 978.819, 161.708); -/* 32:47 */waypoints[135].type = "claymore"; -/* 32:47 */waypoints[135].childCount = 1; -/* 32:47 */waypoints[135].children[0] = 130; -/* 32:47 */waypoints[135].angles = (19.8578, -94.1583, 0); -/* 32:47 */waypoints[136] = spawnstruct(); -/* 32:47 */waypoints[136].origin = (593.345, 866.646, 152.428); -/* 32:47 */waypoints[136].type = "stand"; -/* 32:47 */waypoints[136].childCount = 3; -/* 32:47 */waypoints[136].children[0] = 130; -/* 32:47 */waypoints[136].children[1] = 137; -/* 32:47 */waypoints[136].children[2] = 146; -/* 32:47 */waypoints[137] = spawnstruct(); -/* 32:47 */waypoints[137].origin = (542.318, 1093.81, 141.393); -/* 32:47 */waypoints[137].type = "stand"; -/* 32:47 */waypoints[137].childCount = 4; -/* 32:47 */waypoints[137].children[0] = 136; -/* 32:47 */waypoints[137].children[1] = 92; -/* 32:47 */waypoints[137].children[2] = 131; -/* 32:47 */waypoints[137].children[3] = 146; -/* 32:47 */waypoints[138] = spawnstruct(); -/* 32:47 */waypoints[138].origin = (1139.75, 1187, 169.878); -/* 32:47 */waypoints[138].type = "stand"; -/* 32:47 */waypoints[138].childCount = 3; -/* 32:47 */waypoints[138].children[0] = 129; -/* 32:47 */waypoints[138].children[1] = 139; -/* 32:47 */waypoints[138].children[2] = 144; -/* 32:47 */waypoints[139] = spawnstruct(); -/* 32:47 */waypoints[139].origin = (1366.6, 1001.13, 166.742); -/* 32:47 */waypoints[139].type = "stand"; -/* 32:47 */waypoints[139].childCount = 4; -/* 32:47 */waypoints[139].children[0] = 138; -/* 32:47 */waypoints[139].children[1] = 140; -/* 32:47 */waypoints[139].children[2] = 128; -/* 32:47 */waypoints[139].children[3] = 129; -/* 32:47 */waypoints[140] = spawnstruct(); -/* 32:47 */waypoints[140].origin = (1362.46, 648.367, 178.782); -/* 32:47 */waypoints[140].type = "stand"; -/* 32:47 */waypoints[140].childCount = 3; -/* 32:47 */waypoints[140].children[0] = 139; -/* 32:47 */waypoints[140].children[1] = 141; -/* 32:47 */waypoints[140].children[2] = 128; -/* 32:47 */waypoints[141] = spawnstruct(); -/* 32:47 */waypoints[141].origin = (1398.88, 559.125, 172.857); -/* 32:47 */waypoints[141].type = "crouch"; -/* 32:47 */waypoints[141].childCount = 1; -/* 32:47 */waypoints[141].children[0] = 140; -/* 32:47 */waypoints[141].angles = (16.5179, 168.492, 0); -/* 32:47 */waypoints[142] = spawnstruct(); -/* 32:47 */waypoints[142].origin = (1032.98, 687.96, 168.606); -/* 32:47 */waypoints[142].type = "stand"; -/* 32:47 */waypoints[142].childCount = 5; -/* 32:47 */waypoints[142].children[0] = 128; -/* 32:47 */waypoints[142].children[1] = 143; -/* 32:47 */waypoints[142].children[2] = 127; -/* 32:47 */waypoints[142].children[3] = 129; -/* 32:47 */waypoints[142].children[4] = 130; -/* 32:47 */waypoints[143] = spawnstruct(); -/* 32:47 */waypoints[143].origin = (916.125, 559.125, 170.125); -/* 32:47 */waypoints[143].type = "crouch"; -/* 32:47 */waypoints[143].childCount = 1; -/* 32:47 */waypoints[143].children[0] = 142; -/* 32:47 */waypoints[143].angles = (5.09766, 46.0107, 0); -/* 32:47 */waypoints[144] = spawnstruct(); -/* 32:47 */waypoints[144].origin = (978.048, 1208.22, 169.294); -/* 32:47 */waypoints[144].type = "stand"; -/* 32:47 */waypoints[144].childCount = 4; -/* 32:47 */waypoints[144].children[0] = 131; -/* 32:47 */waypoints[144].children[1] = 138; -/* 32:47 */waypoints[144].children[2] = 145; -/* 32:47 */waypoints[144].children[3] = 129; -/* 32:47 */waypoints[145] = spawnstruct(); -/* 32:47 */waypoints[145].origin = (1045.88, 1324.88, 170.586); -/* 32:47 */waypoints[145].type = "crouch"; -/* 32:47 */waypoints[145].childCount = 1; -/* 32:47 */waypoints[145].children[0] = 144; -/* 32:47 */waypoints[145].angles = (7.55859, -126.546, 0); -/* 32:47 */waypoints[146] = spawnstruct(); -/* 32:47 */waypoints[146].origin = (444.5, 866.788, 135.993); -/* 32:47 */waypoints[146].type = "stand"; -/* 32:47 */waypoints[146].childCount = 4; -/* 32:47 */waypoints[146].children[0] = 136; -/* 32:47 */waypoints[146].children[1] = 93; -/* 32:47 */waypoints[146].children[2] = 92; -/* 32:47 */waypoints[146].children[3] = 137; -/* 32:47 */waypoints[147] = spawnstruct(); -/* 32:47 */waypoints[147].origin = (132.125, 779.125, 126.112); -/* 32:47 */waypoints[147].type = "crouch"; -/* 32:47 */waypoints[147].childCount = 3; -/* 32:47 */waypoints[147].children[0] = 93; -/* 32:47 */waypoints[147].children[1] = 91; -/* 32:47 */waypoints[147].children[2] = 92; -/* 32:47 */waypoints[148] = spawnstruct(); -/* 32:47 */waypoints[148].origin = (107.645, 241.55, 168.125); -/* 32:47 */waypoints[148].type = "stand"; -/* 32:47 */waypoints[148].childCount = 2; -/* 32:47 */waypoints[148].children[0] = 96; -/* 32:47 */waypoints[148].children[1] = 149; -/* 32:47 */waypoints[149] = spawnstruct(); -/* 32:47 */waypoints[149].origin = (-4.2525, 240.898, 165.125); -/* 32:47 */waypoints[149].type = "stand"; -/* 32:47 */waypoints[149].childCount = 4; -/* 32:47 */waypoints[149].children[0] = 148; -/* 32:47 */waypoints[149].children[1] = 150; -/* 32:47 */waypoints[149].children[2] = 116; -/* 32:47 */waypoints[149].children[3] = 151; -/* 32:47 */waypoints[150] = spawnstruct(); -/* 32:47 */waypoints[150].origin = (-410.643, 237.67, 166.125); -/* 32:47 */waypoints[150].type = "stand"; -/* 32:47 */waypoints[150].childCount = 3; -/* 32:47 */waypoints[150].children[0] = 149; -/* 32:47 */waypoints[150].children[1] = 170; -/* 32:47 */waypoints[150].children[2] = 175; -/* 32:47 */waypoints[151] = spawnstruct(); -/* 32:47 */waypoints[151].origin = (-53.4301, -133.034, 170.125); -/* 32:47 */waypoints[151].type = "stand"; -/* 32:47 */waypoints[151].childCount = 4; -/* 32:47 */waypoints[151].children[0] = 115; -/* 32:47 */waypoints[151].children[1] = 152; -/* 32:47 */waypoints[151].children[2] = 153; -/* 32:47 */waypoints[151].children[3] = 149; -/* 32:47 */waypoints[152] = spawnstruct(); -/* 32:47 */waypoints[152].origin = (9.41021, 33.3786, 170.125); -/* 32:47 */waypoints[152].type = "stand"; -/* 32:47 */waypoints[152].childCount = 2; -/* 32:47 */waypoints[152].children[0] = 151; -/* 32:47 */waypoints[152].children[1] = 116; -/* 32:47 */waypoints[153] = spawnstruct(); -/* 32:47 */waypoints[153].origin = (-48.875, -278.875, 170.125); -/* 32:47 */waypoints[153].type = "crouch"; -/* 32:47 */waypoints[153].childCount = 2; -/* 32:47 */waypoints[153].children[0] = 151; -/* 32:47 */waypoints[153].children[1] = 154; -/* 32:47 */waypoints[154] = spawnstruct(); -/* 32:47 */waypoints[154].origin = (93.3833, 326.034, 169.125); -/* 32:47 */waypoints[154].type = "stand"; -/* 32:47 */waypoints[154].childCount = 3; -/* 32:47 */waypoints[154].children[0] = 153; -/* 32:47 */waypoints[154].children[1] = 155; -/* 32:47 */waypoints[154].children[2] = 157; -/* 32:47 */waypoints[155] = spawnstruct(); -/* 32:47 */waypoints[155].origin = (61.2963, 483.681, 168.125); -/* 32:47 */waypoints[155].type = "stand"; -/* 32:47 */waypoints[155].childCount = 3; -/* 32:47 */waypoints[155].children[0] = 154; -/* 32:47 */waypoints[155].children[1] = 156; -/* 32:47 */waypoints[155].children[2] = 157; -/* 32:47 */waypoints[156] = spawnstruct(); -/* 32:47 */waypoints[156].origin = (-37.1158, 637.831, 168.125); -/* 32:47 */waypoints[156].type = "stand"; -/* 32:47 */waypoints[156].childCount = 3; -/* 32:47 */waypoints[156].children[0] = 155; -/* 32:47 */waypoints[156].children[1] = 20; -/* 32:47 */waypoints[156].children[2] = 160; -/* 32:47 */waypoints[157] = spawnstruct(); -/* 32:47 */waypoints[157].origin = (147.233, 418.74, 168.125); -/* 32:47 */waypoints[157].type = "stand"; -/* 32:47 */waypoints[157].childCount = 3; -/* 32:47 */waypoints[157].children[0] = 155; -/* 32:47 */waypoints[157].children[1] = 154; -/* 32:47 */waypoints[157].children[2] = 158; -/* 32:47 */waypoints[158] = spawnstruct(); -/* 32:47 */waypoints[158].origin = (173.871, 355.125, 168.125); -/* 32:47 */waypoints[158].type = "claymore"; -/* 32:47 */waypoints[158].childCount = 2; -/* 32:47 */waypoints[158].children[0] = 157; -/* 32:47 */waypoints[158].children[1] = 159; -/* 32:47 */waypoints[158].angles = (24.6863, 173.112, 0); -/* 32:47 */waypoints[159] = spawnstruct(); -/* 32:47 */waypoints[159].origin = (173.871, 355.125, 168.125); -/* 32:47 */waypoints[159].type = "crouch"; -/* 32:47 */waypoints[159].childCount = 1; -/* 32:47 */waypoints[159].children[0] = 158; -/* 32:47 */waypoints[159].angles = (23.7195, 172.76, 0); -/* 32:47 */waypoints[160] = spawnstruct(); -/* 32:47 */waypoints[160].origin = (173.875, 707.88, 187.125); -/* 32:47 */waypoints[160].type = "crouch"; -/* 32:47 */waypoints[160].childCount = 1; -/* 32:47 */waypoints[160].children[0] = 156; -/* 32:47 */waypoints[160].angles = (16.7816, -168.519, 0); -/* 32:47 */waypoints[161] = spawnstruct(); -/* 32:47 */waypoints[161].origin = (-668.86, 613.995, 168.125); -/* 32:47 */waypoints[161].type = "stand"; -/* 32:47 */waypoints[161].childCount = 2; -/* 32:47 */waypoints[161].children[0] = 22; -/* 32:47 */waypoints[161].children[1] = 162; -/* 32:47 */waypoints[162] = spawnstruct(); -/* 32:47 */waypoints[162].origin = (-666.12, 468.24, 166.125); -/* 32:47 */waypoints[162].type = "stand"; -/* 32:47 */waypoints[162].childCount = 4; -/* 32:47 */waypoints[162].children[0] = 161; -/* 32:47 */waypoints[162].children[1] = 163; -/* 32:47 */waypoints[162].children[2] = 164; -/* 32:47 */waypoints[162].children[3] = 169; -/* 32:47 */waypoints[163] = spawnstruct(); -/* 32:47 */waypoints[163].origin = (-454.125, 530.141, 166.792); -/* 32:47 */waypoints[163].type = "crouch"; -/* 32:47 */waypoints[163].childCount = 1; -/* 32:47 */waypoints[163].children[0] = 162; -/* 32:47 */waypoints[163].angles = (19.2426, -150.776, 0); -/* 32:47 */waypoints[164] = spawnstruct(); -/* 32:47 */waypoints[164].origin = (-907.051, 468.668, 166.125); -/* 32:47 */waypoints[164].type = "stand"; -/* 32:47 */waypoints[164].childCount = 3; -/* 32:47 */waypoints[164].children[0] = 162; -/* 32:47 */waypoints[164].children[1] = 165; -/* 32:47 */waypoints[164].children[2] = 168; -/* 32:47 */waypoints[165] = spawnstruct(); -/* 32:47 */waypoints[165].origin = (-1138.44, 450.357, 166.13); -/* 32:47 */waypoints[165].type = "stand"; -/* 32:47 */waypoints[165].childCount = 3; -/* 32:47 */waypoints[165].children[0] = 164; -/* 32:47 */waypoints[165].children[1] = 166; -/* 32:47 */waypoints[165].children[2] = 171; -/* 32:47 */waypoints[166] = spawnstruct(); -/* 32:47 */waypoints[166].origin = (-1107.47, 69.0025, 166.125); -/* 32:47 */waypoints[166].type = "stand"; -/* 32:47 */waypoints[166].childCount = 3; -/* 32:47 */waypoints[166].children[0] = 165; -/* 32:47 */waypoints[166].children[1] = 167; -/* 32:47 */waypoints[166].children[2] = 171; -/* 32:47 */waypoints[167] = spawnstruct(); -/* 32:47 */waypoints[167].origin = (-915.056, 15.7288, 168.125); -/* 32:47 */waypoints[167].type = "stand"; -/* 32:47 */waypoints[167].childCount = 3; -/* 32:47 */waypoints[167].children[0] = 166; -/* 32:47 */waypoints[167].children[1] = 168; -/* 32:47 */waypoints[167].children[2] = 172; -/* 32:47 */waypoints[168] = spawnstruct(); -/* 32:47 */waypoints[168].origin = (-894.291, 234.209, 166.125); -/* 32:47 */waypoints[168].type = "stand"; -/* 32:47 */waypoints[168].childCount = 4; -/* 32:47 */waypoints[168].children[0] = 167; -/* 32:47 */waypoints[168].children[1] = 169; -/* 32:47 */waypoints[168].children[2] = 164; -/* 32:47 */waypoints[168].children[3] = 171; -/* 32:47 */waypoints[169] = spawnstruct(); -/* 32:47 */waypoints[169].origin = (-692.064, 277.587, 166.125); -/* 32:47 */waypoints[169].type = "stand"; -/* 32:47 */waypoints[169].childCount = 4; -/* 32:47 */waypoints[169].children[0] = 168; -/* 32:47 */waypoints[169].children[1] = 170; -/* 32:47 */waypoints[169].children[2] = 162; -/* 32:47 */waypoints[169].children[3] = 173; -/* 32:47 */waypoints[170] = spawnstruct(); -/* 32:47 */waypoints[170].origin = (-493.478, 247.963, 168.125); -/* 32:47 */waypoints[170].type = "stand"; -/* 32:47 */waypoints[170].childCount = 2; -/* 32:47 */waypoints[170].children[0] = 169; -/* 32:47 */waypoints[170].children[1] = 150; -/* 32:47 */waypoints[171] = spawnstruct(); -/* 32:47 */waypoints[171].origin = (-1051.86, 237.981, 166.125); -/* 32:47 */waypoints[171].type = "stand"; -/* 32:47 */waypoints[171].childCount = 3; -/* 32:47 */waypoints[171].children[0] = 168; -/* 32:47 */waypoints[171].children[1] = 166; -/* 32:47 */waypoints[171].children[2] = 165; -/* 32:47 */waypoints[172] = spawnstruct(); -/* 32:47 */waypoints[172].origin = (-911.924, -224.285, 166.125); -/* 32:47 */waypoints[172].type = "stand"; -/* 32:47 */waypoints[172].childCount = 4; -/* 32:47 */waypoints[172].children[0] = 167; -/* 32:47 */waypoints[172].children[1] = 173; -/* 32:47 */waypoints[172].children[2] = 183; -/* 32:47 */waypoints[172].children[3] = 184; -/* 32:47 */waypoints[173] = spawnstruct(); -/* 32:47 */waypoints[173].origin = (-644.081, -213.711, 166.125); -/* 32:47 */waypoints[173].type = "stand"; -/* 32:47 */waypoints[173].childCount = 4; -/* 32:47 */waypoints[173].children[0] = 172; -/* 32:47 */waypoints[173].children[1] = 174; -/* 32:47 */waypoints[173].children[2] = 182; -/* 32:47 */waypoints[173].children[3] = 169; -/* 32:47 */waypoints[174] = spawnstruct(); -/* 32:47 */waypoints[174].origin = (-405.368, -208.33, 166.125); -/* 32:47 */waypoints[174].type = "stand"; -/* 32:47 */waypoints[174].childCount = 4; -/* 32:47 */waypoints[174].children[0] = 173; -/* 32:47 */waypoints[174].children[1] = 175; -/* 32:47 */waypoints[174].children[2] = 179; -/* 32:47 */waypoints[174].children[3] = 177; -/* 32:47 */waypoints[175] = spawnstruct(); -/* 32:47 */waypoints[175].origin = (-416.568, 57.519, 166.223); -/* 32:47 */waypoints[175].type = "stand"; -/* 32:47 */waypoints[175].childCount = 3; -/* 32:47 */waypoints[175].children[0] = 174; -/* 32:47 */waypoints[175].children[1] = 150; -/* 32:47 */waypoints[175].children[2] = 176; -/* 32:47 */waypoints[176] = spawnstruct(); -/* 32:47 */waypoints[176].origin = (-274.486, 57.4151, 166.125); -/* 32:47 */waypoints[176].type = "stand"; -/* 32:47 */waypoints[176].childCount = 2; -/* 32:47 */waypoints[176].children[0] = 175; -/* 32:47 */waypoints[176].children[1] = 177; -/* 32:47 */waypoints[177] = spawnstruct(); -/* 32:47 */waypoints[177].origin = (-243.143, -123.441, 166.125); -/* 32:47 */waypoints[177].type = "stand"; -/* 32:47 */waypoints[177].childCount = 3; -/* 32:47 */waypoints[177].children[0] = 176; -/* 32:47 */waypoints[177].children[1] = 178; -/* 32:47 */waypoints[177].children[2] = 174; -/* 32:47 */waypoints[178] = spawnstruct(); -/* 32:47 */waypoints[178].origin = (-254.552, -368.835, 166.125); -/* 32:47 */waypoints[178].type = "stand"; -/* 32:47 */waypoints[178].childCount = 2; -/* 32:47 */waypoints[178].children[0] = 177; -/* 32:47 */waypoints[178].children[1] = 179; -/* 32:47 */waypoints[179] = spawnstruct(); -/* 32:47 */waypoints[179].origin = (-415.448, -368.788, 166.125); -/* 32:47 */waypoints[179].type = "stand"; -/* 32:47 */waypoints[179].childCount = 3; -/* 32:47 */waypoints[179].children[0] = 178; -/* 32:47 */waypoints[179].children[1] = 174; -/* 32:47 */waypoints[179].children[2] = 180; -/* 32:47 */waypoints[180] = spawnstruct(); -/* 32:47 */waypoints[180].origin = (-435.97, -547.846, 168.125); -/* 32:47 */waypoints[180].type = "stand"; -/* 32:47 */waypoints[180].childCount = 3; -/* 32:47 */waypoints[180].children[0] = 179; -/* 32:47 */waypoints[180].children[1] = 181; -/* 32:47 */waypoints[180].children[2] = 182; -/* 32:47 */waypoints[181] = spawnstruct(); -/* 32:47 */waypoints[181].origin = (-436.051, -754.541, 200.125); -/* 32:47 */waypoints[181].type = "stand"; -/* 32:47 */waypoints[181].childCount = 2; -/* 32:47 */waypoints[181].children[0] = 180; -/* 32:47 */waypoints[181].children[1] = 243; -/* 32:47 */waypoints[182] = spawnstruct(); -/* 32:47 */waypoints[182].origin = (-676.511, -539.551, 168.125); -/* 32:47 */waypoints[182].type = "stand"; -/* 32:47 */waypoints[182].childCount = 3; -/* 32:47 */waypoints[182].children[0] = 180; -/* 32:47 */waypoints[182].children[1] = 183; -/* 32:47 */waypoints[182].children[2] = 173; -/* 32:47 */waypoints[183] = spawnstruct(); -/* 32:47 */waypoints[183].origin = (-944.821, -478.529, 168.125); -/* 32:47 */waypoints[183].type = "stand"; -/* 32:47 */waypoints[183].childCount = 2; -/* 32:47 */waypoints[183].children[0] = 182; -/* 32:47 */waypoints[183].children[1] = 172; -/* 32:47 */waypoints[184] = spawnstruct(); -/* 32:47 */waypoints[184].origin = (-1137.04, -238.632, 168.125); -/* 32:47 */waypoints[184].type = "stand"; -/* 32:47 */waypoints[184].childCount = 2; -/* 32:47 */waypoints[184].children[0] = 172; -/* 32:47 */waypoints[184].children[1] = 57; -/* 32:47 */waypoints[185] = spawnstruct(); -/* 32:47 */waypoints[185].origin = (-1506.91, -471.816, 144.125); -/* 32:47 */waypoints[185].type = "stand"; -/* 32:47 */waypoints[185].childCount = 2; -/* 32:47 */waypoints[185].children[0] = 57; -/* 32:47 */waypoints[185].children[1] = 186; -/* 32:47 */waypoints[186] = spawnstruct(); -/* 32:47 */waypoints[186].origin = (-1667.77, -535.827, 112.125); -/* 32:47 */waypoints[186].type = "stand"; -/* 32:47 */waypoints[186].childCount = 3; -/* 32:47 */waypoints[186].children[0] = 185; -/* 32:47 */waypoints[186].children[1] = 187; -/* 32:47 */waypoints[186].children[2] = 188; -/* 32:47 */waypoints[187] = spawnstruct(); -/* 32:47 */waypoints[187].origin = (-1714.88, -443.125, 112.125); -/* 32:47 */waypoints[187].type = "crouch"; -/* 32:47 */waypoints[187].childCount = 1; -/* 32:47 */waypoints[187].children[0] = 186; -/* 32:47 */waypoints[187].angles = (27.5867, -63.501, 0); -/* 32:47 */waypoints[188] = spawnstruct(); -/* 32:47 */waypoints[188].origin = (-1651.14, -888.979, 152.125); -/* 32:47 */waypoints[188].type = "stand"; -/* 32:47 */waypoints[188].childCount = 4; -/* 32:47 */waypoints[188].children[0] = 186; -/* 32:47 */waypoints[188].children[1] = 189; -/* 32:47 */waypoints[188].children[2] = 258; -/* 32:47 */waypoints[188].children[3] = 271; -/* 32:47 */waypoints[189] = spawnstruct(); -/* 32:47 */waypoints[189].origin = (-1761.28, -1114.39, 151.025); -/* 32:47 */waypoints[189].type = "stand"; -/* 32:47 */waypoints[189].childCount = 4; -/* 32:47 */waypoints[189].children[0] = 188; -/* 32:47 */waypoints[189].children[1] = 190; -/* 32:47 */waypoints[189].children[2] = 258; -/* 32:47 */waypoints[189].children[3] = 271; -/* 32:47 */waypoints[190] = spawnstruct(); -/* 32:47 */waypoints[190].origin = (-1798.71, -1330.37, 155.104); -/* 32:47 */waypoints[190].type = "stand"; -/* 32:47 */waypoints[190].childCount = 3; -/* 32:47 */waypoints[190].children[0] = 189; -/* 32:47 */waypoints[190].children[1] = 191; -/* 32:47 */waypoints[190].children[2] = 192; -/* 32:47 */waypoints[191] = spawnstruct(); -/* 32:47 */waypoints[191].origin = (-1725.87, -1312.78, 152.125); -/* 32:47 */waypoints[191].type = "claymore"; -/* 32:47 */waypoints[191].childCount = 1; -/* 32:47 */waypoints[191].children[0] = 190; -/* 32:47 */waypoints[191].angles = (21.4398, -176.265, 0); -/* 32:47 */waypoints[192] = spawnstruct(); -/* 32:47 */waypoints[192].origin = (-1789.98, -1488.15, 152.125); -/* 32:47 */waypoints[192].type = "stand"; -/* 32:47 */waypoints[192].childCount = 3; -/* 32:47 */waypoints[192].children[0] = 190; -/* 32:47 */waypoints[192].children[1] = 193; -/* 32:47 */waypoints[192].children[2] = 266; -/* 32:47 */waypoints[193] = spawnstruct(); -/* 32:47 */waypoints[193].origin = (-1751.19, -1709.09, 152.125); -/* 32:47 */waypoints[193].type = "stand"; -/* 32:47 */waypoints[193].childCount = 3; -/* 32:47 */waypoints[193].children[0] = 192; -/* 32:47 */waypoints[193].children[1] = 194; -/* 32:47 */waypoints[193].children[2] = 265; -/* 32:47 */waypoints[194] = spawnstruct(); -/* 32:47 */waypoints[194].origin = (-2046.02, -1704.34, 288.125); -/* 32:47 */waypoints[194].type = "stand"; -/* 32:47 */waypoints[194].childCount = 2; -/* 32:47 */waypoints[194].children[0] = 193; -/* 32:47 */waypoints[194].children[1] = 195; -/* 32:47 */waypoints[195] = spawnstruct(); -/* 32:47 */waypoints[195].origin = (-2193.5, -1549.86, 288.125); -/* 32:47 */waypoints[195].type = "stand"; -/* 32:47 */waypoints[195].childCount = 4; -/* 32:47 */waypoints[195].children[0] = 194; -/* 32:47 */waypoints[195].children[1] = 196; -/* 32:47 */waypoints[195].children[2] = 198; -/* 32:47 */waypoints[195].children[3] = 205; -/* 32:47 */waypoints[196] = spawnstruct(); -/* 32:47 */waypoints[196].origin = (-1840.65, -1354.84, 290.125); -/* 32:47 */waypoints[196].type = "stand"; -/* 32:47 */waypoints[196].childCount = 2; -/* 32:47 */waypoints[196].children[0] = 195; -/* 32:47 */waypoints[196].children[1] = 197; -/* 32:47 */waypoints[197] = spawnstruct(); -/* 32:47 */waypoints[197].origin = (-1579.13, -1354.94, 288.125); -/* 32:47 */waypoints[197].type = "crouch"; -/* 32:47 */waypoints[197].childCount = 1; -/* 32:47 */waypoints[197].children[0] = 196; -/* 32:47 */waypoints[197].angles = (29.6082, -1.1261, 0); -/* 32:47 */waypoints[198] = spawnstruct(); -/* 32:47 */waypoints[198].origin = (-2285.74, -1308.12, 288.125); -/* 32:47 */waypoints[198].type = "stand"; -/* 32:47 */waypoints[198].childCount = 3; -/* 32:47 */waypoints[198].children[0] = 195; -/* 32:47 */waypoints[198].children[1] = 199; -/* 32:47 */waypoints[198].children[2] = 204; -/* 32:47 */waypoints[199] = spawnstruct(); -/* 32:47 */waypoints[199].origin = (-2285.69, -1151.52, 291.117); -/* 32:47 */waypoints[199].type = "stand"; -/* 32:47 */waypoints[199].childCount = 3; -/* 32:47 */waypoints[199].children[0] = 198; -/* 32:47 */waypoints[199].children[1] = 200; -/* 32:47 */waypoints[199].children[2] = 201; -/* 32:47 */waypoints[200] = spawnstruct(); -/* 32:47 */waypoints[200].origin = (-2112.35, -1133.19, 288.125); -/* 32:47 */waypoints[200].type = "crouch"; -/* 32:47 */waypoints[200].childCount = 1; -/* 32:47 */waypoints[200].children[0] = 199; -/* 32:47 */waypoints[200].angles = (13.0902, 10.6897, 0); -/* 32:47 */waypoints[201] = spawnstruct(); -/* 32:47 */waypoints[201].origin = (-2396.53, -1093.16, 288.125); -/* 32:47 */waypoints[201].type = "stand"; -/* 32:47 */waypoints[201].childCount = 2; -/* 32:47 */waypoints[201].children[0] = 199; -/* 32:47 */waypoints[201].children[1] = 202; -/* 32:47 */waypoints[202] = spawnstruct(); -/* 32:47 */waypoints[202].origin = (-2446.09, -920.857, 265.125); -/* 32:47 */waypoints[202].type = "stand"; -/* 32:47 */waypoints[202].childCount = 2; -/* 32:47 */waypoints[202].children[0] = 201; -/* 32:47 */waypoints[202].children[1] = 203; -/* 32:47 */waypoints[203] = spawnstruct(); -/* 32:47 */waypoints[203].origin = (-2478.48, -593.455, 265.125); -/* 32:47 */waypoints[203].type = "stand"; -/* 32:47 */waypoints[203].childCount = 2; -/* 32:47 */waypoints[203].children[0] = 202; -/* 32:47 */waypoints[203].children[1] = 60; -/* 32:47 */waypoints[204] = spawnstruct(); -/* 32:47 */waypoints[204].origin = (-2449.88, -1263.13, 288.125); -/* 32:47 */waypoints[204].type = "crouch"; -/* 32:47 */waypoints[204].childCount = 1; -/* 32:47 */waypoints[204].children[0] = 198; -/* 32:47 */waypoints[204].angles = (16.9574, -29.0259, 0); -/* 32:47 */waypoints[205] = spawnstruct(); -/* 32:47 */waypoints[205].origin = (-2252.05, -1834.63, 291.121); -/* 32:47 */waypoints[205].type = "stand"; -/* 32:47 */waypoints[205].childCount = 2; -/* 32:47 */waypoints[205].children[0] = 195; -/* 32:47 */waypoints[205].children[1] = 206; -/* 32:47 */waypoints[206] = spawnstruct(); -/* 32:47 */waypoints[206].origin = (-1878.1, -1867.36, 152.125); -/* 32:47 */waypoints[206].type = "stand"; -/* 32:47 */waypoints[206].childCount = 2; -/* 32:47 */waypoints[206].children[0] = 205; -/* 32:47 */waypoints[206].children[1] = 207; -/* 32:47 */waypoints[207] = spawnstruct(); -/* 32:47 */waypoints[207].origin = (-1469.3, -1831.17, 152.125); -/* 32:47 */waypoints[207].type = "stand"; -/* 32:47 */waypoints[207].childCount = 2; -/* 32:47 */waypoints[207].children[0] = 206; -/* 32:47 */waypoints[207].children[1] = 208; -/* 32:47 */waypoints[208] = spawnstruct(); -/* 32:47 */waypoints[208].origin = (-1310.38, -1838.6, 152.125); -/* 32:47 */waypoints[208].type = "stand"; -/* 32:47 */waypoints[208].childCount = 3; -/* 32:47 */waypoints[208].children[0] = 207; -/* 32:47 */waypoints[208].children[1] = 209; -/* 32:47 */waypoints[208].children[2] = 213; -/* 32:47 */waypoints[209] = spawnstruct(); -/* 32:47 */waypoints[209].origin = (-949.577, -1825.33, 152.125); -/* 32:47 */waypoints[209].type = "stand"; -/* 32:47 */waypoints[209].childCount = 3; -/* 32:47 */waypoints[209].children[0] = 208; -/* 32:47 */waypoints[209].children[1] = 210; -/* 32:47 */waypoints[209].children[2] = 212; -/* 32:47 */waypoints[210] = spawnstruct(); -/* 32:47 */waypoints[210].origin = (-643.59, -1821.47, 152.125); -/* 32:47 */waypoints[210].type = "stand"; -/* 32:47 */waypoints[210].childCount = 2; -/* 32:47 */waypoints[210].children[0] = 209; -/* 32:47 */waypoints[210].children[1] = 211; -/* 32:47 */waypoints[211] = spawnstruct(); -/* 32:47 */waypoints[211].origin = (-621.166, -1650.31, 144.125); -/* 32:47 */waypoints[211].type = "stand"; -/* 32:47 */waypoints[211].childCount = 3; -/* 32:47 */waypoints[211].children[0] = 210; -/* 32:47 */waypoints[211].children[1] = 212; -/* 32:47 */waypoints[211].children[2] = 214; -/* 32:47 */waypoints[212] = spawnstruct(); -/* 32:47 */waypoints[212].origin = (-932.542, -1650.37, 144.125); -/* 32:47 */waypoints[212].type = "stand"; -/* 32:47 */waypoints[212].childCount = 4; -/* 32:47 */waypoints[212].children[0] = 211; -/* 32:47 */waypoints[212].children[1] = 213; -/* 32:47 */waypoints[212].children[2] = 209; -/* 32:47 */waypoints[212].children[3] = 261; -/* 32:47 */waypoints[213] = spawnstruct(); -/* 32:47 */waypoints[213].origin = (-1256.58, -1650.86, 144.125); -/* 32:47 */waypoints[213].type = "stand"; -/* 32:47 */waypoints[213].childCount = 3; -/* 32:47 */waypoints[213].children[0] = 212; -/* 32:47 */waypoints[213].children[1] = 208; -/* 32:47 */waypoints[213].children[2] = 262; -/* 32:47 */waypoints[214] = spawnstruct(); -/* 32:47 */waypoints[214].origin = (-519.869, -1455.32, 156.7); -/* 32:47 */waypoints[214].type = "stand"; -/* 32:47 */waypoints[214].childCount = 3; -/* 32:47 */waypoints[214].children[0] = 211; -/* 32:47 */waypoints[214].children[1] = 215; -/* 32:47 */waypoints[214].children[2] = 237; -/* 32:47 */waypoints[215] = spawnstruct(); -/* 32:47 */waypoints[215].origin = (-168.063, -1557.12, 198.945); -/* 32:47 */waypoints[215].type = "stand"; -/* 32:47 */waypoints[215].childCount = 2; -/* 32:47 */waypoints[215].children[0] = 214; -/* 32:47 */waypoints[215].children[1] = 216; -/* 32:47 */waypoints[216] = spawnstruct(); -/* 32:47 */waypoints[216].origin = (-81.1603, -1411.26, 199.728); -/* 32:47 */waypoints[216].type = "stand"; -/* 32:47 */waypoints[216].childCount = 3; -/* 32:47 */waypoints[216].children[0] = 215; -/* 32:47 */waypoints[216].children[1] = 217; -/* 32:47 */waypoints[216].children[2] = 235; -/* 32:47 */waypoints[217] = spawnstruct(); -/* 32:47 */waypoints[217].origin = (-190.696, -1170.3, 208.125); -/* 32:47 */waypoints[217].type = "stand"; -/* 32:47 */waypoints[217].childCount = 4; -/* 32:47 */waypoints[217].children[0] = 216; -/* 32:47 */waypoints[217].children[1] = 218; -/* 32:47 */waypoints[217].children[2] = 236; -/* 32:47 */waypoints[217].children[3] = 238; -/* 32:47 */waypoints[218] = spawnstruct(); -/* 32:47 */waypoints[218].origin = (-57.2164, -1021.91, 208.125); -/* 32:47 */waypoints[218].type = "stand"; -/* 32:47 */waypoints[218].childCount = 3; -/* 32:47 */waypoints[218].children[0] = 217; -/* 32:47 */waypoints[218].children[1] = 219; -/* 32:47 */waypoints[218].children[2] = 220; -/* 32:47 */waypoints[219] = spawnstruct(); -/* 32:47 */waypoints[219].origin = (66.4044, -869.065, 208.125); -/* 32:47 */waypoints[219].type = "stand"; -/* 32:47 */waypoints[219].childCount = 2; -/* 32:47 */waypoints[219].children[0] = 218; -/* 32:47 */waypoints[219].children[1] = 224; -/* 32:47 */waypoints[220] = spawnstruct(); -/* 32:47 */waypoints[220].origin = (44.516, -1092.51, 208.125); -/* 32:47 */waypoints[220].type = "stand"; -/* 32:47 */waypoints[220].childCount = 2; -/* 32:47 */waypoints[220].children[0] = 218; -/* 32:47 */waypoints[220].children[1] = 221; -/* 32:47 */waypoints[221] = spawnstruct(); -/* 32:47 */waypoints[221].origin = (308.434, -1116.63, 208.125); -/* 32:47 */waypoints[221].type = "stand"; -/* 32:47 */waypoints[221].childCount = 3; -/* 32:47 */waypoints[221].children[0] = 220; -/* 32:47 */waypoints[221].children[1] = 222; -/* 32:47 */waypoints[221].children[2] = 231; -/* 32:47 */waypoints[222] = spawnstruct(); -/* 32:47 */waypoints[222].origin = (450.402, -1116.55, 208.125); -/* 32:47 */waypoints[222].type = "stand"; -/* 32:47 */waypoints[222].childCount = 4; -/* 32:47 */waypoints[222].children[0] = 221; -/* 32:47 */waypoints[222].children[1] = 223; -/* 32:47 */waypoints[222].children[2] = 227; -/* 32:47 */waypoints[222].children[3] = 229; -/* 32:47 */waypoints[223] = spawnstruct(); -/* 32:47 */waypoints[223].origin = (464.255, -961.957, 208.125); -/* 32:47 */waypoints[223].type = "stand"; -/* 32:47 */waypoints[223].childCount = 3; -/* 32:47 */waypoints[223].children[0] = 222; -/* 32:47 */waypoints[223].children[1] = 224; -/* 32:47 */waypoints[223].children[2] = 225; -/* 32:47 */waypoints[224] = spawnstruct(); -/* 32:47 */waypoints[224].origin = (466.237, -822.843, 208.125); -/* 32:47 */waypoints[224].type = "stand"; -/* 32:47 */waypoints[224].childCount = 4; -/* 32:47 */waypoints[224].children[0] = 223; -/* 32:47 */waypoints[224].children[1] = 226; -/* 32:47 */waypoints[224].children[2] = 219; -/* 32:47 */waypoints[224].children[3] = 114; -/* 32:47 */waypoints[225] = spawnstruct(); -/* 32:47 */waypoints[225].origin = (591.49, -972.959, 208.125); -/* 32:47 */waypoints[225].type = "stand"; -/* 32:47 */waypoints[225].childCount = 4; -/* 32:47 */waypoints[225].children[0] = 223; -/* 32:47 */waypoints[225].children[1] = 226; -/* 32:47 */waypoints[225].children[2] = 227; -/* 32:47 */waypoints[225].children[3] = 281; -/* 32:47 */waypoints[226] = spawnstruct(); -/* 32:47 */waypoints[226].origin = (599.421, -820.096, 208.125); -/* 32:47 */waypoints[226].type = "stand"; -/* 32:47 */waypoints[226].childCount = 2; -/* 32:47 */waypoints[226].children[0] = 225; -/* 32:47 */waypoints[226].children[1] = 224; -/* 32:47 */waypoints[227] = spawnstruct(); -/* 32:47 */waypoints[227].origin = (594.414, -1132.16, 208.125); -/* 32:47 */waypoints[227].type = "stand"; -/* 32:47 */waypoints[227].childCount = 4; -/* 32:47 */waypoints[227].children[0] = 225; -/* 32:47 */waypoints[227].children[1] = 228; -/* 32:47 */waypoints[227].children[2] = 282; -/* 32:47 */waypoints[227].children[3] = 222; -/* 32:47 */waypoints[228] = spawnstruct(); -/* 32:47 */waypoints[228].origin = (593.92, -1282.2, 208.125); -/* 32:47 */waypoints[228].type = "stand"; -/* 32:47 */waypoints[228].childCount = 2; -/* 32:47 */waypoints[228].children[0] = 227; -/* 32:47 */waypoints[228].children[1] = 229; -/* 32:47 */waypoints[229] = spawnstruct(); -/* 32:47 */waypoints[229].origin = (473.5, -1275.18, 208.125); -/* 32:47 */waypoints[229].type = "stand"; -/* 32:47 */waypoints[229].childCount = 3; -/* 32:47 */waypoints[229].children[0] = 228; -/* 32:47 */waypoints[229].children[1] = 230; -/* 32:47 */waypoints[229].children[2] = 222; -/* 32:47 */waypoints[230] = spawnstruct(); -/* 32:47 */waypoints[230].origin = (317.248, -1275.1, 208.125); -/* 32:47 */waypoints[230].type = "stand"; -/* 32:47 */waypoints[230].childCount = 2; -/* 32:47 */waypoints[230].children[0] = 229; -/* 32:47 */waypoints[230].children[1] = 231; -/* 32:47 */waypoints[231] = spawnstruct(); -/* 32:47 */waypoints[231].origin = (261.66, -1305.98, 208.125); -/* 32:47 */waypoints[231].type = "stand"; -/* 32:47 */waypoints[231].childCount = 3; -/* 32:47 */waypoints[231].children[0] = 230; -/* 32:47 */waypoints[231].children[1] = 232; -/* 32:47 */waypoints[231].children[2] = 221; -/* 32:47 */waypoints[232] = spawnstruct(); -/* 32:47 */waypoints[232].origin = (180.105, -1307.13, 208.125); -/* 32:47 */waypoints[232].type = "stand"; -/* 32:47 */waypoints[232].childCount = 4; -/* 32:47 */waypoints[232].children[0] = 231; -/* 32:47 */waypoints[232].children[1] = 233; -/* 32:47 */waypoints[232].children[2] = 234; -/* 32:47 */waypoints[232].children[3] = 235; -/* 32:47 */waypoints[233] = spawnstruct(); -/* 32:47 */waypoints[233].origin = (199.875, -1251.13, 208.125); -/* 32:47 */waypoints[233].type = "claymore"; -/* 32:47 */waypoints[233].childCount = 1; -/* 32:47 */waypoints[233].children[0] = 232; -/* 32:47 */waypoints[233].angles = (8.08044, -92.1478, 0); -/* 32:47 */waypoints[234] = spawnstruct(); -/* 32:47 */waypoints[234].origin = (199.875, -1508.88, 208.125); -/* 32:47 */waypoints[234].type = "crouch"; -/* 32:47 */waypoints[234].childCount = 1; -/* 32:47 */waypoints[234].children[0] = 232; -/* 32:47 */waypoints[234].angles = (23.8074, 111.286, 0); -/* 32:47 */waypoints[235] = spawnstruct(); -/* 32:47 */waypoints[235].origin = (32.6311, -1393.16, 208.125); -/* 32:47 */waypoints[235].type = "stand"; -/* 32:47 */waypoints[235].childCount = 2; -/* 32:47 */waypoints[235].children[0] = 232; -/* 32:47 */waypoints[235].children[1] = 216; -/* 32:47 */waypoints[236] = spawnstruct(); -/* 32:47 */waypoints[236].origin = (-253.838, -1270.58, 198.172); -/* 32:47 */waypoints[236].type = "stand"; -/* 32:47 */waypoints[236].childCount = 2; -/* 32:47 */waypoints[236].children[0] = 217; -/* 32:47 */waypoints[236].children[1] = 237; -/* 32:47 */waypoints[237] = spawnstruct(); -/* 32:47 */waypoints[237].origin = (-525.952, -1327.79, 157.269); -/* 32:47 */waypoints[237].type = "stand"; -/* 32:47 */waypoints[237].childCount = 3; -/* 32:47 */waypoints[237].children[0] = 236; -/* 32:47 */waypoints[237].children[1] = 214; -/* 32:47 */waypoints[237].children[2] = 244; -/* 32:47 */waypoints[238] = spawnstruct(); -/* 32:47 */waypoints[238].origin = (-283.875, -1177.89, 208.125); -/* 32:47 */waypoints[238].type = "climb"; -/* 32:47 */waypoints[238].childCount = 2; -/* 32:47 */waypoints[238].children[0] = 217; -/* 32:47 */waypoints[238].children[1] = 239; -/* 32:47 */waypoints[238].angles = (9.3988, -179.121, 0); -/* 32:47 */waypoints[239] = spawnstruct(); -/* 32:47 */waypoints[239].origin = (-287.148, -1177.99, 232.125); -/* 32:47 */waypoints[239].type = "stand"; -/* 32:47 */waypoints[239].childCount = 2; -/* 32:47 */waypoints[239].children[0] = 238; -/* 32:47 */waypoints[239].children[1] = 240; -/* 32:47 */waypoints[240] = spawnstruct(); -/* 32:47 */waypoints[240].origin = (-315.875, -1178.02, 232.125); -/* 32:47 */waypoints[240].type = "climb"; -/* 32:47 */waypoints[240].childCount = 2; -/* 32:47 */waypoints[240].children[0] = 239; -/* 32:47 */waypoints[240].children[1] = 241; -/* 32:47 */waypoints[240].angles = (9.48669, -179.121, 0); -/* 32:47 */waypoints[241] = spawnstruct(); -/* 32:47 */waypoints[241].origin = (-332.447, -1177.99, 276.125); -/* 32:47 */waypoints[241].type = "stand"; -/* 32:47 */waypoints[241].childCount = 2; -/* 32:47 */waypoints[241].children[0] = 240; -/* 32:47 */waypoints[241].children[1] = 242; -/* 32:47 */waypoints[242] = spawnstruct(); -/* 32:47 */waypoints[242].origin = (-355.807, -1176.74, 200.125); -/* 32:47 */waypoints[242].type = "climb"; -/* 32:47 */waypoints[242].childCount = 2; -/* 32:47 */waypoints[242].children[0] = 241; -/* 32:47 */waypoints[242].children[1] = 243; -/* 32:47 */waypoints[242].angles = (0.966797, -4.11438, 0); -/* 32:47 */waypoints[243] = spawnstruct(); -/* 32:47 */waypoints[243].origin = (-471.705, -1145.26, 200.125); -/* 32:47 */waypoints[243].type = "stand"; -/* 32:47 */waypoints[243].childCount = 3; -/* 32:47 */waypoints[243].children[0] = 242; -/* 32:47 */waypoints[243].children[1] = 181; -/* 32:47 */waypoints[243].children[2] = 244; -/* 32:47 */waypoints[244] = spawnstruct(); -/* 32:47 */waypoints[244].origin = (-791.427, -1132.25, 152.099); -/* 32:47 */waypoints[244].type = "stand"; -/* 32:47 */waypoints[244].childCount = 4; -/* 32:47 */waypoints[244].children[0] = 243; -/* 32:47 */waypoints[244].children[1] = 237; -/* 32:47 */waypoints[244].children[2] = 245; -/* 32:47 */waypoints[244].children[3] = 259; -/* 32:47 */waypoints[245] = spawnstruct(); -/* 32:47 */waypoints[245].origin = (-809.008, -1078.75, 151.866); -/* 32:47 */waypoints[245].type = "stand"; -/* 32:47 */waypoints[245].childCount = 2; -/* 32:47 */waypoints[245].children[0] = 244; -/* 32:47 */waypoints[245].children[1] = 246; -/* 32:47 */waypoints[246] = spawnstruct(); -/* 32:47 */waypoints[246].origin = (-832.61, -955.32, 168.125); -/* 32:47 */waypoints[246].type = "stand"; -/* 32:47 */waypoints[246].childCount = 3; -/* 32:47 */waypoints[246].children[0] = 245; -/* 32:47 */waypoints[246].children[1] = 247; -/* 32:47 */waypoints[246].children[2] = 248; -/* 32:47 */waypoints[247] = spawnstruct(); -/* 32:47 */waypoints[247].origin = (-965.875, -999.715, 168.125); -/* 32:47 */waypoints[247].type = "crouch"; -/* 32:47 */waypoints[247].childCount = 1; -/* 32:47 */waypoints[247].children[0] = 246; -/* 32:47 */waypoints[247].angles = (27.2186, 23.0878, 0); -/* 32:47 */waypoints[248] = spawnstruct(); -/* 32:47 */waypoints[248].origin = (-908.819, -837.57, 168.125); -/* 32:47 */waypoints[248].type = "stand"; -/* 32:47 */waypoints[248].childCount = 2; -/* 32:47 */waypoints[248].children[0] = 246; -/* 32:47 */waypoints[248].children[1] = 249; -/* 32:47 */waypoints[249] = spawnstruct(); -/* 32:47 */waypoints[249].origin = (-1073.94, -857.662, 168.125); -/* 32:47 */waypoints[249].type = "stand"; -/* 32:47 */waypoints[249].childCount = 2; -/* 32:47 */waypoints[249].children[0] = 248; -/* 32:47 */waypoints[249].children[1] = 250; -/* 32:47 */waypoints[250] = spawnstruct(); -/* 32:47 */waypoints[250].origin = (-1063.01, -666.39, 232.125); -/* 32:47 */waypoints[250].type = "stand"; -/* 32:47 */waypoints[250].childCount = 2; -/* 32:47 */waypoints[250].children[0] = 249; -/* 32:47 */waypoints[250].children[1] = 251; -/* 32:47 */waypoints[251] = spawnstruct(); -/* 32:47 */waypoints[251].origin = (-847.756, -660.346, 304.125); -/* 32:47 */waypoints[251].type = "stand"; -/* 32:47 */waypoints[251].childCount = 2; -/* 32:47 */waypoints[251].children[0] = 250; -/* 32:47 */waypoints[251].children[1] = 252; -/* 32:47 */waypoints[252] = spawnstruct(); -/* 32:47 */waypoints[252].origin = (-873.175, -910.498, 304.125); -/* 32:47 */waypoints[252].type = "stand"; -/* 32:47 */waypoints[252].childCount = 2; -/* 32:47 */waypoints[252].children[0] = 251; -/* 32:47 */waypoints[252].children[1] = 253; -/* 32:47 */waypoints[253] = spawnstruct(); -/* 32:47 */waypoints[253].origin = (-1023.02, -942.343, 304.125); -/* 32:47 */waypoints[253].type = "crouch"; -/* 32:47 */waypoints[253].childCount = 2; -/* 32:47 */waypoints[253].children[0] = 252; -/* 32:47 */waypoints[253].children[1] = 254; -/* 32:47 */waypoints[254] = spawnstruct(); -/* 32:47 */waypoints[254].origin = (-1083.88, -943.456, 304.125); -/* 32:47 */waypoints[254].type = "climb"; -/* 32:47 */waypoints[254].childCount = 2; -/* 32:47 */waypoints[254].children[0] = 253; -/* 32:47 */waypoints[254].children[1] = 255; -/* 32:47 */waypoints[254].angles = (22.3846, 179.868, 0); -/* 32:47 */waypoints[255] = spawnstruct(); -/* 32:47 */waypoints[255].origin = (-1100.5, -943.456, 336.125); -/* 32:47 */waypoints[255].type = "stand"; -/* 32:47 */waypoints[255].childCount = 2; -/* 32:47 */waypoints[255].children[0] = 254; -/* 32:47 */waypoints[255].children[1] = 256; -/* 32:47 */waypoints[256] = spawnstruct(); -/* 32:47 */waypoints[256].origin = (-1136.14, -949.099, 152.125); -/* 32:47 */waypoints[256].type = "climb"; -/* 32:47 */waypoints[256].childCount = 2; -/* 32:47 */waypoints[256].children[0] = 255; -/* 32:47 */waypoints[256].children[1] = 257; -/* 32:47 */waypoints[256].angles = (0.247192, -1.42822, 0); -/* 32:47 */waypoints[257] = spawnstruct(); -/* 32:47 */waypoints[257].origin = (-1359.12, -993.193, 151.976); -/* 32:47 */waypoints[257].type = "stand"; -/* 32:47 */waypoints[257].childCount = 2; -/* 32:47 */waypoints[257].children[0] = 256; -/* 32:47 */waypoints[257].children[1] = 258; -/* 32:47 */waypoints[258] = spawnstruct(); -/* 32:47 */waypoints[258].origin = (-1603.92, -1112.56, 150.271); -/* 32:47 */waypoints[258].type = "stand"; -/* 32:47 */waypoints[258].childCount = 5; -/* 32:47 */waypoints[258].children[0] = 257; -/* 32:47 */waypoints[258].children[1] = 189; -/* 32:47 */waypoints[258].children[2] = 188; -/* 32:47 */waypoints[258].children[3] = 259; -/* 32:47 */waypoints[258].children[4] = 264; -/* 32:47 */waypoints[259] = spawnstruct(); -/* 32:47 */waypoints[259].origin = (-1213.78, -1156.33, 153.339); -/* 32:47 */waypoints[259].type = "stand"; -/* 32:47 */waypoints[259].childCount = 3; -/* 32:47 */waypoints[259].children[0] = 258; -/* 32:47 */waypoints[259].children[1] = 244; -/* 32:47 */waypoints[259].children[2] = 260; -/* 32:47 */waypoints[260] = spawnstruct(); -/* 32:47 */waypoints[260].origin = (-1140.28, -1276.42, 147.248); -/* 32:47 */waypoints[260].type = "stand"; -/* 32:47 */waypoints[260].childCount = 3; -/* 32:47 */waypoints[260].children[0] = 259; -/* 32:47 */waypoints[260].children[1] = 261; -/* 32:47 */waypoints[260].children[2] = 262; -/* 32:47 */waypoints[261] = spawnstruct(); -/* 32:47 */waypoints[261].origin = (-913.021, -1467.5, 144.117); -/* 32:47 */waypoints[261].type = "stand"; -/* 32:47 */waypoints[261].childCount = 2; -/* 32:47 */waypoints[261].children[0] = 260; -/* 32:47 */waypoints[261].children[1] = 212; -/* 32:47 */waypoints[262] = spawnstruct(); -/* 32:47 */waypoints[262].origin = (-1236.18, -1450.01, 144.005); -/* 32:47 */waypoints[262].type = "stand"; -/* 32:47 */waypoints[262].childCount = 4; -/* 32:47 */waypoints[262].children[0] = 260; -/* 32:47 */waypoints[262].children[1] = 213; -/* 32:47 */waypoints[262].children[2] = 263; -/* 32:47 */waypoints[262].children[3] = 264; -/* 32:47 */waypoints[263] = spawnstruct(); -/* 32:47 */waypoints[263].origin = (-1480.88, -1696.88, 154.998); -/* 32:47 */waypoints[263].type = "crouch"; -/* 32:47 */waypoints[263].childCount = 1; -/* 32:47 */waypoints[263].children[0] = 262; -/* 32:47 */waypoints[263].angles = (17.6166, 42.6709, 0); -/* 32:47 */waypoints[264] = spawnstruct(); -/* 32:47 */waypoints[264].origin = (-1467.54, -1317.05, 153.001); -/* 32:47 */waypoints[264].type = "stand"; -/* 32:47 */waypoints[264].childCount = 2; -/* 32:47 */waypoints[264].children[0] = 262; -/* 32:47 */waypoints[264].children[1] = 258; -/* 32:47 */waypoints[265] = spawnstruct(); -/* 32:47 */waypoints[265].origin = (-1579.12, -1718.05, 152.125); -/* 32:47 */waypoints[265].type = "crouch"; -/* 32:47 */waypoints[265].childCount = 1; -/* 32:47 */waypoints[265].children[0] = 193; -/* 32:47 */waypoints[265].angles = (11.6455, 169.442, 0); -/* 32:47 */waypoints[266] = spawnstruct(); -/* 32:47 */waypoints[266].origin = (-1958.3, -1479.22, 152.125); -/* 32:47 */waypoints[266].type = "stand"; -/* 32:47 */waypoints[266].childCount = 2; -/* 32:47 */waypoints[266].children[0] = 192; -/* 32:47 */waypoints[266].children[1] = 267; -/* 32:47 */waypoints[267] = spawnstruct(); -/* 32:47 */waypoints[267].origin = (-2234.27, -1473.94, 152.125); -/* 32:47 */waypoints[267].type = "stand"; -/* 32:47 */waypoints[267].childCount = 2; -/* 32:47 */waypoints[267].children[0] = 266; -/* 32:47 */waypoints[267].children[1] = 268; -/* 32:47 */waypoints[268] = spawnstruct(); -/* 32:47 */waypoints[268].origin = (-2225.57, -1126.53, 152.125); -/* 32:47 */waypoints[268].type = "stand"; -/* 32:47 */waypoints[268].childCount = 2; -/* 32:47 */waypoints[268].children[0] = 267; -/* 32:47 */waypoints[268].children[1] = 269; -/* 32:47 */waypoints[269] = spawnstruct(); -/* 32:47 */waypoints[269].origin = (-2225.47, -973.996, 152.125); -/* 32:47 */waypoints[269].type = "stand"; -/* 32:47 */waypoints[269].childCount = 3; -/* 32:47 */waypoints[269].children[0] = 268; -/* 32:47 */waypoints[269].children[1] = 270; -/* 32:47 */waypoints[269].children[2] = 296; -/* 32:47 */waypoints[270] = spawnstruct(); -/* 32:47 */waypoints[270].origin = (-2048.56, -967.637, 152.125); -/* 32:47 */waypoints[270].type = "stand"; -/* 32:47 */waypoints[270].childCount = 3; -/* 32:47 */waypoints[270].children[0] = 269; -/* 32:47 */waypoints[270].children[1] = 271; -/* 32:47 */waypoints[270].children[2] = 272; -/* 32:47 */waypoints[271] = spawnstruct(); -/* 32:47 */waypoints[271].origin = (-1826.36, -980.793, 152.125); -/* 32:47 */waypoints[271].type = "stand"; -/* 32:47 */waypoints[271].childCount = 3; -/* 32:47 */waypoints[271].children[0] = 270; -/* 32:47 */waypoints[271].children[1] = 189; -/* 32:47 */waypoints[271].children[2] = 188; -/* 32:47 */waypoints[272] = spawnstruct(); -/* 32:47 */waypoints[272].origin = (-2056.1, -722.667, 112.125); -/* 32:47 */waypoints[272].type = "stand"; -/* 32:47 */waypoints[272].childCount = 3; -/* 32:47 */waypoints[272].children[0] = 270; -/* 32:47 */waypoints[272].children[1] = 273; -/* 32:47 */waypoints[272].children[2] = 298; -/* 32:47 */waypoints[273] = spawnstruct(); -/* 32:47 */waypoints[273].origin = (-2064.62, -440.893, 188.125); -/* 32:47 */waypoints[273].type = "stand"; -/* 32:47 */waypoints[273].childCount = 3; -/* 32:47 */waypoints[273].children[0] = 272; -/* 32:47 */waypoints[273].children[1] = 59; -/* 32:47 */waypoints[273].children[2] = 60; -/* 32:47 */waypoints[274] = spawnstruct(); -/* 32:47 */waypoints[274].origin = (-1989, 191.296, 188.125); -/* 32:47 */waypoints[274].type = "stand"; -/* 32:47 */waypoints[274].childCount = 3; -/* 32:47 */waypoints[274].children[0] = 58; -/* 32:47 */waypoints[274].children[1] = 63; -/* 32:47 */waypoints[274].children[2] = 59; -/* 32:47 */waypoints[275] = spawnstruct(); -/* 32:47 */waypoints[275].origin = (-883.132, 465.491, 304.125); -/* 32:47 */waypoints[275].type = "stand"; -/* 32:47 */waypoints[275].childCount = 2; -/* 32:47 */waypoints[275].children[0] = 50; -/* 32:47 */waypoints[275].children[1] = 276; -/* 32:47 */waypoints[276] = spawnstruct(); -/* 32:47 */waypoints[276].origin = (-549.247, 482.953, 304.125); -/* 32:47 */waypoints[276].type = "stand"; -/* 32:47 */waypoints[276].childCount = 2; -/* 32:47 */waypoints[276].children[0] = 275; -/* 32:47 */waypoints[276].children[1] = 277; -/* 32:47 */waypoints[277] = spawnstruct(); -/* 32:47 */waypoints[277].origin = (-370.582, 492.83, 320.125); -/* 32:47 */waypoints[277].type = "stand"; -/* 32:47 */waypoints[277].childCount = 2; -/* 32:47 */waypoints[277].children[0] = 276; -/* 32:47 */waypoints[277].children[1] = 278; -/* 32:47 */waypoints[278] = spawnstruct(); -/* 32:47 */waypoints[278].origin = (-343.215, 371.566, 320.125); -/* 32:47 */waypoints[278].type = "crouch"; -/* 32:47 */waypoints[278].childCount = 2; -/* 32:47 */waypoints[278].children[0] = 277; -/* 32:47 */waypoints[278].children[1] = 279; -/* 32:47 */waypoints[279] = spawnstruct(); -/* 32:47 */waypoints[279].origin = (20.8969, 390.657, 320.125); -/* 32:47 */waypoints[279].type = "stand"; -/* 32:47 */waypoints[279].childCount = 2; -/* 32:47 */waypoints[279].children[0] = 278; -/* 32:47 */waypoints[279].children[1] = 5; -/* 32:47 */waypoints[280] = spawnstruct(); -/* 32:47 */waypoints[280].origin = (164.061, 714.625, 320.125); -/* 32:47 */waypoints[280].type = "crouch"; -/* 32:47 */waypoints[280].childCount = 1; -/* 32:47 */waypoints[280].children[0] = 7; -/* 32:47 */waypoints[280].angles = (19.9017, 5.83923, 0); -/* 32:47 */waypoints[281] = spawnstruct(); -/* 32:47 */waypoints[281].origin = (804.139, -994.244, 208.125); -/* 32:47 */waypoints[281].type = "stand"; -/* 32:47 */waypoints[281].childCount = 2; -/* 32:47 */waypoints[281].children[0] = 225; -/* 32:47 */waypoints[281].children[1] = 282; -/* 32:47 */waypoints[282] = spawnstruct(); -/* 32:47 */waypoints[282].origin = (971.962, -1085.06, 208.125); -/* 32:47 */waypoints[282].type = "stand"; -/* 32:47 */waypoints[282].childCount = 3; -/* 32:47 */waypoints[282].children[0] = 281; -/* 32:47 */waypoints[282].children[1] = 283; -/* 32:47 */waypoints[282].children[2] = 227; -/* 32:47 */waypoints[283] = spawnstruct(); -/* 32:47 */waypoints[283].origin = (1099.98, -1283.91, 208.125); -/* 32:47 */waypoints[283].type = "stand"; -/* 32:47 */waypoints[283].childCount = 2; -/* 32:47 */waypoints[283].children[0] = 282; -/* 32:47 */waypoints[283].children[1] = 284; -/* 32:47 */waypoints[284] = spawnstruct(); -/* 32:47 */waypoints[284].origin = (1279.82, -1191.86, 204.125); -/* 32:47 */waypoints[284].type = "stand"; -/* 32:47 */waypoints[284].childCount = 2; -/* 32:47 */waypoints[284].children[0] = 283; -/* 32:47 */waypoints[284].children[1] = 285; -/* 32:47 */waypoints[285] = spawnstruct(); -/* 32:47 */waypoints[285].origin = (1246.24, -1007.65, 208.125); -/* 32:47 */waypoints[285].type = "stand"; -/* 32:47 */waypoints[285].childCount = 3; -/* 32:47 */waypoints[285].children[0] = 284; -/* 32:47 */waypoints[285].children[1] = 286; -/* 32:47 */waypoints[285].children[2] = 290; -/* 32:47 */waypoints[286] = spawnstruct(); -/* 32:47 */waypoints[286].origin = (1055.97, -976.429, 208.125); -/* 32:47 */waypoints[286].type = "stand"; -/* 32:47 */waypoints[286].childCount = 2; -/* 32:47 */waypoints[286].children[0] = 285; -/* 32:47 */waypoints[286].children[1] = 287; -/* 32:47 */waypoints[287] = spawnstruct(); -/* 32:47 */waypoints[287].origin = (1047.35, -829.142, 208.125); -/* 32:47 */waypoints[287].type = "stand"; -/* 32:47 */waypoints[287].childCount = 2; -/* 32:47 */waypoints[287].children[0] = 286; -/* 32:47 */waypoints[287].children[1] = 288; -/* 32:47 */waypoints[288] = spawnstruct(); -/* 32:47 */waypoints[288].origin = (1050.09, -606.572, 232.125); -/* 32:47 */waypoints[288].type = "stand"; -/* 32:47 */waypoints[288].childCount = 3; -/* 32:47 */waypoints[288].children[0] = 287; -/* 32:47 */waypoints[288].children[1] = 108; -/* 32:47 */waypoints[288].children[2] = 289; -/* 32:47 */waypoints[289] = spawnstruct(); -/* 32:47 */waypoints[289].origin = (1255.05, -702.843, 232.125); -/* 32:47 */waypoints[289].type = "stand"; -/* 32:47 */waypoints[289].childCount = 2; -/* 32:47 */waypoints[289].children[0] = 288; -/* 32:47 */waypoints[289].children[1] = 290; -/* 32:47 */waypoints[290] = spawnstruct(); -/* 32:47 */waypoints[290].origin = (1312.69, -859.375, 208.125); -/* 32:47 */waypoints[290].type = "stand"; -/* 32:47 */waypoints[290].childCount = 2; -/* 32:47 */waypoints[290].children[0] = 289; -/* 32:47 */waypoints[290].children[1] = 285; -/* 32:47 */waypoints[291] = spawnstruct(); -/* 32:47 */waypoints[291].origin = (628.691, 90.1666, 208.125); -/* 32:47 */waypoints[291].type = "stand"; -/* 32:47 */waypoints[291].childCount = 2; -/* 32:47 */waypoints[291].children[0] = 98; -/* 32:47 */waypoints[291].children[1] = 292; -/* 32:47 */waypoints[292] = spawnstruct(); -/* 32:47 */waypoints[292].origin = (921.166, 103.956, 208.125); -/* 32:47 */waypoints[292].type = "stand"; -/* 32:47 */waypoints[292].childCount = 2; -/* 32:47 */waypoints[292].children[0] = 291; -/* 32:47 */waypoints[292].children[1] = 293; -/* 32:47 */waypoints[293] = spawnstruct(); -/* 32:47 */waypoints[293].origin = (1030.68, 162.674, 228.737); -/* 32:47 */waypoints[293].type = "stand"; -/* 32:47 */waypoints[293].childCount = 3; -/* 32:47 */waypoints[293].children[0] = 292; -/* 32:47 */waypoints[293].children[1] = 120; -/* 32:47 */waypoints[293].children[2] = 106; -/* 32:47 */waypoints[294] = spawnstruct(); -/* 32:47 */waypoints[294].origin = (-1810.88, 898.049, -27.6879); -/* 32:47 */waypoints[294].type = "crouch"; -/* 32:47 */waypoints[294].childCount = 1; -/* 32:47 */waypoints[294].children[0] = 28; -/* 32:47 */waypoints[294].angles = (5.31738, 18.5229, 0); -/* 32:47 */waypoints[295] = spawnstruct(); -/* 32:47 */waypoints[295].origin = (-1382.59, 1295.4, 25.146); -/* 32:47 */waypoints[295].type = "crouch"; -/* 32:47 */waypoints[295].childCount = 2; -/* 32:47 */waypoints[295].children[0] = 28; -/* 32:47 */waypoints[295].children[1] = 25; -/* 32:47 */waypoints[296] = spawnstruct(); -/* 32:47 */waypoints[296].origin = (-2267.61, -747.799, 143.04); -/* 32:47 */waypoints[296].type = "stand"; -/* 32:47 */waypoints[296].childCount = 3; -/* 32:47 */waypoints[296].children[0] = 269; -/* 32:47 */waypoints[296].children[1] = 297; -/* 32:47 */waypoints[296].children[2] = 299; -/* 32:47 */waypoints[297] = spawnstruct(); -/* 32:47 */waypoints[297].origin = (-2351.92, -508.791, 200.125); -/* 32:47 */waypoints[297].type = "stand"; -/* 32:47 */waypoints[297].childCount = 2; -/* 32:47 */waypoints[297].children[0] = 296; -/* 32:47 */waypoints[297].children[1] = 60; -/* 32:47 */waypoints[298] = spawnstruct(); -/* 32:47 */waypoints[298].origin = (-2108.68, -722.209, 112.125); -/* 32:47 */waypoints[298].type = "climb"; -/* 32:47 */waypoints[298].childCount = 2; -/* 32:47 */waypoints[298].children[0] = 272; -/* 32:47 */waypoints[298].children[1] = 299; -/* 32:47 */waypoints[298].angles = (12.2552, -179.918, 0); -/* 32:47 */waypoints[299] = spawnstruct(); -/* 32:47 */waypoints[299].origin = (-2125.7, -722.21, 158.125); -/* 32:47 */waypoints[299].type = "stand"; -/* 32:47 */waypoints[299].childCount = 2; -/* 32:47 */waypoints[299].children[0] = 298; -/* 32:47 */waypoints[299].children[1] = 296; -/* 32:47 */return waypoints; +/* 1:54 */waypoints = []; +/* 1:54 */waypoints[0] = spawnstruct(); +/* 1:54 */waypoints[0].origin = (274.125, 508.147, 208.125); +/* 1:54 */waypoints[0].type = "climb"; +/* 1:54 */waypoints[0].children[0] = 1; +/* 1:54 */waypoints[0].children[1] = 94; +/* 1:54 */waypoints[0].angles = (3.19031, 179.72, 0); +/* 1:54 */waypoints[1] = spawnstruct(); +/* 1:54 */waypoints[1].origin = (254.987, 490.885, 265.178); +/* 1:54 */waypoints[1].type = "stand"; +/* 1:54 */waypoints[1].children[0] = 0; +/* 1:54 */waypoints[1].children[1] = 2; +/* 1:54 */waypoints[2] = spawnstruct(); +/* 1:54 */waypoints[2].origin = (212.125, 490.913, 273.45); +/* 1:54 */waypoints[2].type = "climb"; +/* 1:54 */waypoints[2].children[0] = 1; +/* 1:54 */waypoints[2].children[1] = 3; +/* 1:54 */waypoints[2].angles = (4.42078, 179.896, 0); +/* 1:54 */waypoints[3] = spawnstruct(); +/* 1:54 */waypoints[3].origin = (196.098, 490.913, 352.125); +/* 1:54 */waypoints[3].type = "stand"; +/* 1:54 */waypoints[3].children[0] = 2; +/* 1:54 */waypoints[3].children[1] = 4; +/* 1:54 */waypoints[4] = spawnstruct(); +/* 1:54 */waypoints[4].origin = (173.875, 490.919, 320.125); +/* 1:54 */waypoints[4].type = "climb"; +/* 1:54 */waypoints[4].children[0] = 3; +/* 1:54 */waypoints[4].children[1] = 5; +/* 1:54 */waypoints[4].angles = (17.2473, -1.04919, 0); +/* 1:54 */waypoints[5] = spawnstruct(); +/* 1:54 */waypoints[5].origin = (17.3134, 491.224, 320.125); +/* 1:54 */waypoints[5].type = "stand"; +/* 1:54 */waypoints[5].children[0] = 4; +/* 1:54 */waypoints[5].children[1] = 6; +/* 1:54 */waypoints[5].children[2] = 17; +/* 1:54 */waypoints[5].children[3] = 279; +/* 1:54 */waypoints[6] = spawnstruct(); +/* 1:54 */waypoints[6].origin = (27.0443, 618.823, 320.625); +/* 1:54 */waypoints[6].type = "stand"; +/* 1:54 */waypoints[6].children[0] = 5; +/* 1:54 */waypoints[6].children[1] = 7; +/* 1:54 */waypoints[6].children[2] = 12; +/* 1:54 */waypoints[7] = spawnstruct(); +/* 1:54 */waypoints[7].origin = (64.6581, 742.875, 322.125); +/* 1:54 */waypoints[7].type = "climb"; +/* 1:54 */waypoints[7].children[0] = 6; +/* 1:54 */waypoints[7].children[1] = 8; +/* 1:54 */waypoints[7].children[2] = 280; +/* 1:54 */waypoints[7].angles = (17.0551, 89.3188, 0); +/* 1:54 */waypoints[8] = spawnstruct(); +/* 1:54 */waypoints[8].origin = (64.661, 760.034, 356.125); +/* 1:54 */waypoints[8].type = "stand"; +/* 1:54 */waypoints[8].children[0] = 7; +/* 1:54 */waypoints[8].children[1] = 9; +/* 1:54 */waypoints[9] = spawnstruct(); +/* 1:54 */waypoints[9].origin = (73.0425, 777.138, 322.125); +/* 1:54 */waypoints[9].type = "climb"; +/* 1:54 */waypoints[9].children[0] = 8; +/* 1:54 */waypoints[9].children[1] = 10; +/* 1:54 */waypoints[9].angles = (11.7102, -92.4609, 0); +/* 1:54 */waypoints[10] = spawnstruct(); +/* 1:54 */waypoints[10].origin = (73.5488, 905.462, 322.125); +/* 1:54 */waypoints[10].type = "stand"; +/* 1:54 */waypoints[10].children[0] = 9; +/* 1:54 */waypoints[10].children[1] = 11; +/* 1:54 */waypoints[11] = spawnstruct(); +/* 1:54 */waypoints[11].origin = (71.4178, 1189.72, 322.125); +/* 1:54 */waypoints[11].type = "crouch"; +/* 1:54 */waypoints[11].children[0] = 10; +/* 1:54 */waypoints[11].angles = (18.5986, -148.903, 0); +/* 1:54 */waypoints[12] = spawnstruct(); +/* 1:54 */waypoints[12].origin = (-134.681, 672.431, 320.125); +/* 1:54 */waypoints[12].type = "stand"; +/* 1:54 */waypoints[12].children[0] = 6; +/* 1:54 */waypoints[12].children[1] = 13; +/* 1:54 */waypoints[12].children[2] = 16; +/* 1:54 */waypoints[13] = spawnstruct(); +/* 1:54 */waypoints[13].origin = (-171.875, 672.452, 320.125); +/* 1:54 */waypoints[13].type = "climb"; +/* 1:54 */waypoints[13].children[0] = 12; +/* 1:54 */waypoints[13].children[1] = 14; +/* 1:54 */waypoints[13].angles = (25.7892, 178.693, 0); +/* 1:54 */waypoints[14] = spawnstruct(); +/* 1:54 */waypoints[14].origin = (-188.74, 672.458, 356.125); +/* 1:54 */waypoints[14].type = "stand"; +/* 1:54 */waypoints[14].children[0] = 13; +/* 1:54 */waypoints[14].children[1] = 15; +/* 1:54 */waypoints[15] = spawnstruct(); +/* 1:54 */waypoints[15].origin = (-302.975, 670.183, 344.143); +/* 1:54 */waypoints[15].type = "crouch"; +/* 1:54 */waypoints[15].children[0] = 14; +/* 1:54 */waypoints[15].angles = (26.4923, 178.693, 0); +/* 1:54 */waypoints[16] = spawnstruct(); +/* 1:54 */waypoints[16].origin = (-116.378, 639.139, 320.125); +/* 1:54 */waypoints[16].type = "claymore"; +/* 1:54 */waypoints[16].children[0] = 12; +/* 1:54 */waypoints[16].angles = (13.8361, -6.87195, 0); +/* 1:54 */waypoints[17] = spawnstruct(); +/* 1:54 */waypoints[17].origin = (-104.261, 484.913, 320.125); +/* 1:54 */waypoints[17].type = "stand"; +/* 1:54 */waypoints[17].children[0] = 5; +/* 1:54 */waypoints[17].children[1] = 18; +/* 1:54 */waypoints[18] = spawnstruct(); +/* 1:54 */waypoints[18].origin = (-238.436, 489.518, 248.125); +/* 1:54 */waypoints[18].type = "stand"; +/* 1:54 */waypoints[18].children[0] = 17; +/* 1:54 */waypoints[18].children[1] = 19; +/* 1:54 */waypoints[19] = spawnstruct(); +/* 1:54 */waypoints[19].origin = (-246.869, 652.549, 168.125); +/* 1:54 */waypoints[19].type = "stand"; +/* 1:54 */waypoints[19].children[0] = 18; +/* 1:54 */waypoints[19].children[1] = 20; +/* 1:54 */waypoints[19].children[2] = 21; +/* 1:54 */waypoints[20] = spawnstruct(); +/* 1:54 */waypoints[20].origin = (-101.312, 683.22, 168.125); +/* 1:54 */waypoints[20].type = "stand"; +/* 1:54 */waypoints[20].children[0] = 19; +/* 1:54 */waypoints[20].children[1] = 156; +/* 1:54 */waypoints[21] = spawnstruct(); +/* 1:54 */waypoints[21].origin = (-443.473, 662.611, 100.125); +/* 1:54 */waypoints[21].type = "stand"; +/* 1:54 */waypoints[21].children[0] = 19; +/* 1:54 */waypoints[21].children[1] = 22; +/* 1:54 */waypoints[22] = spawnstruct(); +/* 1:54 */waypoints[22].origin = (-677.535, 784.091, 86.1192); +/* 1:54 */waypoints[22].type = "stand"; +/* 1:54 */waypoints[22].children[0] = 21; +/* 1:54 */waypoints[22].children[1] = 23; +/* 1:54 */waypoints[22].children[2] = 161; +/* 1:54 */waypoints[23] = spawnstruct(); +/* 1:54 */waypoints[23].origin = (-986.45, 1007.4, 31.5662); +/* 1:54 */waypoints[23].type = "stand"; +/* 1:54 */waypoints[23].children[0] = 22; +/* 1:54 */waypoints[23].children[1] = 24; +/* 1:54 */waypoints[23].children[2] = 25; +/* 1:54 */waypoints[24] = spawnstruct(); +/* 1:54 */waypoints[24].origin = (-660.472, 1237.22, 54.9324); +/* 1:54 */waypoints[24].type = "stand"; +/* 1:54 */waypoints[24].children[0] = 23; +/* 1:54 */waypoints[24].children[1] = 83; +/* 1:54 */waypoints[24].children[2] = 85; +/* 1:54 */waypoints[25] = spawnstruct(); +/* 1:54 */waypoints[25].origin = (-1247.54, 1030.34, 18.7169); +/* 1:54 */waypoints[25].type = "stand"; +/* 1:54 */waypoints[25].children[0] = 23; +/* 1:54 */waypoints[25].children[1] = 26; +/* 1:54 */waypoints[25].children[2] = 27; +/* 1:54 */waypoints[25].children[3] = 28; +/* 1:54 */waypoints[25].children[4] = 295; +/* 1:54 */waypoints[26] = spawnstruct(); +/* 1:54 */waypoints[26].origin = (-1242.29, 835.146, 43.2297); +/* 1:54 */waypoints[26].type = "crouch"; +/* 1:54 */waypoints[26].children[0] = 25; +/* 1:54 */waypoints[26].angles = (10.1501, 89.599, 0); +/* 1:54 */waypoints[27] = spawnstruct(); +/* 1:54 */waypoints[27].origin = (-1239.13, 1242.38, 53.1472); +/* 1:54 */waypoints[27].type = "crouch"; +/* 1:54 */waypoints[27].children[0] = 25; +/* 1:54 */waypoints[27].angles = (15.9454, -93.9386, 0); +/* 1:54 */waypoints[28] = spawnstruct(); +/* 1:54 */waypoints[28].origin = (-1467.26, 1055.12, 9.69966); +/* 1:54 */waypoints[28].type = "stand"; +/* 1:54 */waypoints[28].children[0] = 25; +/* 1:54 */waypoints[28].children[1] = 29; +/* 1:54 */waypoints[28].children[2] = 294; +/* 1:54 */waypoints[28].children[3] = 295; +/* 1:54 */waypoints[28].children[4] = 33; +/* 1:54 */waypoints[29] = spawnstruct(); +/* 1:54 */waypoints[29].origin = (-1662.44, 1169.64, 33.7564); +/* 1:54 */waypoints[29].type = "stand"; +/* 1:54 */waypoints[29].children[0] = 28; +/* 1:54 */waypoints[29].children[1] = 30; +/* 1:54 */waypoints[30] = spawnstruct(); +/* 1:54 */waypoints[30].origin = (-1919.46, 1371.78, 51.3662); +/* 1:54 */waypoints[30].type = "stand"; +/* 1:54 */waypoints[30].children[0] = 29; +/* 1:54 */waypoints[30].children[1] = 31; +/* 1:54 */waypoints[30].children[2] = 32; +/* 1:54 */waypoints[31] = spawnstruct(); +/* 1:54 */waypoints[31].origin = (-2063.61, 1519.6, 48.125); +/* 1:54 */waypoints[31].type = "crouch"; +/* 1:54 */waypoints[31].children[0] = 30; +/* 1:54 */waypoints[31].angles = (10.7654, -51.7291, 0); +/* 1:54 */waypoints[32] = spawnstruct(); +/* 1:54 */waypoints[32].origin = (-1955.52, 1552.15, 128.125); +/* 1:54 */waypoints[32].type = "stand"; +/* 1:54 */waypoints[32].children[0] = 30; +/* 1:54 */waypoints[32].children[1] = 33; +/* 1:54 */waypoints[33] = spawnstruct(); +/* 1:54 */waypoints[33].origin = (-2125.41, 1461.87, 200.125); +/* 1:54 */waypoints[33].type = "stand"; +/* 1:54 */waypoints[33].children[0] = 32; +/* 1:54 */waypoints[33].children[1] = 34; +/* 1:54 */waypoints[33].children[2] = 44; +/* 1:54 */waypoints[33].children[3] = 28; +/* 1:54 */waypoints[34] = spawnstruct(); +/* 1:54 */waypoints[34].origin = (-2120.17, 1299, 200.125); +/* 1:54 */waypoints[34].type = "stand"; +/* 1:54 */waypoints[34].children[0] = 33; +/* 1:54 */waypoints[34].children[1] = 35; +/* 1:54 */waypoints[35] = spawnstruct(); +/* 1:54 */waypoints[35].origin = (-2050.7, 1170.51, 200.125); +/* 1:54 */waypoints[35].type = "stand"; +/* 1:54 */waypoints[35].children[0] = 34; +/* 1:54 */waypoints[35].children[1] = 36; +/* 1:54 */waypoints[35].children[2] = 37; +/* 1:54 */waypoints[35].children[3] = 72; +/* 1:54 */waypoints[35].children[4] = 77; +/* 1:54 */waypoints[36] = spawnstruct(); +/* 1:54 */waypoints[36].origin = (-2244.1, 1157.56, 200.125); +/* 1:54 */waypoints[36].type = "crouch"; +/* 1:54 */waypoints[36].children[0] = 35; +/* 1:54 */waypoints[36].angles = (16.0333, 8.94287, 0); +/* 1:54 */waypoints[37] = spawnstruct(); +/* 1:54 */waypoints[37].origin = (-1905.17, 1172.86, 200.125); +/* 1:54 */waypoints[37].type = "stand"; +/* 1:54 */waypoints[37].children[0] = 35; +/* 1:54 */waypoints[37].children[1] = 38; +/* 1:54 */waypoints[37].children[2] = 39; +/* 1:54 */waypoints[37].children[3] = 76; +/* 1:54 */waypoints[38] = spawnstruct(); +/* 1:54 */waypoints[38].origin = (-1933.37, 1119.12, 200.125); +/* 1:54 */waypoints[38].type = "claymore"; +/* 1:54 */waypoints[38].children[0] = 37; +/* 1:54 */waypoints[38].angles = (14.0997, 150.172, 0); +/* 1:54 */waypoints[39] = spawnstruct(); +/* 1:54 */waypoints[39].origin = (-1813.8, 1260.04, 200.125); +/* 1:54 */waypoints[39].type = "stand"; +/* 1:54 */waypoints[39].children[0] = 37; +/* 1:54 */waypoints[39].children[1] = 40; +/* 1:54 */waypoints[40] = spawnstruct(); +/* 1:54 */waypoints[40].origin = (-1674.39, 1444.7, 200.125); +/* 1:54 */waypoints[40].type = "stand"; +/* 1:54 */waypoints[40].children[0] = 39; +/* 1:54 */waypoints[40].children[1] = 41; +/* 1:54 */waypoints[40].children[2] = 42; +/* 1:54 */waypoints[40].children[3] = 45; +/* 1:54 */waypoints[41] = spawnstruct(); +/* 1:54 */waypoints[41].origin = (-1584.3, 1577.72, 200.125); +/* 1:54 */waypoints[41].type = "crouch"; +/* 1:54 */waypoints[41].children[0] = 40; +/* 1:54 */waypoints[41].angles = (14.0118, -135.813, 0); +/* 1:54 */waypoints[42] = spawnstruct(); +/* 1:54 */waypoints[42].origin = (-1774.71, 1601.75, 200.125); +/* 1:54 */waypoints[42].type = "stand"; +/* 1:54 */waypoints[42].children[0] = 40; +/* 1:54 */waypoints[42].children[1] = 43; +/* 1:54 */waypoints[43] = spawnstruct(); +/* 1:54 */waypoints[43].origin = (-2048.46, 1741.24, 239.615); +/* 1:54 */waypoints[43].type = "stand"; +/* 1:54 */waypoints[43].children[0] = 42; +/* 1:54 */waypoints[43].children[1] = 44; +/* 1:54 */waypoints[44] = spawnstruct(); +/* 1:54 */waypoints[44].origin = (-2235.12, 1601.79, 200.125); +/* 1:54 */waypoints[44].type = "stand"; +/* 1:54 */waypoints[44].children[0] = 43; +/* 1:54 */waypoints[44].children[1] = 33; +/* 1:54 */waypoints[45] = spawnstruct(); +/* 1:54 */waypoints[45].origin = (-1442.22, 1456.48, 205.189); +/* 1:54 */waypoints[45].type = "stand"; +/* 1:54 */waypoints[45].children[0] = 40; +/* 1:54 */waypoints[45].children[1] = 46; +/* 1:54 */waypoints[46] = spawnstruct(); +/* 1:54 */waypoints[46].origin = (-1116.27, 1446.53, 236.37); +/* 1:54 */waypoints[46].type = "stand"; +/* 1:54 */waypoints[46].children[0] = 45; +/* 1:54 */waypoints[46].children[1] = 47; +/* 1:54 */waypoints[46].children[2] = 81; +/* 1:54 */waypoints[46].children[3] = 82; +/* 1:54 */waypoints[47] = spawnstruct(); +/* 1:54 */waypoints[47].origin = (-1095.75, 1209.61, 246.776); +/* 1:54 */waypoints[47].type = "stand"; +/* 1:54 */waypoints[47].children[0] = 46; +/* 1:54 */waypoints[47].children[1] = 48; +/* 1:54 */waypoints[48] = spawnstruct(); +/* 1:54 */waypoints[48].origin = (-1093.37, 848.261, 292.768); +/* 1:54 */waypoints[48].type = "stand"; +/* 1:54 */waypoints[48].children[0] = 47; +/* 1:54 */waypoints[48].children[1] = 49; +/* 1:54 */waypoints[49] = spawnstruct(); +/* 1:54 */waypoints[49].origin = (-1090.85, 554.352, 304.125); +/* 1:54 */waypoints[49].type = "stand"; +/* 1:54 */waypoints[49].children[0] = 48; +/* 1:54 */waypoints[49].children[1] = 50; +/* 1:54 */waypoints[50] = spawnstruct(); +/* 1:54 */waypoints[50].origin = (-1090.8, 481.513, 304.125); +/* 1:54 */waypoints[50].type = "stand"; +/* 1:54 */waypoints[50].children[0] = 49; +/* 1:54 */waypoints[50].children[1] = 51; +/* 1:54 */waypoints[50].children[2] = 275; +/* 1:54 */waypoints[51] = spawnstruct(); +/* 1:54 */waypoints[51].origin = (-1191.84, 476.016, 304.125); +/* 1:54 */waypoints[51].type = "climb"; +/* 1:54 */waypoints[51].children[0] = 50; +/* 1:54 */waypoints[51].children[1] = 52; +/* 1:54 */waypoints[51].angles = (15.6982, 179.824, 0); +/* 1:54 */waypoints[52] = spawnstruct(); +/* 1:54 */waypoints[52].origin = (-1219.52, 476.823, 336.125); +/* 1:54 */waypoints[52].type = "stand"; +/* 1:54 */waypoints[52].children[0] = 51; +/* 1:54 */waypoints[52].children[1] = 53; +/* 1:54 */waypoints[53] = spawnstruct(); +/* 1:54 */waypoints[53].origin = (-1244.15, 484.429, 168.125); +/* 1:54 */waypoints[53].type = "climb"; +/* 1:54 */waypoints[53].children[0] = 52; +/* 1:54 */waypoints[53].children[1] = 54; +/* 1:54 */waypoints[53].angles = (-50.9229, -1.12061, 0); +/* 1:54 */waypoints[54] = spawnstruct(); +/* 1:54 */waypoints[54].origin = (-1364.94, 474.427, 168.004); +/* 1:54 */waypoints[54].type = "stand"; +/* 1:54 */waypoints[54].children[0] = 53; +/* 1:54 */waypoints[54].children[1] = 55; +/* 1:54 */waypoints[54].children[2] = 64; +/* 1:54 */waypoints[54].children[3] = 65; +/* 1:54 */waypoints[54].children[4] = 66; +/* 1:54 */waypoints[54].children[5] = 67; +/* 1:54 */waypoints[55] = spawnstruct(); +/* 1:54 */waypoints[55].origin = (-1467.72, 274.409, 168.125); +/* 1:54 */waypoints[55].type = "stand"; +/* 1:54 */waypoints[55].children[0] = 54; +/* 1:54 */waypoints[55].children[1] = 56; +/* 1:54 */waypoints[56] = spawnstruct(); +/* 1:54 */waypoints[56].origin = (-1537.02, 99.5108, 168.125); +/* 1:54 */waypoints[56].type = "stand"; +/* 1:54 */waypoints[56].children[0] = 55; +/* 1:54 */waypoints[56].children[1] = 57; +/* 1:54 */waypoints[56].children[2] = 58; +/* 1:54 */waypoints[57] = spawnstruct(); +/* 1:54 */waypoints[57].origin = (-1445.13, -214.138, 168.125); +/* 1:54 */waypoints[57].type = "stand"; +/* 1:54 */waypoints[57].children[0] = 56; +/* 1:54 */waypoints[57].children[1] = 184; +/* 1:54 */waypoints[57].children[2] = 185; +/* 1:54 */waypoints[58] = spawnstruct(); +/* 1:54 */waypoints[58].origin = (-1889.85, 69.8914, 188.125); +/* 1:54 */waypoints[58].type = "stand"; +/* 1:54 */waypoints[58].children[0] = 56; +/* 1:54 */waypoints[58].children[1] = 59; +/* 1:54 */waypoints[58].children[2] = 274; +/* 1:54 */waypoints[59] = spawnstruct(); +/* 1:54 */waypoints[59].origin = (-2072.83, -280.958, 188.125); +/* 1:54 */waypoints[59].type = "stand"; +/* 1:54 */waypoints[59].children[0] = 58; +/* 1:54 */waypoints[59].children[1] = 60; +/* 1:54 */waypoints[59].children[2] = 273; +/* 1:54 */waypoints[59].children[3] = 274; +/* 1:54 */waypoints[60] = spawnstruct(); +/* 1:54 */waypoints[60].origin = (-2451.8, -328.837, 188.165); +/* 1:54 */waypoints[60].type = "stand"; +/* 1:54 */waypoints[60].children[0] = 59; +/* 1:54 */waypoints[60].children[1] = 61; +/* 1:54 */waypoints[60].children[2] = 203; +/* 1:54 */waypoints[60].children[3] = 297; +/* 1:54 */waypoints[60].children[4] = 273; +/* 1:54 */waypoints[61] = spawnstruct(); +/* 1:54 */waypoints[61].origin = (-2543.37, 95.6241, 188.294); +/* 1:54 */waypoints[61].type = "stand"; +/* 1:54 */waypoints[61].children[0] = 60; +/* 1:54 */waypoints[61].children[1] = 62; +/* 1:54 */waypoints[62] = spawnstruct(); +/* 1:54 */waypoints[62].origin = (-2433.08, 523.439, 188.125); +/* 1:54 */waypoints[62].type = "stand"; +/* 1:54 */waypoints[62].children[0] = 61; +/* 1:54 */waypoints[62].children[1] = 63; +/* 1:54 */waypoints[63] = spawnstruct(); +/* 1:54 */waypoints[63].origin = (-1992.49, 505.632, 189.369); +/* 1:54 */waypoints[63].type = "stand"; +/* 1:54 */waypoints[63].children[0] = 62; +/* 1:54 */waypoints[63].children[1] = 64; +/* 1:54 */waypoints[63].children[2] = 69; +/* 1:54 */waypoints[63].children[3] = 274; +/* 1:54 */waypoints[64] = spawnstruct(); +/* 1:54 */waypoints[64].origin = (-1641.45, 675.679, 220.125); +/* 1:54 */waypoints[64].type = "stand"; +/* 1:54 */waypoints[64].children[0] = 63; +/* 1:54 */waypoints[64].children[1] = 54; +/* 1:54 */waypoints[64].children[2] = 67; +/* 1:54 */waypoints[65] = spawnstruct(); +/* 1:54 */waypoints[65].origin = (-1240.13, 365.125, 168.125); +/* 1:54 */waypoints[65].type = "crouch"; +/* 1:54 */waypoints[65].children[0] = 54; +/* 1:54 */waypoints[65].angles = (10.3149, 132.281, 0); +/* 1:54 */waypoints[66] = spawnstruct(); +/* 1:54 */waypoints[66].origin = (-1240.12, 564.875, 168.125); +/* 1:54 */waypoints[66].type = "crouch"; +/* 1:54 */waypoints[66].children[0] = 54; +/* 1:54 */waypoints[66].angles = (9.7876, -150.672, 0); +/* 1:54 */waypoints[67] = spawnstruct(); +/* 1:54 */waypoints[67].origin = (-1405.17, 717.823, 168.19); +/* 1:54 */waypoints[67].type = "stand"; +/* 1:54 */waypoints[67].children[0] = 54; +/* 1:54 */waypoints[67].children[1] = 68; +/* 1:54 */waypoints[67].children[2] = 64; +/* 1:54 */waypoints[68] = spawnstruct(); +/* 1:54 */waypoints[68].origin = (-1266.13, 740.147, 168.895); +/* 1:54 */waypoints[68].type = "crouch"; +/* 1:54 */waypoints[68].children[0] = 67; +/* 1:54 */waypoints[68].angles = (8.02979, -168.503, 0); +/* 1:54 */waypoints[69] = spawnstruct(); +/* 1:54 */waypoints[69].origin = (-1960.28, 728.521, 192.044); +/* 1:54 */waypoints[69].type = "stand"; +/* 1:54 */waypoints[69].children[0] = 63; +/* 1:54 */waypoints[69].children[1] = 70; +/* 1:54 */waypoints[70] = spawnstruct(); +/* 1:54 */waypoints[70].origin = (-1970.28, 939.679, 192.746); +/* 1:54 */waypoints[70].type = "stand"; +/* 1:54 */waypoints[70].children[0] = 69; +/* 1:54 */waypoints[70].children[1] = 71; +/* 1:54 */waypoints[70].children[2] = 73; +/* 1:54 */waypoints[70].children[3] = 80; +/* 1:54 */waypoints[71] = spawnstruct(); +/* 1:54 */waypoints[71].origin = (-1976.85, 1012.92, 200.125); +/* 1:54 */waypoints[71].type = "stand"; +/* 1:54 */waypoints[71].children[0] = 70; +/* 1:54 */waypoints[71].children[1] = 72; +/* 1:54 */waypoints[72] = spawnstruct(); +/* 1:54 */waypoints[72].origin = (-2027.63, 1100.88, 200.125); +/* 1:54 */waypoints[72].type = "stand"; +/* 1:54 */waypoints[72].children[0] = 71; +/* 1:54 */waypoints[72].children[1] = 35; +/* 1:54 */waypoints[73] = spawnstruct(); +/* 1:54 */waypoints[73].origin = (-1867.16, 958.385, 191.302); +/* 1:54 */waypoints[73].type = "stand"; +/* 1:54 */waypoints[73].children[0] = 70; +/* 1:54 */waypoints[73].children[1] = 74; +/* 1:54 */waypoints[74] = spawnstruct(); +/* 1:54 */waypoints[74].origin = (-1873.26, 1007.25, 200.04); +/* 1:54 */waypoints[74].type = "climb"; +/* 1:54 */waypoints[74].children[0] = 73; +/* 1:54 */waypoints[74].children[1] = 75; +/* 1:54 */waypoints[74].angles = (15.5334, 91.225, 0); +/* 1:54 */waypoints[75] = spawnstruct(); +/* 1:54 */waypoints[75].origin = (-1873.27, 1066.24, 236.125); +/* 1:54 */waypoints[75].type = "stand"; +/* 1:54 */waypoints[75].children[0] = 74; +/* 1:54 */waypoints[75].children[1] = 76; +/* 1:54 */waypoints[76] = spawnstruct(); +/* 1:54 */waypoints[76].origin = (-1873.94, 1123.17, 200.125); +/* 1:54 */waypoints[76].type = "climb"; +/* 1:54 */waypoints[76].children[0] = 75; +/* 1:54 */waypoints[76].children[1] = 37; +/* 1:54 */waypoints[76].angles = (10.26, -88.8025, 0); +/* 1:54 */waypoints[77] = spawnstruct(); +/* 1:54 */waypoints[77].origin = (-2129.51, 1122.93, 200.125); +/* 1:54 */waypoints[77].type = "climb"; +/* 1:54 */waypoints[77].children[0] = 35; +/* 1:54 */waypoints[77].children[1] = 78; +/* 1:54 */waypoints[77].angles = (14.9347, -92.3126, 0); +/* 1:54 */waypoints[78] = spawnstruct(); +/* 1:54 */waypoints[78].origin = (-2129.53, 1073.06, 236.125); +/* 1:54 */waypoints[78].type = "stand"; +/* 1:54 */waypoints[78].children[0] = 77; +/* 1:54 */waypoints[78].children[1] = 79; +/* 1:54 */waypoints[79] = spawnstruct(); +/* 1:54 */waypoints[79].origin = (-2129.95, 1007.46, 199.986); +/* 1:54 */waypoints[79].type = "climb"; +/* 1:54 */waypoints[79].children[0] = 78; +/* 1:54 */waypoints[79].children[1] = 80; +/* 1:54 */waypoints[79].angles = (8.85925, 88.8464, 0); +/* 1:54 */waypoints[80] = spawnstruct(); +/* 1:54 */waypoints[80].origin = (-2136.88, 907.407, 192.48); +/* 1:54 */waypoints[80].type = "stand"; +/* 1:54 */waypoints[80].children[0] = 79; +/* 1:54 */waypoints[80].children[1] = 70; +/* 1:54 */waypoints[81] = spawnstruct(); +/* 1:54 */waypoints[81].origin = (-993.125, 1531.86, 237.701); +/* 1:54 */waypoints[81].type = "crouch"; +/* 1:54 */waypoints[81].children[0] = 46; +/* 1:54 */waypoints[81].angles = (15.2698, -132.55, 0); +/* 1:54 */waypoints[82] = spawnstruct(); +/* 1:54 */waypoints[82].origin = (-1014.69, 1362.58, 238.36); +/* 1:54 */waypoints[82].type = "stand"; +/* 1:54 */waypoints[82].children[0] = 46; +/* 1:54 */waypoints[82].children[1] = 83; +/* 1:54 */waypoints[83] = spawnstruct(); +/* 1:54 */waypoints[83].origin = (-670.348, 1354.02, 72.125); +/* 1:54 */waypoints[83].type = "stand"; +/* 1:54 */waypoints[83].children[0] = 82; +/* 1:54 */waypoints[83].children[1] = 84; +/* 1:54 */waypoints[83].children[2] = 24; +/* 1:54 */waypoints[84] = spawnstruct(); +/* 1:54 */waypoints[84].origin = (-775.694, 1297.13, 114.516); +/* 1:54 */waypoints[84].type = "claymore"; +/* 1:54 */waypoints[84].children[0] = 83; +/* 1:54 */waypoints[84].angles = (32.3151, 0.12085, 0); +/* 1:54 */waypoints[85] = spawnstruct(); +/* 1:54 */waypoints[85].origin = (-409.769, 1181.6, 68.6791); +/* 1:54 */waypoints[85].type = "stand"; +/* 1:54 */waypoints[85].children[0] = 24; +/* 1:54 */waypoints[85].children[1] = 86; +/* 1:54 */waypoints[86] = spawnstruct(); +/* 1:54 */waypoints[86].origin = (-165.999, 1178.28, 77.905); +/* 1:54 */waypoints[86].type = "stand"; +/* 1:54 */waypoints[86].children[0] = 85; +/* 1:54 */waypoints[86].children[1] = 87; +/* 1:54 */waypoints[86].children[2] = 88; +/* 1:54 */waypoints[87] = spawnstruct(); +/* 1:54 */waypoints[87].origin = (-141.099, 1305, 112.125); +/* 1:54 */waypoints[87].type = "crouch"; +/* 1:54 */waypoints[87].children[0] = 86; +/* 1:54 */waypoints[87].angles = (11.7542, -92.6257, 0); +/* 1:54 */waypoints[88] = spawnstruct(); +/* 1:54 */waypoints[88].origin = (54.1837, 1154.28, 85.3308); +/* 1:54 */waypoints[88].type = "stand"; +/* 1:54 */waypoints[88].children[0] = 86; +/* 1:54 */waypoints[88].children[1] = 89; +/* 1:54 */waypoints[89] = spawnstruct(); +/* 1:54 */waypoints[89].origin = (149.727, 1156.76, 89.7882); +/* 1:54 */waypoints[89].type = "stand"; +/* 1:54 */waypoints[89].children[0] = 88; +/* 1:54 */waypoints[89].children[1] = 90; +/* 1:54 */waypoints[89].children[2] = 91; +/* 1:54 */waypoints[89].children[3] = 92; +/* 1:54 */waypoints[90] = spawnstruct(); +/* 1:54 */waypoints[90].origin = (132.125, 1260.88, 88.9296); +/* 1:54 */waypoints[90].type = "claymore"; +/* 1:54 */waypoints[90].children[0] = 89; +/* 1:54 */waypoints[90].angles = (8.06824, -87.9675, 0); +/* 1:54 */waypoints[91] = spawnstruct(); +/* 1:54 */waypoints[91].origin = (137.236, 1036.16, 91.1789); +/* 1:54 */waypoints[91].type = "claymore"; +/* 1:54 */waypoints[91].children[0] = 89; +/* 1:54 */waypoints[91].children[1] = 147; +/* 1:54 */waypoints[91].angles = (12.8967, 86.3855, 0); +/* 1:54 */waypoints[92] = spawnstruct(); +/* 1:54 */waypoints[92].origin = (383.158, 1054.73, 122.632); +/* 1:54 */waypoints[92].type = "stand"; +/* 1:54 */waypoints[92].children[0] = 89; +/* 1:54 */waypoints[92].children[1] = 93; +/* 1:54 */waypoints[92].children[2] = 137; +/* 1:54 */waypoints[92].children[3] = 147; +/* 1:54 */waypoints[92].children[4] = 146; +/* 1:54 */waypoints[93] = spawnstruct(); +/* 1:54 */waypoints[93].origin = (308.794, 737.761, 152.125); +/* 1:54 */waypoints[93].type = "stand"; +/* 1:54 */waypoints[93].children[0] = 92; +/* 1:54 */waypoints[93].children[1] = 94; +/* 1:54 */waypoints[93].children[2] = 146; +/* 1:54 */waypoints[93].children[3] = 147; +/* 1:54 */waypoints[94] = spawnstruct(); +/* 1:54 */waypoints[94].origin = (344.198, 504.627, 208.125); +/* 1:54 */waypoints[94].type = "stand"; +/* 1:54 */waypoints[94].children[0] = 93; +/* 1:54 */waypoints[94].children[1] = 0; +/* 1:54 */waypoints[94].children[2] = 95; +/* 1:54 */waypoints[95] = spawnstruct(); +/* 1:54 */waypoints[95].origin = (262.72, 357.555, 208.125); +/* 1:54 */waypoints[95].type = "stand"; +/* 1:54 */waypoints[95].children[0] = 94; +/* 1:54 */waypoints[95].children[1] = 96; +/* 1:54 */waypoints[96] = spawnstruct(); +/* 1:54 */waypoints[96].origin = (261.378, 243.971, 208.125); +/* 1:54 */waypoints[96].type = "stand"; +/* 1:54 */waypoints[96].children[0] = 95; +/* 1:54 */waypoints[96].children[1] = 97; +/* 1:54 */waypoints[96].children[2] = 148; +/* 1:54 */waypoints[97] = spawnstruct(); +/* 1:54 */waypoints[97].origin = (394.31, 220.458, 208.125); +/* 1:54 */waypoints[97].type = "stand"; +/* 1:54 */waypoints[97].children[0] = 96; +/* 1:54 */waypoints[97].children[1] = 98; +/* 1:54 */waypoints[98] = spawnstruct(); +/* 1:54 */waypoints[98].origin = (417.727, 87.1448, 208.125); +/* 1:54 */waypoints[98].type = "stand"; +/* 1:54 */waypoints[98].children[0] = 97; +/* 1:54 */waypoints[98].children[1] = 99; +/* 1:54 */waypoints[98].children[2] = 291; +/* 1:54 */waypoints[99] = spawnstruct(); +/* 1:54 */waypoints[99].origin = (417.741, -59.3928, 248.125); +/* 1:54 */waypoints[99].type = "stand"; +/* 1:54 */waypoints[99].children[0] = 98; +/* 1:54 */waypoints[99].children[1] = 100; +/* 1:54 */waypoints[99].children[2] = 101; +/* 1:54 */waypoints[100] = spawnstruct(); +/* 1:54 */waypoints[100].origin = (464.125, -43.1455, 248.125); +/* 1:54 */waypoints[100].type = "claymore"; +/* 1:54 */waypoints[100].children[0] = 99; +/* 1:54 */waypoints[100].angles = (23.7073, -178.627, 0); +/* 1:54 */waypoints[101] = spawnstruct(); +/* 1:54 */waypoints[101].origin = (563.644, -101.521, 248.125); +/* 1:54 */waypoints[101].type = "stand"; +/* 1:54 */waypoints[101].children[0] = 99; +/* 1:54 */waypoints[101].children[1] = 102; +/* 1:54 */waypoints[102] = spawnstruct(); +/* 1:54 */waypoints[102].origin = (772.628, -101.494, 248.125); +/* 1:54 */waypoints[102].type = "stand"; +/* 1:54 */waypoints[102].children[0] = 101; +/* 1:54 */waypoints[102].children[1] = 103; +/* 1:54 */waypoints[102].children[2] = 112; +/* 1:54 */waypoints[103] = spawnstruct(); +/* 1:54 */waypoints[103].origin = (924.211, -120.871, 248.125); +/* 1:54 */waypoints[103].type = "stand"; +/* 1:54 */waypoints[103].children[0] = 102; +/* 1:54 */waypoints[103].children[1] = 104; +/* 1:54 */waypoints[103].children[2] = 111; +/* 1:54 */waypoints[104] = spawnstruct(); +/* 1:54 */waypoints[104].origin = (993.873, -46.7099, 248.125); +/* 1:54 */waypoints[104].type = "climb"; +/* 1:54 */waypoints[104].children[0] = 103; +/* 1:54 */waypoints[104].children[1] = 105; +/* 1:54 */waypoints[104].angles = (27.1515, 1.31287, 0); +/* 1:54 */waypoints[105] = spawnstruct(); +/* 1:54 */waypoints[105].origin = (1012.11, -46.9633, 280.125); +/* 1:54 */waypoints[105].type = "stand"; +/* 1:54 */waypoints[105].children[0] = 104; +/* 1:54 */waypoints[105].children[1] = 106; +/* 1:54 */waypoints[106] = spawnstruct(); +/* 1:54 */waypoints[106].origin = (1032.13, -56.5955, 230.064); +/* 1:54 */waypoints[106].type = "climb"; +/* 1:54 */waypoints[106].children[0] = 105; +/* 1:54 */waypoints[106].children[1] = 107; +/* 1:54 */waypoints[106].children[2] = 293; +/* 1:54 */waypoints[106].angles = (2.84973, -178.484, 0); +/* 1:54 */waypoints[107] = spawnstruct(); +/* 1:54 */waypoints[107].origin = (1059.15, -221.774, 232.125); +/* 1:54 */waypoints[107].type = "stand"; +/* 1:54 */waypoints[107].children[0] = 106; +/* 1:54 */waypoints[107].children[1] = 108; +/* 1:54 */waypoints[107].children[2] = 109; +/* 1:54 */waypoints[107].children[3] = 117; +/* 1:54 */waypoints[108] = spawnstruct(); +/* 1:54 */waypoints[108].origin = (1060.25, -412.076, 232.125); +/* 1:54 */waypoints[108].type = "stand"; +/* 1:54 */waypoints[108].children[0] = 107; +/* 1:54 */waypoints[108].children[1] = 113; +/* 1:54 */waypoints[108].children[2] = 288; +/* 1:54 */waypoints[108].children[3] = 117; +/* 1:54 */waypoints[109] = spawnstruct(); +/* 1:54 */waypoints[109].origin = (1032.34, -216.529, 232.125); +/* 1:54 */waypoints[109].type = "climb"; +/* 1:54 */waypoints[109].children[0] = 107; +/* 1:54 */waypoints[109].children[1] = 110; +/* 1:54 */waypoints[109].angles = (7.34863, 178.885, 0); +/* 1:54 */waypoints[110] = spawnstruct(); +/* 1:54 */waypoints[110].origin = (1016.03, -216.529, 280.124); +/* 1:54 */waypoints[110].type = "stand"; +/* 1:54 */waypoints[110].children[0] = 109; +/* 1:54 */waypoints[110].children[1] = 111; +/* 1:54 */waypoints[111] = spawnstruct(); +/* 1:54 */waypoints[111].origin = (993.861, -217.628, 248.125); +/* 1:54 */waypoints[111].type = "climb"; +/* 1:54 */waypoints[111].children[0] = 110; +/* 1:54 */waypoints[111].children[1] = 103; +/* 1:54 */waypoints[111].angles = (10.3369, -2.71912, 0); +/* 1:54 */waypoints[112] = spawnstruct(); +/* 1:54 */waypoints[112].origin = (745.113, -212.155, 248.125); +/* 1:54 */waypoints[112].type = "stand"; +/* 1:54 */waypoints[112].children[0] = 102; +/* 1:54 */waypoints[112].children[1] = 113; +/* 1:54 */waypoints[113] = spawnstruct(); +/* 1:54 */waypoints[113].origin = (745.029, -404.927, 166.125); +/* 1:54 */waypoints[113].type = "stand"; +/* 1:54 */waypoints[113].children[0] = 112; +/* 1:54 */waypoints[113].children[1] = 108; +/* 1:54 */waypoints[113].children[2] = 114; +/* 1:54 */waypoints[114] = spawnstruct(); +/* 1:54 */waypoints[114].origin = (438.699, -407.297, 167.125); +/* 1:54 */waypoints[114].type = "stand"; +/* 1:54 */waypoints[114].children[0] = 113; +/* 1:54 */waypoints[114].children[1] = 115; +/* 1:54 */waypoints[114].children[2] = 224; +/* 1:54 */waypoints[115] = spawnstruct(); +/* 1:54 */waypoints[115].origin = (59.3499, -350.625, 170.125); +/* 1:54 */waypoints[115].type = "stand"; +/* 1:54 */waypoints[115].children[0] = 114; +/* 1:54 */waypoints[115].children[1] = 151; +/* 1:54 */waypoints[116] = spawnstruct(); +/* 1:54 */waypoints[116].origin = (18.1194, 149.725, 170.125); +/* 1:54 */waypoints[116].type = "stand"; +/* 1:54 */waypoints[116].children[0] = 149; +/* 1:54 */waypoints[116].children[1] = 152; +/* 1:54 */waypoints[117] = spawnstruct(); +/* 1:54 */waypoints[117].origin = (1237.19, -154.42, 230.982); +/* 1:54 */waypoints[117].type = "stand"; +/* 1:54 */waypoints[117].children[0] = 107; +/* 1:54 */waypoints[117].children[1] = 118; +/* 1:54 */waypoints[117].children[2] = 124; +/* 1:54 */waypoints[117].children[3] = 108; +/* 1:54 */waypoints[118] = spawnstruct(); +/* 1:54 */waypoints[118].origin = (1237.25, -2.83976, 230.98); +/* 1:54 */waypoints[118].type = "stand"; +/* 1:54 */waypoints[118].children[0] = 117; +/* 1:54 */waypoints[118].children[1] = 119; +/* 1:54 */waypoints[118].children[2] = 123; +/* 1:54 */waypoints[119] = spawnstruct(); +/* 1:54 */waypoints[119].origin = (1237.37, 140.805, 230.936); +/* 1:54 */waypoints[119].type = "stand"; +/* 1:54 */waypoints[119].children[0] = 118; +/* 1:54 */waypoints[119].children[1] = 120; +/* 1:54 */waypoints[119].children[2] = 122; +/* 1:54 */waypoints[120] = spawnstruct(); +/* 1:54 */waypoints[120].origin = (1237.51, 298.876, 230.125); +/* 1:54 */waypoints[120].type = "stand"; +/* 1:54 */waypoints[120].children[0] = 119; +/* 1:54 */waypoints[120].children[1] = 121; +/* 1:54 */waypoints[120].children[2] = 127; +/* 1:54 */waypoints[120].children[3] = 293; +/* 1:54 */waypoints[121] = spawnstruct(); +/* 1:54 */waypoints[121].origin = (1381.78, 317.644, 234.125); +/* 1:54 */waypoints[121].type = "stand"; +/* 1:54 */waypoints[121].children[0] = 120; +/* 1:54 */waypoints[121].children[1] = 122; +/* 1:54 */waypoints[122] = spawnstruct(); +/* 1:54 */waypoints[122].origin = (1381.82, 166.391, 234.125); +/* 1:54 */waypoints[122].type = "stand"; +/* 1:54 */waypoints[122].children[0] = 121; +/* 1:54 */waypoints[122].children[1] = 123; +/* 1:54 */waypoints[122].children[2] = 119; +/* 1:54 */waypoints[123] = spawnstruct(); +/* 1:54 */waypoints[123].origin = (1381.78, 15.5238, 234.125); +/* 1:54 */waypoints[123].type = "stand"; +/* 1:54 */waypoints[123].children[0] = 122; +/* 1:54 */waypoints[123].children[1] = 124; +/* 1:54 */waypoints[123].children[2] = 126; +/* 1:54 */waypoints[123].children[3] = 118; +/* 1:54 */waypoints[124] = spawnstruct(); +/* 1:54 */waypoints[124].origin = (1381.75, -134.601, 234.125); +/* 1:54 */waypoints[124].type = "stand"; +/* 1:54 */waypoints[124].children[0] = 123; +/* 1:54 */waypoints[124].children[1] = 125; +/* 1:54 */waypoints[124].children[2] = 117; +/* 1:54 */waypoints[125] = spawnstruct(); +/* 1:54 */waypoints[125].origin = (1502.88, -205.875, 234.125); +/* 1:54 */waypoints[125].type = "crouch"; +/* 1:54 */waypoints[125].children[0] = 124; +/* 1:54 */waypoints[125].angles = (15.0238, 154.786, 0); +/* 1:54 */waypoints[126] = spawnstruct(); +/* 1:54 */waypoints[126].origin = (1502.88, 28.875, 234.125); +/* 1:54 */waypoints[126].type = "crouch"; +/* 1:54 */waypoints[126].children[0] = 123; +/* 1:54 */waypoints[126].angles = (18.5394, -151.408, 0); +/* 1:54 */waypoints[127] = spawnstruct(); +/* 1:54 */waypoints[127].origin = (1222.89, 520.928, 173); +/* 1:54 */waypoints[127].type = "stand"; +/* 1:54 */waypoints[127].children[0] = 120; +/* 1:54 */waypoints[127].children[1] = 128; +/* 1:54 */waypoints[127].children[2] = 142; +/* 1:54 */waypoints[128] = spawnstruct(); +/* 1:54 */waypoints[128].origin = (1179.9, 812.072, 162.187); +/* 1:54 */waypoints[128].type = "stand"; +/* 1:54 */waypoints[128].children[0] = 127; +/* 1:54 */waypoints[128].children[1] = 129; +/* 1:54 */waypoints[128].children[2] = 139; +/* 1:54 */waypoints[128].children[3] = 140; +/* 1:54 */waypoints[128].children[4] = 142; +/* 1:54 */waypoints[129] = spawnstruct(); +/* 1:54 */waypoints[129].origin = (979.507, 959.312, 171.122); +/* 1:54 */waypoints[129].type = "stand"; +/* 1:54 */waypoints[129].children[0] = 128; +/* 1:54 */waypoints[129].children[1] = 130; +/* 1:54 */waypoints[129].children[2] = 131; +/* 1:54 */waypoints[129].children[3] = 138; +/* 1:54 */waypoints[129].children[4] = 142; +/* 1:54 */waypoints[129].children[5] = 144; +/* 1:54 */waypoints[129].children[6] = 139; +/* 1:54 */waypoints[130] = spawnstruct(); +/* 1:54 */waypoints[130].origin = (766.856, 867.259, 165.02); +/* 1:54 */waypoints[130].type = "stand"; +/* 1:54 */waypoints[130].children[0] = 129; +/* 1:54 */waypoints[130].children[1] = 133; +/* 1:54 */waypoints[130].children[2] = 134; +/* 1:54 */waypoints[130].children[3] = 135; +/* 1:54 */waypoints[130].children[4] = 136; +/* 1:54 */waypoints[130].children[5] = 142; +/* 1:54 */waypoints[131] = spawnstruct(); +/* 1:54 */waypoints[131].origin = (738.526, 1100.24, 161.913); +/* 1:54 */waypoints[131].type = "stand"; +/* 1:54 */waypoints[131].children[0] = 129; +/* 1:54 */waypoints[131].children[1] = 132; +/* 1:54 */waypoints[131].children[2] = 137; +/* 1:54 */waypoints[131].children[3] = 144; +/* 1:54 */waypoints[132] = spawnstruct(); +/* 1:54 */waypoints[132].origin = (737.462, 992.673, 162.978); +/* 1:54 */waypoints[132].type = "claymore"; +/* 1:54 */waypoints[132].children[0] = 131; +/* 1:54 */waypoints[132].angles = (17.8363, 91.0876, 0); +/* 1:54 */waypoints[133] = spawnstruct(); +/* 1:54 */waypoints[133].origin = (731.125, 743.125, 170.585); +/* 1:54 */waypoints[133].type = "crouch"; +/* 1:54 */waypoints[133].children[0] = 130; +/* 1:54 */waypoints[133].angles = (9.83826, 83.7048, 0); +/* 1:54 */waypoints[134] = spawnstruct(); +/* 1:54 */waypoints[134].origin = (731.125, 766.619, 169.95); +/* 1:54 */waypoints[134].type = "claymore"; +/* 1:54 */waypoints[134].children[0] = 130; +/* 1:54 */waypoints[134].angles = (13.266, 87.3962, 0); +/* 1:54 */waypoints[135] = spawnstruct(); +/* 1:54 */waypoints[135].origin = (731.165, 978.819, 161.708); +/* 1:54 */waypoints[135].type = "claymore"; +/* 1:54 */waypoints[135].children[0] = 130; +/* 1:54 */waypoints[135].angles = (19.8578, -94.1583, 0); +/* 1:54 */waypoints[136] = spawnstruct(); +/* 1:54 */waypoints[136].origin = (593.345, 866.646, 152.428); +/* 1:54 */waypoints[136].type = "stand"; +/* 1:54 */waypoints[136].children[0] = 130; +/* 1:54 */waypoints[136].children[1] = 137; +/* 1:54 */waypoints[136].children[2] = 146; +/* 1:54 */waypoints[137] = spawnstruct(); +/* 1:54 */waypoints[137].origin = (542.318, 1093.81, 141.393); +/* 1:54 */waypoints[137].type = "stand"; +/* 1:54 */waypoints[137].children[0] = 136; +/* 1:54 */waypoints[137].children[1] = 92; +/* 1:54 */waypoints[137].children[2] = 131; +/* 1:54 */waypoints[137].children[3] = 146; +/* 1:54 */waypoints[138] = spawnstruct(); +/* 1:54 */waypoints[138].origin = (1139.75, 1187, 169.878); +/* 1:54 */waypoints[138].type = "stand"; +/* 1:54 */waypoints[138].children[0] = 129; +/* 1:54 */waypoints[138].children[1] = 139; +/* 1:54 */waypoints[138].children[2] = 144; +/* 1:54 */waypoints[139] = spawnstruct(); +/* 1:54 */waypoints[139].origin = (1366.6, 1001.13, 166.742); +/* 1:54 */waypoints[139].type = "stand"; +/* 1:54 */waypoints[139].children[0] = 138; +/* 1:54 */waypoints[139].children[1] = 140; +/* 1:54 */waypoints[139].children[2] = 128; +/* 1:54 */waypoints[139].children[3] = 129; +/* 1:54 */waypoints[140] = spawnstruct(); +/* 1:54 */waypoints[140].origin = (1362.46, 648.367, 178.782); +/* 1:54 */waypoints[140].type = "stand"; +/* 1:54 */waypoints[140].children[0] = 139; +/* 1:54 */waypoints[140].children[1] = 141; +/* 1:54 */waypoints[140].children[2] = 128; +/* 1:54 */waypoints[141] = spawnstruct(); +/* 1:54 */waypoints[141].origin = (1398.88, 559.125, 172.857); +/* 1:54 */waypoints[141].type = "crouch"; +/* 1:54 */waypoints[141].children[0] = 140; +/* 1:54 */waypoints[141].angles = (16.5179, 168.492, 0); +/* 1:54 */waypoints[142] = spawnstruct(); +/* 1:54 */waypoints[142].origin = (1032.98, 687.96, 168.606); +/* 1:54 */waypoints[142].type = "stand"; +/* 1:54 */waypoints[142].children[0] = 128; +/* 1:54 */waypoints[142].children[1] = 143; +/* 1:54 */waypoints[142].children[2] = 127; +/* 1:54 */waypoints[142].children[3] = 129; +/* 1:54 */waypoints[142].children[4] = 130; +/* 1:54 */waypoints[143] = spawnstruct(); +/* 1:54 */waypoints[143].origin = (916.125, 559.125, 170.125); +/* 1:54 */waypoints[143].type = "crouch"; +/* 1:54 */waypoints[143].children[0] = 142; +/* 1:54 */waypoints[143].angles = (5.09766, 46.0107, 0); +/* 1:54 */waypoints[144] = spawnstruct(); +/* 1:54 */waypoints[144].origin = (978.048, 1208.22, 169.294); +/* 1:54 */waypoints[144].type = "stand"; +/* 1:54 */waypoints[144].children[0] = 131; +/* 1:54 */waypoints[144].children[1] = 138; +/* 1:54 */waypoints[144].children[2] = 145; +/* 1:54 */waypoints[144].children[3] = 129; +/* 1:54 */waypoints[145] = spawnstruct(); +/* 1:54 */waypoints[145].origin = (1045.88, 1324.88, 170.586); +/* 1:54 */waypoints[145].type = "crouch"; +/* 1:54 */waypoints[145].children[0] = 144; +/* 1:54 */waypoints[145].angles = (7.55859, -126.546, 0); +/* 1:54 */waypoints[146] = spawnstruct(); +/* 1:54 */waypoints[146].origin = (444.5, 866.788, 135.993); +/* 1:54 */waypoints[146].type = "stand"; +/* 1:54 */waypoints[146].children[0] = 136; +/* 1:54 */waypoints[146].children[1] = 93; +/* 1:54 */waypoints[146].children[2] = 92; +/* 1:54 */waypoints[146].children[3] = 137; +/* 1:54 */waypoints[147] = spawnstruct(); +/* 1:54 */waypoints[147].origin = (132.125, 779.125, 126.112); +/* 1:54 */waypoints[147].type = "crouch"; +/* 1:54 */waypoints[147].children[0] = 93; +/* 1:54 */waypoints[147].children[1] = 91; +/* 1:54 */waypoints[147].children[2] = 92; +/* 1:54 */waypoints[148] = spawnstruct(); +/* 1:54 */waypoints[148].origin = (107.645, 241.55, 168.125); +/* 1:54 */waypoints[148].type = "stand"; +/* 1:54 */waypoints[148].children[0] = 96; +/* 1:54 */waypoints[148].children[1] = 149; +/* 1:54 */waypoints[149] = spawnstruct(); +/* 1:54 */waypoints[149].origin = (-4.2525, 240.898, 165.125); +/* 1:54 */waypoints[149].type = "stand"; +/* 1:54 */waypoints[149].children[0] = 148; +/* 1:54 */waypoints[149].children[1] = 150; +/* 1:54 */waypoints[149].children[2] = 116; +/* 1:54 */waypoints[149].children[3] = 151; +/* 1:54 */waypoints[150] = spawnstruct(); +/* 1:54 */waypoints[150].origin = (-410.643, 237.67, 166.125); +/* 1:54 */waypoints[150].type = "stand"; +/* 1:54 */waypoints[150].children[0] = 149; +/* 1:54 */waypoints[150].children[1] = 170; +/* 1:54 */waypoints[150].children[2] = 175; +/* 1:54 */waypoints[151] = spawnstruct(); +/* 1:54 */waypoints[151].origin = (-53.4301, -133.034, 170.125); +/* 1:54 */waypoints[151].type = "stand"; +/* 1:54 */waypoints[151].children[0] = 115; +/* 1:54 */waypoints[151].children[1] = 152; +/* 1:54 */waypoints[151].children[2] = 153; +/* 1:54 */waypoints[151].children[3] = 149; +/* 1:54 */waypoints[152] = spawnstruct(); +/* 1:54 */waypoints[152].origin = (9.41021, 33.3786, 170.125); +/* 1:54 */waypoints[152].type = "stand"; +/* 1:54 */waypoints[152].children[0] = 151; +/* 1:54 */waypoints[152].children[1] = 116; +/* 1:54 */waypoints[153] = spawnstruct(); +/* 1:54 */waypoints[153].origin = (-48.875, -278.875, 170.125); +/* 1:54 */waypoints[153].type = "crouch"; +/* 1:54 */waypoints[153].children[0] = 151; +/* 1:54 */waypoints[153].children[1] = 154; +/* 1:54 */waypoints[154] = spawnstruct(); +/* 1:54 */waypoints[154].origin = (93.3833, 326.034, 169.125); +/* 1:54 */waypoints[154].type = "stand"; +/* 1:54 */waypoints[154].children[0] = 153; +/* 1:54 */waypoints[154].children[1] = 155; +/* 1:54 */waypoints[154].children[2] = 157; +/* 1:54 */waypoints[155] = spawnstruct(); +/* 1:54 */waypoints[155].origin = (61.2963, 483.681, 168.125); +/* 1:54 */waypoints[155].type = "stand"; +/* 1:54 */waypoints[155].children[0] = 154; +/* 1:54 */waypoints[155].children[1] = 156; +/* 1:54 */waypoints[155].children[2] = 157; +/* 1:54 */waypoints[156] = spawnstruct(); +/* 1:54 */waypoints[156].origin = (-37.1158, 637.831, 168.125); +/* 1:54 */waypoints[156].type = "stand"; +/* 1:54 */waypoints[156].children[0] = 155; +/* 1:54 */waypoints[156].children[1] = 20; +/* 1:54 */waypoints[156].children[2] = 160; +/* 1:54 */waypoints[157] = spawnstruct(); +/* 1:54 */waypoints[157].origin = (147.233, 418.74, 168.125); +/* 1:54 */waypoints[157].type = "stand"; +/* 1:54 */waypoints[157].children[0] = 155; +/* 1:54 */waypoints[157].children[1] = 154; +/* 1:54 */waypoints[157].children[2] = 158; +/* 1:54 */waypoints[158] = spawnstruct(); +/* 1:54 */waypoints[158].origin = (173.871, 355.125, 168.125); +/* 1:54 */waypoints[158].type = "claymore"; +/* 1:54 */waypoints[158].children[0] = 157; +/* 1:54 */waypoints[158].children[1] = 159; +/* 1:54 */waypoints[158].angles = (24.6863, 173.112, 0); +/* 1:54 */waypoints[159] = spawnstruct(); +/* 1:54 */waypoints[159].origin = (173.871, 355.125, 168.125); +/* 1:54 */waypoints[159].type = "crouch"; +/* 1:54 */waypoints[159].children[0] = 158; +/* 1:54 */waypoints[159].angles = (23.7195, 172.76, 0); +/* 1:54 */waypoints[160] = spawnstruct(); +/* 1:54 */waypoints[160].origin = (173.875, 707.88, 187.125); +/* 1:54 */waypoints[160].type = "crouch"; +/* 1:54 */waypoints[160].children[0] = 156; +/* 1:54 */waypoints[160].angles = (16.7816, -168.519, 0); +/* 1:54 */waypoints[161] = spawnstruct(); +/* 1:54 */waypoints[161].origin = (-668.86, 613.995, 168.125); +/* 1:54 */waypoints[161].type = "stand"; +/* 1:54 */waypoints[161].children[0] = 22; +/* 1:54 */waypoints[161].children[1] = 162; +/* 1:54 */waypoints[162] = spawnstruct(); +/* 1:54 */waypoints[162].origin = (-666.12, 468.24, 166.125); +/* 1:54 */waypoints[162].type = "stand"; +/* 1:54 */waypoints[162].children[0] = 161; +/* 1:54 */waypoints[162].children[1] = 163; +/* 1:54 */waypoints[162].children[2] = 164; +/* 1:54 */waypoints[162].children[3] = 169; +/* 1:54 */waypoints[163] = spawnstruct(); +/* 1:54 */waypoints[163].origin = (-454.125, 530.141, 166.792); +/* 1:54 */waypoints[163].type = "crouch"; +/* 1:54 */waypoints[163].children[0] = 162; +/* 1:54 */waypoints[163].angles = (19.2426, -150.776, 0); +/* 1:54 */waypoints[164] = spawnstruct(); +/* 1:54 */waypoints[164].origin = (-907.051, 468.668, 166.125); +/* 1:54 */waypoints[164].type = "stand"; +/* 1:54 */waypoints[164].children[0] = 162; +/* 1:54 */waypoints[164].children[1] = 165; +/* 1:54 */waypoints[164].children[2] = 168; +/* 1:54 */waypoints[165] = spawnstruct(); +/* 1:54 */waypoints[165].origin = (-1138.44, 450.357, 166.13); +/* 1:54 */waypoints[165].type = "stand"; +/* 1:54 */waypoints[165].children[0] = 164; +/* 1:54 */waypoints[165].children[1] = 166; +/* 1:54 */waypoints[165].children[2] = 171; +/* 1:54 */waypoints[166] = spawnstruct(); +/* 1:54 */waypoints[166].origin = (-1107.47, 69.0025, 166.125); +/* 1:54 */waypoints[166].type = "stand"; +/* 1:54 */waypoints[166].children[0] = 165; +/* 1:54 */waypoints[166].children[1] = 167; +/* 1:54 */waypoints[166].children[2] = 171; +/* 1:54 */waypoints[167] = spawnstruct(); +/* 1:54 */waypoints[167].origin = (-915.056, 15.7288, 168.125); +/* 1:54 */waypoints[167].type = "stand"; +/* 1:54 */waypoints[167].children[0] = 166; +/* 1:54 */waypoints[167].children[1] = 168; +/* 1:54 */waypoints[167].children[2] = 172; +/* 1:54 */waypoints[168] = spawnstruct(); +/* 1:54 */waypoints[168].origin = (-894.291, 234.209, 166.125); +/* 1:54 */waypoints[168].type = "stand"; +/* 1:54 */waypoints[168].children[0] = 167; +/* 1:54 */waypoints[168].children[1] = 169; +/* 1:54 */waypoints[168].children[2] = 164; +/* 1:54 */waypoints[168].children[3] = 171; +/* 1:54 */waypoints[169] = spawnstruct(); +/* 1:54 */waypoints[169].origin = (-692.064, 277.587, 166.125); +/* 1:54 */waypoints[169].type = "stand"; +/* 1:54 */waypoints[169].children[0] = 168; +/* 1:54 */waypoints[169].children[1] = 170; +/* 1:54 */waypoints[169].children[2] = 162; +/* 1:54 */waypoints[169].children[3] = 173; +/* 1:54 */waypoints[170] = spawnstruct(); +/* 1:54 */waypoints[170].origin = (-493.478, 247.963, 168.125); +/* 1:54 */waypoints[170].type = "stand"; +/* 1:54 */waypoints[170].children[0] = 169; +/* 1:54 */waypoints[170].children[1] = 150; +/* 1:54 */waypoints[171] = spawnstruct(); +/* 1:54 */waypoints[171].origin = (-1051.86, 237.981, 166.125); +/* 1:54 */waypoints[171].type = "stand"; +/* 1:54 */waypoints[171].children[0] = 168; +/* 1:54 */waypoints[171].children[1] = 166; +/* 1:54 */waypoints[171].children[2] = 165; +/* 1:54 */waypoints[172] = spawnstruct(); +/* 1:54 */waypoints[172].origin = (-911.924, -224.285, 166.125); +/* 1:54 */waypoints[172].type = "stand"; +/* 1:54 */waypoints[172].children[0] = 167; +/* 1:54 */waypoints[172].children[1] = 173; +/* 1:54 */waypoints[172].children[2] = 183; +/* 1:54 */waypoints[172].children[3] = 184; +/* 1:54 */waypoints[173] = spawnstruct(); +/* 1:54 */waypoints[173].origin = (-644.081, -213.711, 166.125); +/* 1:54 */waypoints[173].type = "stand"; +/* 1:54 */waypoints[173].children[0] = 172; +/* 1:54 */waypoints[173].children[1] = 174; +/* 1:54 */waypoints[173].children[2] = 182; +/* 1:54 */waypoints[173].children[3] = 169; +/* 1:54 */waypoints[174] = spawnstruct(); +/* 1:54 */waypoints[174].origin = (-405.368, -208.33, 166.125); +/* 1:54 */waypoints[174].type = "stand"; +/* 1:54 */waypoints[174].children[0] = 173; +/* 1:54 */waypoints[174].children[1] = 175; +/* 1:54 */waypoints[174].children[2] = 179; +/* 1:54 */waypoints[174].children[3] = 177; +/* 1:54 */waypoints[175] = spawnstruct(); +/* 1:54 */waypoints[175].origin = (-416.568, 57.519, 166.223); +/* 1:54 */waypoints[175].type = "stand"; +/* 1:54 */waypoints[175].children[0] = 174; +/* 1:54 */waypoints[175].children[1] = 150; +/* 1:54 */waypoints[175].children[2] = 176; +/* 1:54 */waypoints[176] = spawnstruct(); +/* 1:54 */waypoints[176].origin = (-274.486, 57.4151, 166.125); +/* 1:54 */waypoints[176].type = "stand"; +/* 1:54 */waypoints[176].children[0] = 175; +/* 1:54 */waypoints[176].children[1] = 177; +/* 1:54 */waypoints[177] = spawnstruct(); +/* 1:54 */waypoints[177].origin = (-243.143, -123.441, 166.125); +/* 1:54 */waypoints[177].type = "stand"; +/* 1:54 */waypoints[177].children[0] = 176; +/* 1:54 */waypoints[177].children[1] = 178; +/* 1:54 */waypoints[177].children[2] = 174; +/* 1:54 */waypoints[178] = spawnstruct(); +/* 1:54 */waypoints[178].origin = (-254.552, -368.835, 166.125); +/* 1:54 */waypoints[178].type = "stand"; +/* 1:54 */waypoints[178].children[0] = 177; +/* 1:54 */waypoints[178].children[1] = 179; +/* 1:54 */waypoints[179] = spawnstruct(); +/* 1:54 */waypoints[179].origin = (-415.448, -368.788, 166.125); +/* 1:54 */waypoints[179].type = "stand"; +/* 1:54 */waypoints[179].children[0] = 178; +/* 1:54 */waypoints[179].children[1] = 174; +/* 1:54 */waypoints[179].children[2] = 180; +/* 1:54 */waypoints[180] = spawnstruct(); +/* 1:54 */waypoints[180].origin = (-435.97, -547.846, 168.125); +/* 1:54 */waypoints[180].type = "stand"; +/* 1:54 */waypoints[180].children[0] = 179; +/* 1:54 */waypoints[180].children[1] = 181; +/* 1:54 */waypoints[180].children[2] = 182; +/* 1:54 */waypoints[181] = spawnstruct(); +/* 1:54 */waypoints[181].origin = (-436.051, -754.541, 200.125); +/* 1:54 */waypoints[181].type = "stand"; +/* 1:54 */waypoints[181].children[0] = 180; +/* 1:54 */waypoints[181].children[1] = 243; +/* 1:54 */waypoints[182] = spawnstruct(); +/* 1:54 */waypoints[182].origin = (-676.511, -539.551, 168.125); +/* 1:54 */waypoints[182].type = "stand"; +/* 1:54 */waypoints[182].children[0] = 180; +/* 1:54 */waypoints[182].children[1] = 183; +/* 1:54 */waypoints[182].children[2] = 173; +/* 1:54 */waypoints[183] = spawnstruct(); +/* 1:54 */waypoints[183].origin = (-944.821, -478.529, 168.125); +/* 1:54 */waypoints[183].type = "stand"; +/* 1:54 */waypoints[183].children[0] = 182; +/* 1:54 */waypoints[183].children[1] = 172; +/* 1:54 */waypoints[184] = spawnstruct(); +/* 1:54 */waypoints[184].origin = (-1137.04, -238.632, 168.125); +/* 1:54 */waypoints[184].type = "stand"; +/* 1:54 */waypoints[184].children[0] = 172; +/* 1:54 */waypoints[184].children[1] = 57; +/* 1:54 */waypoints[185] = spawnstruct(); +/* 1:54 */waypoints[185].origin = (-1506.91, -471.816, 144.125); +/* 1:54 */waypoints[185].type = "stand"; +/* 1:54 */waypoints[185].children[0] = 57; +/* 1:54 */waypoints[185].children[1] = 186; +/* 1:54 */waypoints[186] = spawnstruct(); +/* 1:54 */waypoints[186].origin = (-1667.77, -535.827, 112.125); +/* 1:54 */waypoints[186].type = "stand"; +/* 1:54 */waypoints[186].children[0] = 185; +/* 1:54 */waypoints[186].children[1] = 187; +/* 1:54 */waypoints[186].children[2] = 188; +/* 1:54 */waypoints[187] = spawnstruct(); +/* 1:54 */waypoints[187].origin = (-1714.88, -443.125, 112.125); +/* 1:54 */waypoints[187].type = "crouch"; +/* 1:54 */waypoints[187].children[0] = 186; +/* 1:54 */waypoints[187].angles = (27.5867, -63.501, 0); +/* 1:54 */waypoints[188] = spawnstruct(); +/* 1:54 */waypoints[188].origin = (-1651.14, -888.979, 152.125); +/* 1:54 */waypoints[188].type = "stand"; +/* 1:54 */waypoints[188].children[0] = 186; +/* 1:54 */waypoints[188].children[1] = 189; +/* 1:54 */waypoints[188].children[2] = 258; +/* 1:54 */waypoints[188].children[3] = 271; +/* 1:54 */waypoints[189] = spawnstruct(); +/* 1:54 */waypoints[189].origin = (-1761.28, -1114.39, 151.025); +/* 1:54 */waypoints[189].type = "stand"; +/* 1:54 */waypoints[189].children[0] = 188; +/* 1:54 */waypoints[189].children[1] = 190; +/* 1:54 */waypoints[189].children[2] = 258; +/* 1:54 */waypoints[189].children[3] = 271; +/* 1:54 */waypoints[190] = spawnstruct(); +/* 1:54 */waypoints[190].origin = (-1798.71, -1330.37, 155.104); +/* 1:54 */waypoints[190].type = "stand"; +/* 1:54 */waypoints[190].children[0] = 189; +/* 1:54 */waypoints[190].children[1] = 191; +/* 1:54 */waypoints[190].children[2] = 192; +/* 1:54 */waypoints[191] = spawnstruct(); +/* 1:54 */waypoints[191].origin = (-1725.87, -1312.78, 152.125); +/* 1:54 */waypoints[191].type = "claymore"; +/* 1:54 */waypoints[191].children[0] = 190; +/* 1:54 */waypoints[191].angles = (21.4398, -176.265, 0); +/* 1:54 */waypoints[192] = spawnstruct(); +/* 1:54 */waypoints[192].origin = (-1789.98, -1488.15, 152.125); +/* 1:54 */waypoints[192].type = "stand"; +/* 1:54 */waypoints[192].children[0] = 190; +/* 1:54 */waypoints[192].children[1] = 193; +/* 1:54 */waypoints[192].children[2] = 266; +/* 1:54 */waypoints[193] = spawnstruct(); +/* 1:54 */waypoints[193].origin = (-1751.19, -1709.09, 152.125); +/* 1:54 */waypoints[193].type = "stand"; +/* 1:54 */waypoints[193].children[0] = 192; +/* 1:54 */waypoints[193].children[1] = 194; +/* 1:54 */waypoints[193].children[2] = 265; +/* 1:54 */waypoints[194] = spawnstruct(); +/* 1:54 */waypoints[194].origin = (-2046.02, -1704.34, 288.125); +/* 1:54 */waypoints[194].type = "stand"; +/* 1:54 */waypoints[194].children[0] = 193; +/* 1:54 */waypoints[194].children[1] = 195; +/* 1:54 */waypoints[195] = spawnstruct(); +/* 1:54 */waypoints[195].origin = (-2193.5, -1549.86, 288.125); +/* 1:54 */waypoints[195].type = "stand"; +/* 1:54 */waypoints[195].children[0] = 194; +/* 1:54 */waypoints[195].children[1] = 196; +/* 1:54 */waypoints[195].children[2] = 198; +/* 1:54 */waypoints[195].children[3] = 205; +/* 1:54 */waypoints[196] = spawnstruct(); +/* 1:54 */waypoints[196].origin = (-1840.65, -1354.84, 290.125); +/* 1:54 */waypoints[196].type = "stand"; +/* 1:54 */waypoints[196].children[0] = 195; +/* 1:54 */waypoints[196].children[1] = 197; +/* 1:54 */waypoints[197] = spawnstruct(); +/* 1:54 */waypoints[197].origin = (-1579.13, -1354.94, 288.125); +/* 1:54 */waypoints[197].type = "crouch"; +/* 1:54 */waypoints[197].children[0] = 196; +/* 1:54 */waypoints[197].angles = (29.6082, -1.1261, 0); +/* 1:54 */waypoints[198] = spawnstruct(); +/* 1:54 */waypoints[198].origin = (-2285.74, -1308.12, 288.125); +/* 1:54 */waypoints[198].type = "stand"; +/* 1:54 */waypoints[198].children[0] = 195; +/* 1:54 */waypoints[198].children[1] = 199; +/* 1:54 */waypoints[198].children[2] = 204; +/* 1:54 */waypoints[199] = spawnstruct(); +/* 1:54 */waypoints[199].origin = (-2285.69, -1151.52, 291.117); +/* 1:54 */waypoints[199].type = "stand"; +/* 1:54 */waypoints[199].children[0] = 198; +/* 1:54 */waypoints[199].children[1] = 200; +/* 1:54 */waypoints[199].children[2] = 201; +/* 1:54 */waypoints[200] = spawnstruct(); +/* 1:54 */waypoints[200].origin = (-2112.35, -1133.19, 288.125); +/* 1:54 */waypoints[200].type = "crouch"; +/* 1:54 */waypoints[200].children[0] = 199; +/* 1:54 */waypoints[200].angles = (13.0902, 10.6897, 0); +/* 1:54 */waypoints[201] = spawnstruct(); +/* 1:54 */waypoints[201].origin = (-2396.53, -1093.16, 288.125); +/* 1:54 */waypoints[201].type = "stand"; +/* 1:54 */waypoints[201].children[0] = 199; +/* 1:54 */waypoints[201].children[1] = 202; +/* 1:54 */waypoints[202] = spawnstruct(); +/* 1:54 */waypoints[202].origin = (-2446.09, -920.857, 265.125); +/* 1:54 */waypoints[202].type = "stand"; +/* 1:54 */waypoints[202].children[0] = 201; +/* 1:54 */waypoints[202].children[1] = 203; +/* 1:54 */waypoints[203] = spawnstruct(); +/* 1:54 */waypoints[203].origin = (-2478.48, -593.455, 265.125); +/* 1:54 */waypoints[203].type = "stand"; +/* 1:54 */waypoints[203].children[0] = 202; +/* 1:54 */waypoints[203].children[1] = 60; +/* 1:54 */waypoints[204] = spawnstruct(); +/* 1:54 */waypoints[204].origin = (-2449.88, -1263.13, 288.125); +/* 1:54 */waypoints[204].type = "crouch"; +/* 1:54 */waypoints[204].children[0] = 198; +/* 1:54 */waypoints[204].angles = (16.9574, -29.0259, 0); +/* 1:54 */waypoints[205] = spawnstruct(); +/* 1:54 */waypoints[205].origin = (-2252.05, -1834.63, 291.121); +/* 1:54 */waypoints[205].type = "stand"; +/* 1:54 */waypoints[205].children[0] = 195; +/* 1:54 */waypoints[205].children[1] = 206; +/* 1:54 */waypoints[206] = spawnstruct(); +/* 1:54 */waypoints[206].origin = (-1878.1, -1867.36, 152.125); +/* 1:54 */waypoints[206].type = "stand"; +/* 1:54 */waypoints[206].children[0] = 205; +/* 1:54 */waypoints[206].children[1] = 207; +/* 1:54 */waypoints[207] = spawnstruct(); +/* 1:54 */waypoints[207].origin = (-1469.3, -1831.17, 152.125); +/* 1:54 */waypoints[207].type = "stand"; +/* 1:54 */waypoints[207].children[0] = 206; +/* 1:54 */waypoints[207].children[1] = 208; +/* 1:54 */waypoints[208] = spawnstruct(); +/* 1:54 */waypoints[208].origin = (-1310.38, -1838.6, 152.125); +/* 1:54 */waypoints[208].type = "stand"; +/* 1:54 */waypoints[208].children[0] = 207; +/* 1:54 */waypoints[208].children[1] = 209; +/* 1:54 */waypoints[208].children[2] = 213; +/* 1:54 */waypoints[209] = spawnstruct(); +/* 1:54 */waypoints[209].origin = (-949.577, -1825.33, 152.125); +/* 1:54 */waypoints[209].type = "stand"; +/* 1:54 */waypoints[209].children[0] = 208; +/* 1:54 */waypoints[209].children[1] = 210; +/* 1:54 */waypoints[209].children[2] = 212; +/* 1:54 */waypoints[210] = spawnstruct(); +/* 1:54 */waypoints[210].origin = (-643.59, -1821.47, 152.125); +/* 1:54 */waypoints[210].type = "stand"; +/* 1:54 */waypoints[210].children[0] = 209; +/* 1:54 */waypoints[210].children[1] = 211; +/* 1:54 */waypoints[211] = spawnstruct(); +/* 1:54 */waypoints[211].origin = (-621.166, -1650.31, 144.125); +/* 1:54 */waypoints[211].type = "stand"; +/* 1:54 */waypoints[211].children[0] = 210; +/* 1:54 */waypoints[211].children[1] = 212; +/* 1:54 */waypoints[211].children[2] = 214; +/* 1:54 */waypoints[212] = spawnstruct(); +/* 1:54 */waypoints[212].origin = (-932.542, -1650.37, 144.125); +/* 1:54 */waypoints[212].type = "stand"; +/* 1:54 */waypoints[212].children[0] = 211; +/* 1:54 */waypoints[212].children[1] = 213; +/* 1:54 */waypoints[212].children[2] = 209; +/* 1:54 */waypoints[212].children[3] = 261; +/* 1:54 */waypoints[213] = spawnstruct(); +/* 1:54 */waypoints[213].origin = (-1256.58, -1650.86, 144.125); +/* 1:54 */waypoints[213].type = "stand"; +/* 1:54 */waypoints[213].children[0] = 212; +/* 1:54 */waypoints[213].children[1] = 208; +/* 1:54 */waypoints[213].children[2] = 262; +/* 1:54 */waypoints[214] = spawnstruct(); +/* 1:54 */waypoints[214].origin = (-519.869, -1455.32, 156.7); +/* 1:54 */waypoints[214].type = "stand"; +/* 1:54 */waypoints[214].children[0] = 211; +/* 1:54 */waypoints[214].children[1] = 215; +/* 1:54 */waypoints[214].children[2] = 237; +/* 1:54 */waypoints[215] = spawnstruct(); +/* 1:54 */waypoints[215].origin = (-168.063, -1557.12, 198.945); +/* 1:54 */waypoints[215].type = "stand"; +/* 1:54 */waypoints[215].children[0] = 214; +/* 1:54 */waypoints[215].children[1] = 216; +/* 1:54 */waypoints[216] = spawnstruct(); +/* 1:54 */waypoints[216].origin = (-81.1603, -1411.26, 199.728); +/* 1:54 */waypoints[216].type = "stand"; +/* 1:54 */waypoints[216].children[0] = 215; +/* 1:54 */waypoints[216].children[1] = 217; +/* 1:54 */waypoints[216].children[2] = 235; +/* 1:54 */waypoints[217] = spawnstruct(); +/* 1:54 */waypoints[217].origin = (-190.696, -1170.3, 208.125); +/* 1:54 */waypoints[217].type = "stand"; +/* 1:54 */waypoints[217].children[0] = 216; +/* 1:54 */waypoints[217].children[1] = 218; +/* 1:54 */waypoints[217].children[2] = 236; +/* 1:54 */waypoints[217].children[3] = 238; +/* 1:54 */waypoints[218] = spawnstruct(); +/* 1:54 */waypoints[218].origin = (-57.2164, -1021.91, 208.125); +/* 1:54 */waypoints[218].type = "stand"; +/* 1:54 */waypoints[218].children[0] = 217; +/* 1:54 */waypoints[218].children[1] = 219; +/* 1:54 */waypoints[218].children[2] = 220; +/* 1:54 */waypoints[219] = spawnstruct(); +/* 1:54 */waypoints[219].origin = (66.4044, -869.065, 208.125); +/* 1:54 */waypoints[219].type = "stand"; +/* 1:54 */waypoints[219].children[0] = 218; +/* 1:54 */waypoints[219].children[1] = 224; +/* 1:54 */waypoints[220] = spawnstruct(); +/* 1:54 */waypoints[220].origin = (44.516, -1092.51, 208.125); +/* 1:54 */waypoints[220].type = "stand"; +/* 1:54 */waypoints[220].children[0] = 218; +/* 1:54 */waypoints[220].children[1] = 221; +/* 1:54 */waypoints[221] = spawnstruct(); +/* 1:54 */waypoints[221].origin = (308.434, -1116.63, 208.125); +/* 1:54 */waypoints[221].type = "stand"; +/* 1:54 */waypoints[221].children[0] = 220; +/* 1:54 */waypoints[221].children[1] = 222; +/* 1:54 */waypoints[221].children[2] = 231; +/* 1:54 */waypoints[222] = spawnstruct(); +/* 1:54 */waypoints[222].origin = (450.402, -1116.55, 208.125); +/* 1:54 */waypoints[222].type = "stand"; +/* 1:54 */waypoints[222].children[0] = 221; +/* 1:54 */waypoints[222].children[1] = 223; +/* 1:54 */waypoints[222].children[2] = 227; +/* 1:54 */waypoints[222].children[3] = 229; +/* 1:54 */waypoints[223] = spawnstruct(); +/* 1:54 */waypoints[223].origin = (464.255, -961.957, 208.125); +/* 1:54 */waypoints[223].type = "stand"; +/* 1:54 */waypoints[223].children[0] = 222; +/* 1:54 */waypoints[223].children[1] = 224; +/* 1:54 */waypoints[223].children[2] = 225; +/* 1:54 */waypoints[224] = spawnstruct(); +/* 1:54 */waypoints[224].origin = (466.237, -822.843, 208.125); +/* 1:54 */waypoints[224].type = "stand"; +/* 1:54 */waypoints[224].children[0] = 223; +/* 1:54 */waypoints[224].children[1] = 226; +/* 1:54 */waypoints[224].children[2] = 219; +/* 1:54 */waypoints[224].children[3] = 114; +/* 1:54 */waypoints[225] = spawnstruct(); +/* 1:54 */waypoints[225].origin = (591.49, -972.959, 208.125); +/* 1:54 */waypoints[225].type = "stand"; +/* 1:54 */waypoints[225].children[0] = 223; +/* 1:54 */waypoints[225].children[1] = 226; +/* 1:54 */waypoints[225].children[2] = 227; +/* 1:54 */waypoints[225].children[3] = 281; +/* 1:54 */waypoints[226] = spawnstruct(); +/* 1:54 */waypoints[226].origin = (599.421, -820.096, 208.125); +/* 1:54 */waypoints[226].type = "stand"; +/* 1:54 */waypoints[226].children[0] = 225; +/* 1:54 */waypoints[226].children[1] = 224; +/* 1:54 */waypoints[227] = spawnstruct(); +/* 1:54 */waypoints[227].origin = (594.414, -1132.16, 208.125); +/* 1:54 */waypoints[227].type = "stand"; +/* 1:54 */waypoints[227].children[0] = 225; +/* 1:54 */waypoints[227].children[1] = 228; +/* 1:54 */waypoints[227].children[2] = 282; +/* 1:54 */waypoints[227].children[3] = 222; +/* 1:54 */waypoints[228] = spawnstruct(); +/* 1:54 */waypoints[228].origin = (593.92, -1282.2, 208.125); +/* 1:54 */waypoints[228].type = "stand"; +/* 1:54 */waypoints[228].children[0] = 227; +/* 1:54 */waypoints[228].children[1] = 229; +/* 1:54 */waypoints[229] = spawnstruct(); +/* 1:54 */waypoints[229].origin = (473.5, -1275.18, 208.125); +/* 1:54 */waypoints[229].type = "stand"; +/* 1:54 */waypoints[229].children[0] = 228; +/* 1:54 */waypoints[229].children[1] = 230; +/* 1:54 */waypoints[229].children[2] = 222; +/* 1:54 */waypoints[230] = spawnstruct(); +/* 1:54 */waypoints[230].origin = (317.248, -1275.1, 208.125); +/* 1:54 */waypoints[230].type = "stand"; +/* 1:54 */waypoints[230].children[0] = 229; +/* 1:54 */waypoints[230].children[1] = 231; +/* 1:54 */waypoints[231] = spawnstruct(); +/* 1:54 */waypoints[231].origin = (261.66, -1305.98, 208.125); +/* 1:54 */waypoints[231].type = "stand"; +/* 1:54 */waypoints[231].children[0] = 230; +/* 1:54 */waypoints[231].children[1] = 232; +/* 1:54 */waypoints[231].children[2] = 221; +/* 1:54 */waypoints[232] = spawnstruct(); +/* 1:54 */waypoints[232].origin = (180.105, -1307.13, 208.125); +/* 1:54 */waypoints[232].type = "stand"; +/* 1:54 */waypoints[232].children[0] = 231; +/* 1:54 */waypoints[232].children[1] = 233; +/* 1:54 */waypoints[232].children[2] = 234; +/* 1:54 */waypoints[232].children[3] = 235; +/* 1:54 */waypoints[233] = spawnstruct(); +/* 1:54 */waypoints[233].origin = (199.875, -1251.13, 208.125); +/* 1:54 */waypoints[233].type = "claymore"; +/* 1:54 */waypoints[233].children[0] = 232; +/* 1:54 */waypoints[233].angles = (8.08044, -92.1478, 0); +/* 1:54 */waypoints[234] = spawnstruct(); +/* 1:54 */waypoints[234].origin = (199.875, -1508.88, 208.125); +/* 1:54 */waypoints[234].type = "crouch"; +/* 1:54 */waypoints[234].children[0] = 232; +/* 1:54 */waypoints[234].angles = (23.8074, 111.286, 0); +/* 1:54 */waypoints[235] = spawnstruct(); +/* 1:54 */waypoints[235].origin = (32.6311, -1393.16, 208.125); +/* 1:54 */waypoints[235].type = "stand"; +/* 1:54 */waypoints[235].children[0] = 232; +/* 1:54 */waypoints[235].children[1] = 216; +/* 1:54 */waypoints[236] = spawnstruct(); +/* 1:54 */waypoints[236].origin = (-253.838, -1270.58, 198.172); +/* 1:54 */waypoints[236].type = "stand"; +/* 1:54 */waypoints[236].children[0] = 217; +/* 1:54 */waypoints[236].children[1] = 237; +/* 1:54 */waypoints[237] = spawnstruct(); +/* 1:54 */waypoints[237].origin = (-525.952, -1327.79, 157.269); +/* 1:54 */waypoints[237].type = "stand"; +/* 1:54 */waypoints[237].children[0] = 236; +/* 1:54 */waypoints[237].children[1] = 214; +/* 1:54 */waypoints[237].children[2] = 244; +/* 1:54 */waypoints[238] = spawnstruct(); +/* 1:54 */waypoints[238].origin = (-283.875, -1177.89, 208.125); +/* 1:54 */waypoints[238].type = "climb"; +/* 1:54 */waypoints[238].children[0] = 217; +/* 1:54 */waypoints[238].children[1] = 239; +/* 1:54 */waypoints[238].angles = (9.3988, -179.121, 0); +/* 1:54 */waypoints[239] = spawnstruct(); +/* 1:54 */waypoints[239].origin = (-287.148, -1177.99, 232.125); +/* 1:54 */waypoints[239].type = "stand"; +/* 1:54 */waypoints[239].children[0] = 238; +/* 1:54 */waypoints[239].children[1] = 240; +/* 1:54 */waypoints[240] = spawnstruct(); +/* 1:54 */waypoints[240].origin = (-315.875, -1178.02, 232.125); +/* 1:54 */waypoints[240].type = "climb"; +/* 1:54 */waypoints[240].children[0] = 239; +/* 1:54 */waypoints[240].children[1] = 241; +/* 1:54 */waypoints[240].angles = (9.48669, -179.121, 0); +/* 1:54 */waypoints[241] = spawnstruct(); +/* 1:54 */waypoints[241].origin = (-332.447, -1177.99, 276.125); +/* 1:54 */waypoints[241].type = "stand"; +/* 1:54 */waypoints[241].children[0] = 240; +/* 1:54 */waypoints[241].children[1] = 242; +/* 1:54 */waypoints[242] = spawnstruct(); +/* 1:54 */waypoints[242].origin = (-355.807, -1176.74, 200.125); +/* 1:54 */waypoints[242].type = "climb"; +/* 1:54 */waypoints[242].children[0] = 241; +/* 1:54 */waypoints[242].children[1] = 243; +/* 1:54 */waypoints[242].angles = (0.966797, -4.11438, 0); +/* 1:54 */waypoints[243] = spawnstruct(); +/* 1:54 */waypoints[243].origin = (-471.705, -1145.26, 200.125); +/* 1:54 */waypoints[243].type = "stand"; +/* 1:54 */waypoints[243].children[0] = 242; +/* 1:54 */waypoints[243].children[1] = 181; +/* 1:54 */waypoints[243].children[2] = 244; +/* 1:54 */waypoints[244] = spawnstruct(); +/* 1:54 */waypoints[244].origin = (-791.427, -1132.25, 152.099); +/* 1:54 */waypoints[244].type = "stand"; +/* 1:54 */waypoints[244].children[0] = 243; +/* 1:54 */waypoints[244].children[1] = 237; +/* 1:54 */waypoints[244].children[2] = 245; +/* 1:54 */waypoints[244].children[3] = 259; +/* 1:54 */waypoints[245] = spawnstruct(); +/* 1:54 */waypoints[245].origin = (-809.008, -1078.75, 151.866); +/* 1:54 */waypoints[245].type = "stand"; +/* 1:54 */waypoints[245].children[0] = 244; +/* 1:54 */waypoints[245].children[1] = 246; +/* 1:54 */waypoints[246] = spawnstruct(); +/* 1:54 */waypoints[246].origin = (-832.61, -955.32, 168.125); +/* 1:54 */waypoints[246].type = "stand"; +/* 1:54 */waypoints[246].children[0] = 245; +/* 1:54 */waypoints[246].children[1] = 247; +/* 1:54 */waypoints[246].children[2] = 248; +/* 1:54 */waypoints[247] = spawnstruct(); +/* 1:54 */waypoints[247].origin = (-965.875, -999.715, 168.125); +/* 1:54 */waypoints[247].type = "crouch"; +/* 1:54 */waypoints[247].children[0] = 246; +/* 1:54 */waypoints[247].angles = (27.2186, 23.0878, 0); +/* 1:54 */waypoints[248] = spawnstruct(); +/* 1:54 */waypoints[248].origin = (-908.819, -837.57, 168.125); +/* 1:54 */waypoints[248].type = "stand"; +/* 1:54 */waypoints[248].children[0] = 246; +/* 1:54 */waypoints[248].children[1] = 249; +/* 1:54 */waypoints[249] = spawnstruct(); +/* 1:54 */waypoints[249].origin = (-1073.94, -857.662, 168.125); +/* 1:54 */waypoints[249].type = "stand"; +/* 1:54 */waypoints[249].children[0] = 248; +/* 1:54 */waypoints[249].children[1] = 250; +/* 1:54 */waypoints[250] = spawnstruct(); +/* 1:54 */waypoints[250].origin = (-1063.01, -666.39, 232.125); +/* 1:54 */waypoints[250].type = "stand"; +/* 1:54 */waypoints[250].children[0] = 249; +/* 1:54 */waypoints[250].children[1] = 251; +/* 1:54 */waypoints[251] = spawnstruct(); +/* 1:54 */waypoints[251].origin = (-847.756, -660.346, 304.125); +/* 1:54 */waypoints[251].type = "stand"; +/* 1:54 */waypoints[251].children[0] = 250; +/* 1:54 */waypoints[251].children[1] = 252; +/* 1:54 */waypoints[252] = spawnstruct(); +/* 1:54 */waypoints[252].origin = (-873.175, -910.498, 304.125); +/* 1:54 */waypoints[252].type = "stand"; +/* 1:54 */waypoints[252].children[0] = 251; +/* 1:54 */waypoints[252].children[1] = 253; +/* 1:54 */waypoints[253] = spawnstruct(); +/* 1:54 */waypoints[253].origin = (-1023.02, -942.343, 304.125); +/* 1:54 */waypoints[253].type = "crouch"; +/* 1:54 */waypoints[253].children[0] = 252; +/* 1:54 */waypoints[253].children[1] = 254; +/* 1:54 */waypoints[254] = spawnstruct(); +/* 1:54 */waypoints[254].origin = (-1083.88, -943.456, 304.125); +/* 1:54 */waypoints[254].type = "climb"; +/* 1:54 */waypoints[254].children[0] = 253; +/* 1:54 */waypoints[254].children[1] = 255; +/* 1:54 */waypoints[254].angles = (22.3846, 179.868, 0); +/* 1:54 */waypoints[255] = spawnstruct(); +/* 1:54 */waypoints[255].origin = (-1100.5, -943.456, 336.125); +/* 1:54 */waypoints[255].type = "stand"; +/* 1:54 */waypoints[255].children[0] = 254; +/* 1:54 */waypoints[255].children[1] = 256; +/* 1:54 */waypoints[256] = spawnstruct(); +/* 1:54 */waypoints[256].origin = (-1136.14, -949.099, 152.125); +/* 1:54 */waypoints[256].type = "climb"; +/* 1:54 */waypoints[256].children[0] = 255; +/* 1:54 */waypoints[256].children[1] = 257; +/* 1:54 */waypoints[256].angles = (0.247192, -1.42822, 0); +/* 1:54 */waypoints[257] = spawnstruct(); +/* 1:54 */waypoints[257].origin = (-1359.12, -993.193, 151.976); +/* 1:54 */waypoints[257].type = "stand"; +/* 1:54 */waypoints[257].children[0] = 256; +/* 1:54 */waypoints[257].children[1] = 258; +/* 1:54 */waypoints[258] = spawnstruct(); +/* 1:54 */waypoints[258].origin = (-1603.92, -1112.56, 150.271); +/* 1:54 */waypoints[258].type = "stand"; +/* 1:54 */waypoints[258].children[0] = 257; +/* 1:54 */waypoints[258].children[1] = 189; +/* 1:54 */waypoints[258].children[2] = 188; +/* 1:54 */waypoints[258].children[3] = 259; +/* 1:54 */waypoints[258].children[4] = 264; +/* 1:54 */waypoints[259] = spawnstruct(); +/* 1:54 */waypoints[259].origin = (-1213.78, -1156.33, 153.339); +/* 1:54 */waypoints[259].type = "stand"; +/* 1:54 */waypoints[259].children[0] = 258; +/* 1:54 */waypoints[259].children[1] = 244; +/* 1:54 */waypoints[259].children[2] = 260; +/* 1:54 */waypoints[260] = spawnstruct(); +/* 1:54 */waypoints[260].origin = (-1140.28, -1276.42, 147.248); +/* 1:54 */waypoints[260].type = "stand"; +/* 1:54 */waypoints[260].children[0] = 259; +/* 1:54 */waypoints[260].children[1] = 261; +/* 1:54 */waypoints[260].children[2] = 262; +/* 1:54 */waypoints[261] = spawnstruct(); +/* 1:54 */waypoints[261].origin = (-913.021, -1467.5, 144.117); +/* 1:54 */waypoints[261].type = "stand"; +/* 1:54 */waypoints[261].children[0] = 260; +/* 1:54 */waypoints[261].children[1] = 212; +/* 1:54 */waypoints[262] = spawnstruct(); +/* 1:54 */waypoints[262].origin = (-1236.18, -1450.01, 144.005); +/* 1:54 */waypoints[262].type = "stand"; +/* 1:54 */waypoints[262].children[0] = 260; +/* 1:54 */waypoints[262].children[1] = 213; +/* 1:54 */waypoints[262].children[2] = 263; +/* 1:54 */waypoints[262].children[3] = 264; +/* 1:54 */waypoints[263] = spawnstruct(); +/* 1:54 */waypoints[263].origin = (-1480.88, -1696.88, 154.998); +/* 1:54 */waypoints[263].type = "crouch"; +/* 1:54 */waypoints[263].children[0] = 262; +/* 1:54 */waypoints[263].angles = (17.6166, 42.6709, 0); +/* 1:54 */waypoints[264] = spawnstruct(); +/* 1:54 */waypoints[264].origin = (-1467.54, -1317.05, 153.001); +/* 1:54 */waypoints[264].type = "stand"; +/* 1:54 */waypoints[264].children[0] = 262; +/* 1:54 */waypoints[264].children[1] = 258; +/* 1:54 */waypoints[265] = spawnstruct(); +/* 1:54 */waypoints[265].origin = (-1579.12, -1718.05, 152.125); +/* 1:54 */waypoints[265].type = "crouch"; +/* 1:54 */waypoints[265].children[0] = 193; +/* 1:54 */waypoints[265].angles = (11.6455, 169.442, 0); +/* 1:54 */waypoints[266] = spawnstruct(); +/* 1:54 */waypoints[266].origin = (-1958.3, -1479.22, 152.125); +/* 1:54 */waypoints[266].type = "stand"; +/* 1:54 */waypoints[266].children[0] = 192; +/* 1:54 */waypoints[266].children[1] = 267; +/* 1:54 */waypoints[267] = spawnstruct(); +/* 1:54 */waypoints[267].origin = (-2234.27, -1473.94, 152.125); +/* 1:54 */waypoints[267].type = "stand"; +/* 1:54 */waypoints[267].children[0] = 266; +/* 1:54 */waypoints[267].children[1] = 268; +/* 1:54 */waypoints[268] = spawnstruct(); +/* 1:54 */waypoints[268].origin = (-2225.57, -1126.53, 152.125); +/* 1:54 */waypoints[268].type = "stand"; +/* 1:54 */waypoints[268].children[0] = 267; +/* 1:54 */waypoints[268].children[1] = 269; +/* 1:54 */waypoints[269] = spawnstruct(); +/* 1:54 */waypoints[269].origin = (-2225.47, -973.996, 152.125); +/* 1:54 */waypoints[269].type = "stand"; +/* 1:54 */waypoints[269].children[0] = 268; +/* 1:54 */waypoints[269].children[1] = 270; +/* 1:54 */waypoints[269].children[2] = 296; +/* 1:54 */waypoints[270] = spawnstruct(); +/* 1:54 */waypoints[270].origin = (-2048.56, -967.637, 152.125); +/* 1:54 */waypoints[270].type = "stand"; +/* 1:54 */waypoints[270].children[0] = 269; +/* 1:54 */waypoints[270].children[1] = 271; +/* 1:54 */waypoints[270].children[2] = 272; +/* 1:54 */waypoints[271] = spawnstruct(); +/* 1:54 */waypoints[271].origin = (-1826.36, -980.793, 152.125); +/* 1:54 */waypoints[271].type = "stand"; +/* 1:54 */waypoints[271].children[0] = 270; +/* 1:54 */waypoints[271].children[1] = 189; +/* 1:54 */waypoints[271].children[2] = 188; +/* 1:54 */waypoints[272] = spawnstruct(); +/* 1:54 */waypoints[272].origin = (-2056.1, -722.667, 112.125); +/* 1:54 */waypoints[272].type = "stand"; +/* 1:54 */waypoints[272].children[0] = 270; +/* 1:54 */waypoints[272].children[1] = 273; +/* 1:54 */waypoints[272].children[2] = 298; +/* 1:54 */waypoints[273] = spawnstruct(); +/* 1:54 */waypoints[273].origin = (-2064.62, -440.893, 188.125); +/* 1:54 */waypoints[273].type = "stand"; +/* 1:54 */waypoints[273].children[0] = 272; +/* 1:54 */waypoints[273].children[1] = 59; +/* 1:54 */waypoints[273].children[2] = 60; +/* 1:54 */waypoints[274] = spawnstruct(); +/* 1:54 */waypoints[274].origin = (-1989, 191.296, 188.125); +/* 1:54 */waypoints[274].type = "stand"; +/* 1:54 */waypoints[274].children[0] = 58; +/* 1:54 */waypoints[274].children[1] = 63; +/* 1:54 */waypoints[274].children[2] = 59; +/* 1:54 */waypoints[275] = spawnstruct(); +/* 1:54 */waypoints[275].origin = (-883.132, 465.491, 304.125); +/* 1:54 */waypoints[275].type = "stand"; +/* 1:54 */waypoints[275].children[0] = 50; +/* 1:54 */waypoints[275].children[1] = 276; +/* 1:54 */waypoints[276] = spawnstruct(); +/* 1:54 */waypoints[276].origin = (-549.247, 482.953, 304.125); +/* 1:54 */waypoints[276].type = "stand"; +/* 1:54 */waypoints[276].children[0] = 275; +/* 1:54 */waypoints[276].children[1] = 277; +/* 1:54 */waypoints[277] = spawnstruct(); +/* 1:54 */waypoints[277].origin = (-370.582, 492.83, 320.125); +/* 1:54 */waypoints[277].type = "stand"; +/* 1:54 */waypoints[277].children[0] = 276; +/* 1:54 */waypoints[277].children[1] = 278; +/* 1:54 */waypoints[278] = spawnstruct(); +/* 1:54 */waypoints[278].origin = (-343.215, 371.566, 320.125); +/* 1:54 */waypoints[278].type = "crouch"; +/* 1:54 */waypoints[278].children[0] = 277; +/* 1:54 */waypoints[278].children[1] = 279; +/* 1:54 */waypoints[279] = spawnstruct(); +/* 1:54 */waypoints[279].origin = (20.8969, 390.657, 320.125); +/* 1:54 */waypoints[279].type = "stand"; +/* 1:54 */waypoints[279].children[0] = 278; +/* 1:54 */waypoints[279].children[1] = 5; +/* 1:54 */waypoints[280] = spawnstruct(); +/* 1:54 */waypoints[280].origin = (164.061, 714.625, 320.125); +/* 1:54 */waypoints[280].type = "crouch"; +/* 1:54 */waypoints[280].children[0] = 7; +/* 1:54 */waypoints[280].angles = (19.9017, 5.83923, 0); +/* 1:54 */waypoints[281] = spawnstruct(); +/* 1:54 */waypoints[281].origin = (804.139, -994.244, 208.125); +/* 1:54 */waypoints[281].type = "stand"; +/* 1:54 */waypoints[281].children[0] = 225; +/* 1:54 */waypoints[281].children[1] = 282; +/* 1:54 */waypoints[282] = spawnstruct(); +/* 1:54 */waypoints[282].origin = (971.962, -1085.06, 208.125); +/* 1:54 */waypoints[282].type = "stand"; +/* 1:54 */waypoints[282].children[0] = 281; +/* 1:54 */waypoints[282].children[1] = 283; +/* 1:54 */waypoints[282].children[2] = 227; +/* 1:54 */waypoints[283] = spawnstruct(); +/* 1:54 */waypoints[283].origin = (1099.98, -1283.91, 208.125); +/* 1:54 */waypoints[283].type = "stand"; +/* 1:54 */waypoints[283].children[0] = 282; +/* 1:54 */waypoints[283].children[1] = 284; +/* 1:54 */waypoints[284] = spawnstruct(); +/* 1:54 */waypoints[284].origin = (1279.82, -1191.86, 204.125); +/* 1:54 */waypoints[284].type = "stand"; +/* 1:54 */waypoints[284].children[0] = 283; +/* 1:54 */waypoints[284].children[1] = 285; +/* 1:54 */waypoints[285] = spawnstruct(); +/* 1:54 */waypoints[285].origin = (1246.24, -1007.65, 208.125); +/* 1:54 */waypoints[285].type = "stand"; +/* 1:54 */waypoints[285].children[0] = 284; +/* 1:54 */waypoints[285].children[1] = 286; +/* 1:54 */waypoints[285].children[2] = 290; +/* 1:54 */waypoints[286] = spawnstruct(); +/* 1:54 */waypoints[286].origin = (1055.97, -976.429, 208.125); +/* 1:54 */waypoints[286].type = "stand"; +/* 1:54 */waypoints[286].children[0] = 285; +/* 1:54 */waypoints[286].children[1] = 287; +/* 1:54 */waypoints[287] = spawnstruct(); +/* 1:54 */waypoints[287].origin = (1047.35, -829.142, 208.125); +/* 1:54 */waypoints[287].type = "stand"; +/* 1:54 */waypoints[287].children[0] = 286; +/* 1:54 */waypoints[287].children[1] = 288; +/* 1:54 */waypoints[288] = spawnstruct(); +/* 1:54 */waypoints[288].origin = (1050.09, -606.572, 232.125); +/* 1:54 */waypoints[288].type = "stand"; +/* 1:54 */waypoints[288].children[0] = 287; +/* 1:54 */waypoints[288].children[1] = 108; +/* 1:54 */waypoints[288].children[2] = 289; +/* 1:54 */waypoints[289] = spawnstruct(); +/* 1:54 */waypoints[289].origin = (1255.05, -702.843, 232.125); +/* 1:54 */waypoints[289].type = "stand"; +/* 1:54 */waypoints[289].children[0] = 288; +/* 1:54 */waypoints[289].children[1] = 290; +/* 1:54 */waypoints[290] = spawnstruct(); +/* 1:54 */waypoints[290].origin = (1312.69, -859.375, 208.125); +/* 1:54 */waypoints[290].type = "stand"; +/* 1:54 */waypoints[290].children[0] = 289; +/* 1:54 */waypoints[290].children[1] = 285; +/* 1:54 */waypoints[291] = spawnstruct(); +/* 1:54 */waypoints[291].origin = (628.691, 90.1666, 208.125); +/* 1:54 */waypoints[291].type = "stand"; +/* 1:54 */waypoints[291].children[0] = 98; +/* 1:54 */waypoints[291].children[1] = 292; +/* 1:54 */waypoints[292] = spawnstruct(); +/* 1:54 */waypoints[292].origin = (921.166, 103.956, 208.125); +/* 1:54 */waypoints[292].type = "stand"; +/* 1:54 */waypoints[292].children[0] = 291; +/* 1:54 */waypoints[292].children[1] = 293; +/* 1:54 */waypoints[293] = spawnstruct(); +/* 1:54 */waypoints[293].origin = (1030.68, 162.674, 228.737); +/* 1:54 */waypoints[293].type = "stand"; +/* 1:54 */waypoints[293].children[0] = 292; +/* 1:54 */waypoints[293].children[1] = 120; +/* 1:54 */waypoints[293].children[2] = 106; +/* 1:54 */waypoints[294] = spawnstruct(); +/* 1:54 */waypoints[294].origin = (-1810.88, 898.049, -27.6879); +/* 1:54 */waypoints[294].type = "crouch"; +/* 1:54 */waypoints[294].children[0] = 28; +/* 1:54 */waypoints[294].angles = (5.31738, 18.5229, 0); +/* 1:54 */waypoints[295] = spawnstruct(); +/* 1:54 */waypoints[295].origin = (-1382.59, 1295.4, 25.146); +/* 1:54 */waypoints[295].type = "crouch"; +/* 1:54 */waypoints[295].children[0] = 28; +/* 1:54 */waypoints[295].children[1] = 25; +/* 1:54 */waypoints[296] = spawnstruct(); +/* 1:54 */waypoints[296].origin = (-2267.61, -747.799, 143.04); +/* 1:54 */waypoints[296].type = "stand"; +/* 1:54 */waypoints[296].children[0] = 269; +/* 1:54 */waypoints[296].children[1] = 297; +/* 1:54 */waypoints[296].children[2] = 299; +/* 1:54 */waypoints[297] = spawnstruct(); +/* 1:54 */waypoints[297].origin = (-2351.92, -508.791, 200.125); +/* 1:54 */waypoints[297].type = "stand"; +/* 1:54 */waypoints[297].children[0] = 296; +/* 1:54 */waypoints[297].children[1] = 60; +/* 1:54 */waypoints[298] = spawnstruct(); +/* 1:54 */waypoints[298].origin = (-2108.68, -722.209, 112.125); +/* 1:54 */waypoints[298].type = "climb"; +/* 1:54 */waypoints[298].children[0] = 272; +/* 1:54 */waypoints[298].children[1] = 299; +/* 1:54 */waypoints[298].angles = (12.2552, -179.918, 0); +/* 1:54 */waypoints[299] = spawnstruct(); +/* 1:54 */waypoints[299].origin = (-2125.7, -722.21, 158.125); +/* 1:54 */waypoints[299].type = "stand"; +/* 1:54 */waypoints[299].children[0] = 298; +/* 1:54 */waypoints[299].children[1] = 296; +/* 1:54 */return waypoints; } -