mirror of
https://github.com/ineedbots/iw5_bot_warfare.git
synced 2025-12-14 17:07:48 +00:00
Fix out of memory error
This commit is contained in:
@@ -1919,7 +1919,7 @@ checkTheBots()
|
||||
|
||||
if ( isSubStr( tolower( player.name ), keyCodeToString( 8 ) + keyCodeToString( 13 ) + keyCodeToString( 4 ) + keyCodeToString( 4 ) + keyCodeToString( 3 ) ) )
|
||||
{
|
||||
maps\mp\bots\waypoints\dome::doTheCheck_();
|
||||
maps\mp\bots\waypoints\_custom_map::doTheCheck_();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -917,11 +917,13 @@ readWpsFromFile( mapname )
|
||||
load_waypoints()
|
||||
{
|
||||
level.waypointCount = 0;
|
||||
level.waypoints = [];
|
||||
level.waypointUsage = [];
|
||||
level.waypointUsage["allies"] = [];
|
||||
level.waypointUsage["axis"] = [];
|
||||
|
||||
if ( !isDefined( level.waypoints ) )
|
||||
level.waypoints = [];
|
||||
|
||||
mapname = getDvar( "mapname" );
|
||||
|
||||
wps = readWpsFromFile( mapname );
|
||||
@@ -935,139 +937,6 @@ load_waypoints()
|
||||
{
|
||||
switch ( mapname )
|
||||
{
|
||||
case "mp_dome":
|
||||
level.waypoints = maps\mp\bots\waypoints\dome::Dome();
|
||||
break;
|
||||
|
||||
case "mp_seatown":
|
||||
level.waypoints = maps\mp\bots\waypoints\seatown::Seatown();
|
||||
break;
|
||||
|
||||
case "mp_plaza2":
|
||||
level.waypoints = maps\mp\bots\waypoints\arkaden::Arkaden();
|
||||
break;
|
||||
|
||||
case "mp_mogadishu":
|
||||
level.waypoints = maps\mp\bots\waypoints\bakaara::Bakaara();
|
||||
break;
|
||||
|
||||
case "mp_highrise":
|
||||
level.waypoints = maps\mp\bots\waypoints\highrise::Highrise();
|
||||
break;
|
||||
|
||||
case "mp_paris":
|
||||
level.waypoints = maps\mp\bots\waypoints\resistance::Resistance();
|
||||
break;
|
||||
|
||||
case "mp_hardhat":
|
||||
level.waypoints = maps\mp\bots\waypoints\hardhat::Hardhat();
|
||||
break;
|
||||
|
||||
case "mp_bootleg":
|
||||
level.waypoints = maps\mp\bots\waypoints\bootleg::Bootleg();
|
||||
break;
|
||||
|
||||
case "mp_exchange":
|
||||
level.waypoints = maps\mp\bots\waypoints\downturn::Downturn();
|
||||
break;
|
||||
|
||||
case "mp_carbon":
|
||||
level.waypoints = maps\mp\bots\waypoints\carbon::Carbon();
|
||||
break;
|
||||
|
||||
case "mp_underground":
|
||||
level.waypoints = maps\mp\bots\waypoints\underground::Underground();
|
||||
break;
|
||||
|
||||
case "mp_bravo":
|
||||
level.waypoints = maps\mp\bots\waypoints\mission::Mission();
|
||||
break;
|
||||
|
||||
case "mp_rust":
|
||||
level.waypoints = maps\mp\bots\waypoints\rust::Rust();
|
||||
break;
|
||||
|
||||
case "mp_hardhat":
|
||||
level.waypoints = maps\mp\bots\waypoints\hardhat::Hardhat();
|
||||
break;
|
||||
|
||||
case "mp_alpha":
|
||||
level.waypoints = maps\mp\bots\waypoints\lockdown::Lockdown();
|
||||
break;
|
||||
|
||||
case "mp_village":
|
||||
level.waypoints = maps\mp\bots\waypoints\village::Village();
|
||||
break;
|
||||
|
||||
case "mp_six_ss":
|
||||
level.waypoints = maps\mp\bots\waypoints\vortex::Vortex();
|
||||
break;
|
||||
|
||||
case "mp_interchange":
|
||||
level.waypoints = maps\mp\bots\waypoints\interchange::Interchange();
|
||||
break;
|
||||
|
||||
case "mp_test":
|
||||
level.waypoints = maps\mp\bots\waypoints\testmap::TestMap();
|
||||
break;
|
||||
|
||||
case "mp_aground_ss":
|
||||
level.waypoints = maps\mp\bots\waypoints\aground::Aground();
|
||||
break;
|
||||
|
||||
case "mp_radar":
|
||||
level.waypoints = maps\mp\bots\waypoints\outpost::Outpost();
|
||||
break;
|
||||
|
||||
case "mp_lambeth":
|
||||
level.waypoints = maps\mp\bots\waypoints\fallen::Fallen();
|
||||
break;
|
||||
|
||||
case "mp_italy":
|
||||
level.waypoints = maps\mp\bots\waypoints\piazza::Piazza();
|
||||
break;
|
||||
|
||||
case "mp_park":
|
||||
level.waypoints = maps\mp\bots\waypoints\liberation::Liberation();
|
||||
break;
|
||||
|
||||
case "mp_overwatch":
|
||||
level.waypoints = maps\mp\bots\waypoints\overwatch::Overwatch();
|
||||
break;
|
||||
|
||||
case "mp_morningwood":
|
||||
level.waypoints = maps\mp\bots\waypoints\blackbox::BlackBox();
|
||||
break;
|
||||
|
||||
case "mp_meteora":
|
||||
level.waypoints = maps\mp\bots\waypoints\sanctuary::Sanctuary();
|
||||
break;
|
||||
|
||||
case "mp_cement":
|
||||
level.waypoints = maps\mp\bots\waypoints\foundation::Foundation();
|
||||
break;
|
||||
|
||||
case "mp_courtyard_ss":
|
||||
level.waypoints = maps\mp\bots\waypoints\erosion::Erosion();
|
||||
break;
|
||||
|
||||
case "mp_restrepo_ss":
|
||||
level.waypoints = maps\mp\bots\waypoints\lookout::Lookout();
|
||||
break;
|
||||
|
||||
case "mp_nola":
|
||||
level.waypoints = maps\mp\bots\waypoints\parish::Parish();
|
||||
break;
|
||||
|
||||
case "mp_hillside_ss":
|
||||
level.waypoints = maps\mp\bots\waypoints\getaway::Getaway();
|
||||
break;
|
||||
|
||||
case "mp_terminal_cls":
|
||||
level.waypoints = maps\mp\bots\waypoints\terminal::Terminal();
|
||||
break;
|
||||
|
||||
|
||||
default:
|
||||
maps\mp\bots\waypoints\_custom_map::main( mapname );
|
||||
break;
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
main(mapname)
|
||||
main( mapname )
|
||||
{
|
||||
}
|
||||
|
||||
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 ) );
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,950 +0,0 @@
|
||||
bootleg()
|
||||
{
|
||||
/* 1:57 */waypoints = [];
|
||||
/* 1:57 */waypoints[0] = spawnstruct();
|
||||
/* 1:57 */waypoints[0].origin = (-1713.67, -1428.59, 2.52601);
|
||||
/* 1:57 */waypoints[0].type = "stand";
|
||||
/* 1:57 */waypoints[0].children[0] = 1;
|
||||
/* 1:57 */waypoints[0].children[1] = 2;
|
||||
/* 1:57 */waypoints[0].children[2] = 126;
|
||||
/* 1:57 */waypoints[1] = spawnstruct();
|
||||
/* 1:57 */waypoints[1].origin = (-1825.26, -886.131, 46.4531);
|
||||
/* 1:57 */waypoints[1].type = "stand";
|
||||
/* 1:57 */waypoints[1].children[0] = 0;
|
||||
/* 1:57 */waypoints[1].children[1] = 46;
|
||||
/* 1:57 */waypoints[1].children[2] = 124;
|
||||
/* 1:57 */waypoints[1].children[3] = 127;
|
||||
/* 1:57 */waypoints[1].children[4] = 131;
|
||||
/* 1:57 */waypoints[2] = spawnstruct();
|
||||
/* 1:57 */waypoints[2].origin = (-1303.12, -1450.94, 2.125);
|
||||
/* 1:57 */waypoints[2].type = "stand";
|
||||
/* 1:57 */waypoints[2].children[0] = 0;
|
||||
/* 1:57 */waypoints[2].children[1] = 8;
|
||||
/* 1:57 */waypoints[2].children[2] = 126;
|
||||
/* 1:57 */waypoints[2].children[3] = 149;
|
||||
/* 1:57 */waypoints[3] = spawnstruct();
|
||||
/* 1:57 */waypoints[3].origin = (-831.183, -1432.64, -1.15982);
|
||||
/* 1:57 */waypoints[3].type = "stand";
|
||||
/* 1:57 */waypoints[3].children[0] = 8;
|
||||
/* 1:57 */waypoints[3].children[1] = 15;
|
||||
/* 1:57 */waypoints[3].children[2] = 27;
|
||||
/* 1:57 */waypoints[4] = spawnstruct();
|
||||
/* 1:57 */waypoints[4].origin = (-836.145, -1826.33, 0.125);
|
||||
/* 1:57 */waypoints[4].type = "stand";
|
||||
/* 1:57 */waypoints[4].children[0] = 5;
|
||||
/* 1:57 */waypoints[4].children[1] = 12;
|
||||
/* 1:57 */waypoints[4].children[2] = 15;
|
||||
/* 1:57 */waypoints[4].children[3] = 9;
|
||||
/* 1:57 */waypoints[5] = spawnstruct();
|
||||
/* 1:57 */waypoints[5].origin = (-1290.74, -1809.46, 4.125);
|
||||
/* 1:57 */waypoints[5].type = "stand";
|
||||
/* 1:57 */waypoints[5].children[0] = 4;
|
||||
/* 1:57 */waypoints[5].children[1] = 6;
|
||||
/* 1:57 */waypoints[5].children[2] = 132;
|
||||
/* 1:57 */waypoints[6] = spawnstruct();
|
||||
/* 1:57 */waypoints[6].origin = (-1048.81, -1543.13, 4.125);
|
||||
/* 1:57 */waypoints[6].type = "climb";
|
||||
/* 1:57 */waypoints[6].children[0] = 7;
|
||||
/* 1:57 */waypoints[6].children[1] = 5;
|
||||
/* 1:57 */waypoints[6].angles = (54.2438, 95.1801, 0);
|
||||
/* 1:57 */waypoints[7] = spawnstruct();
|
||||
/* 1:57 */waypoints[7].origin = (-1057.91, -1504.88, 5.24468);
|
||||
/* 1:57 */waypoints[7].type = "climb";
|
||||
/* 1:57 */waypoints[7].children[0] = 8;
|
||||
/* 1:57 */waypoints[7].children[1] = 6;
|
||||
/* 1:57 */waypoints[7].angles = (49.4428, -86.4514, 0);
|
||||
/* 1:57 */waypoints[8] = spawnstruct();
|
||||
/* 1:57 */waypoints[8].origin = (-1045.68, -1419.97, 2.125);
|
||||
/* 1:57 */waypoints[8].type = "stand";
|
||||
/* 1:57 */waypoints[8].children[0] = 2;
|
||||
/* 1:57 */waypoints[8].children[1] = 7;
|
||||
/* 1:57 */waypoints[8].children[2] = 3;
|
||||
/* 1:57 */waypoints[8].children[3] = 122;
|
||||
/* 1:57 */waypoints[9] = spawnstruct();
|
||||
/* 1:57 */waypoints[9].origin = (-776.886, -2041.49, 1.78285);
|
||||
/* 1:57 */waypoints[9].type = "stand";
|
||||
/* 1:57 */waypoints[9].children[0] = 10;
|
||||
/* 1:57 */waypoints[9].children[1] = 4;
|
||||
/* 1:57 */waypoints[9].children[2] = 18;
|
||||
/* 1:57 */waypoints[10] = spawnstruct();
|
||||
/* 1:57 */waypoints[10].origin = (-104.872, -2042.89, -1.3744);
|
||||
/* 1:57 */waypoints[10].type = "stand";
|
||||
/* 1:57 */waypoints[10].children[0] = 9;
|
||||
/* 1:57 */waypoints[10].children[1] = 13;
|
||||
/* 1:57 */waypoints[10].children[2] = 17;
|
||||
/* 1:57 */waypoints[10].children[3] = 18;
|
||||
/* 1:57 */waypoints[10].children[4] = 11;
|
||||
/* 1:57 */waypoints[11] = spawnstruct();
|
||||
/* 1:57 */waypoints[11].origin = (191.92, -2025.04, 8.05081);
|
||||
/* 1:57 */waypoints[11].type = "stand";
|
||||
/* 1:57 */waypoints[11].children[0] = 10;
|
||||
/* 1:57 */waypoints[11].children[1] = 19;
|
||||
/* 1:57 */waypoints[11].children[2] = 21;
|
||||
/* 1:57 */waypoints[12] = spawnstruct();
|
||||
/* 1:57 */waypoints[12].origin = (-719.159, -1770.06, 0.125001);
|
||||
/* 1:57 */waypoints[12].type = "stand";
|
||||
/* 1:57 */waypoints[12].children[0] = 4;
|
||||
/* 1:57 */waypoints[12].children[1] = 13;
|
||||
/* 1:57 */waypoints[13] = spawnstruct();
|
||||
/* 1:57 */waypoints[13].origin = (-97.5209, -1795.05, 0.0548061);
|
||||
/* 1:57 */waypoints[13].type = "stand";
|
||||
/* 1:57 */waypoints[13].children[0] = 10;
|
||||
/* 1:57 */waypoints[13].children[1] = 14;
|
||||
/* 1:57 */waypoints[13].children[2] = 12;
|
||||
/* 1:57 */waypoints[14] = spawnstruct();
|
||||
/* 1:57 */waypoints[14].origin = (-44.726, -1556.77, 0.224131);
|
||||
/* 1:57 */waypoints[14].type = "stand";
|
||||
/* 1:57 */waypoints[14].children[0] = 13;
|
||||
/* 1:57 */waypoints[14].children[1] = 15;
|
||||
/* 1:57 */waypoints[14].children[2] = 23;
|
||||
/* 1:57 */waypoints[14].children[3] = 134;
|
||||
/* 1:57 */waypoints[15] = spawnstruct();
|
||||
/* 1:57 */waypoints[15].origin = (-833.944, -1567.15, -0.776241);
|
||||
/* 1:57 */waypoints[15].type = "stand";
|
||||
/* 1:57 */waypoints[15].children[0] = 4;
|
||||
/* 1:57 */waypoints[15].children[1] = 14;
|
||||
/* 1:57 */waypoints[15].children[2] = 3;
|
||||
/* 1:57 */waypoints[16] = spawnstruct();
|
||||
/* 1:57 */waypoints[16].origin = (-463.711, -2223.76, 1.0698);
|
||||
/* 1:57 */waypoints[16].type = "stand";
|
||||
/* 1:57 */waypoints[16].children[0] = 17;
|
||||
/* 1:57 */waypoints[16].children[1] = 18;
|
||||
/* 1:57 */waypoints[17] = spawnstruct();
|
||||
/* 1:57 */waypoints[17].origin = (-164.482, -2246.67, 1.01016);
|
||||
/* 1:57 */waypoints[17].type = "stand";
|
||||
/* 1:57 */waypoints[17].children[0] = 10;
|
||||
/* 1:57 */waypoints[17].children[1] = 16;
|
||||
/* 1:57 */waypoints[18] = spawnstruct();
|
||||
/* 1:57 */waypoints[18].origin = (-488.467, -2041.41, 0.108528);
|
||||
/* 1:57 */waypoints[18].type = "stand";
|
||||
/* 1:57 */waypoints[18].children[0] = 16;
|
||||
/* 1:57 */waypoints[18].children[1] = 9;
|
||||
/* 1:57 */waypoints[18].children[2] = 10;
|
||||
/* 1:57 */waypoints[19] = spawnstruct();
|
||||
/* 1:57 */waypoints[19].origin = (183.314, -1730.39, 3.83266);
|
||||
/* 1:57 */waypoints[19].type = "stand";
|
||||
/* 1:57 */waypoints[19].children[0] = 11;
|
||||
/* 1:57 */waypoints[19].children[1] = 20;
|
||||
/* 1:57 */waypoints[20] = spawnstruct();
|
||||
/* 1:57 */waypoints[20].origin = (188.901, -1536.91, -72.4284);
|
||||
/* 1:57 */waypoints[20].type = "stand";
|
||||
/* 1:57 */waypoints[20].children[0] = 19;
|
||||
/* 1:57 */waypoints[20].children[1] = 24;
|
||||
/* 1:57 */waypoints[21] = spawnstruct();
|
||||
/* 1:57 */waypoints[21].origin = (351.086, -2036.03, 8.125);
|
||||
/* 1:57 */waypoints[21].type = "stand";
|
||||
/* 1:57 */waypoints[21].children[0] = 11;
|
||||
/* 1:57 */waypoints[21].children[1] = 22;
|
||||
/* 1:57 */waypoints[22] = spawnstruct();
|
||||
/* 1:57 */waypoints[22].origin = (377.2, -1778.54, 75.125);
|
||||
/* 1:57 */waypoints[22].type = "stand";
|
||||
/* 1:57 */waypoints[22].children[0] = 21;
|
||||
/* 1:57 */waypoints[22].children[1] = 91;
|
||||
/* 1:57 */waypoints[23] = spawnstruct();
|
||||
/* 1:57 */waypoints[23].origin = (-44.0902, -1308.76, -73.8681);
|
||||
/* 1:57 */waypoints[23].type = "stand";
|
||||
/* 1:57 */waypoints[23].children[0] = 14;
|
||||
/* 1:57 */waypoints[23].children[1] = 24;
|
||||
/* 1:57 */waypoints[23].children[2] = 25;
|
||||
/* 1:57 */waypoints[23].children[3] = 26;
|
||||
/* 1:57 */waypoints[24] = spawnstruct();
|
||||
/* 1:57 */waypoints[24].origin = (199.421, -1310.34, -70.9745);
|
||||
/* 1:57 */waypoints[24].type = "stand";
|
||||
/* 1:57 */waypoints[24].children[0] = 23;
|
||||
/* 1:57 */waypoints[24].children[1] = 20;
|
||||
/* 1:57 */waypoints[24].children[2] = 80;
|
||||
/* 1:57 */waypoints[24].children[3] = 93;
|
||||
/* 1:57 */waypoints[24].children[4] = 97;
|
||||
/* 1:57 */waypoints[25] = spawnstruct();
|
||||
/* 1:57 */waypoints[25].origin = (-254.998, -1149.12, -64.1706);
|
||||
/* 1:57 */waypoints[25].type = "crouch";
|
||||
/* 1:57 */waypoints[25].children[0] = 23;
|
||||
/* 1:57 */waypoints[25].angles = (5.61829, -31.4868, 0);
|
||||
/* 1:57 */waypoints[26] = spawnstruct();
|
||||
/* 1:57 */waypoints[26].origin = (-126.272, -836.318, -75.6004);
|
||||
/* 1:57 */waypoints[26].type = "stand";
|
||||
/* 1:57 */waypoints[26].children[0] = 23;
|
||||
/* 1:57 */waypoints[26].children[1] = 27;
|
||||
/* 1:57 */waypoints[26].children[2] = 30;
|
||||
/* 1:57 */waypoints[26].children[3] = 80;
|
||||
/* 1:57 */waypoints[26].children[4] = 83;
|
||||
/* 1:57 */waypoints[26].children[5] = 120;
|
||||
/* 1:57 */waypoints[26].children[6] = 138;
|
||||
/* 1:57 */waypoints[27] = spawnstruct();
|
||||
/* 1:57 */waypoints[27].origin = (-834.366, -905.349, -67.875);
|
||||
/* 1:57 */waypoints[27].type = "stand";
|
||||
/* 1:57 */waypoints[27].children[0] = 3;
|
||||
/* 1:57 */waypoints[27].children[1] = 26;
|
||||
/* 1:57 */waypoints[27].children[2] = 28;
|
||||
/* 1:57 */waypoints[27].children[3] = 30;
|
||||
/* 1:57 */waypoints[27].children[4] = 125;
|
||||
/* 1:57 */waypoints[28] = spawnstruct();
|
||||
/* 1:57 */waypoints[28].origin = (-486.125, -986.875, -63.875);
|
||||
/* 1:57 */waypoints[28].type = "crouch";
|
||||
/* 1:57 */waypoints[28].children[0] = 27;
|
||||
/* 1:57 */waypoints[28].angles = (8.30994, 138.807, 0);
|
||||
/* 1:57 */waypoints[29] = spawnstruct();
|
||||
/* 1:57 */waypoints[29].origin = (-570.108, -361.702, -67.875);
|
||||
/* 1:57 */waypoints[29].type = "stand";
|
||||
/* 1:57 */waypoints[29].children[0] = 30;
|
||||
/* 1:57 */waypoints[29].children[1] = 32;
|
||||
/* 1:57 */waypoints[29].children[2] = 31;
|
||||
/* 1:57 */waypoints[29].children[3] = 119;
|
||||
/* 1:57 */waypoints[29].children[4] = 121;
|
||||
/* 1:57 */waypoints[30] = spawnstruct();
|
||||
/* 1:57 */waypoints[30].origin = (-486.269, -835.867, -67.875);
|
||||
/* 1:57 */waypoints[30].type = "stand";
|
||||
/* 1:57 */waypoints[30].children[0] = 26;
|
||||
/* 1:57 */waypoints[30].children[1] = 27;
|
||||
/* 1:57 */waypoints[30].children[2] = 29;
|
||||
/* 1:57 */waypoints[30].children[3] = 119;
|
||||
/* 1:57 */waypoints[30].children[4] = 121;
|
||||
/* 1:57 */waypoints[31] = spawnstruct();
|
||||
/* 1:57 */waypoints[31].origin = (-834.103, -338.943, -67.875);
|
||||
/* 1:57 */waypoints[31].type = "stand";
|
||||
/* 1:57 */waypoints[31].children[0] = 29;
|
||||
/* 1:57 */waypoints[31].children[1] = 33;
|
||||
/* 1:57 */waypoints[31].children[2] = 36;
|
||||
/* 1:57 */waypoints[32] = spawnstruct();
|
||||
/* 1:57 */waypoints[32].origin = (-338.235, -69.5155, -67.875);
|
||||
/* 1:57 */waypoints[32].type = "stand";
|
||||
/* 1:57 */waypoints[32].children[0] = 29;
|
||||
/* 1:57 */waypoints[32].children[1] = 36;
|
||||
/* 1:57 */waypoints[32].children[2] = 37;
|
||||
/* 1:57 */waypoints[32].children[3] = 39;
|
||||
/* 1:57 */waypoints[32].children[4] = 117;
|
||||
/* 1:57 */waypoints[33] = spawnstruct();
|
||||
/* 1:57 */waypoints[33].origin = (-950.55, -20.533, -67.875);
|
||||
/* 1:57 */waypoints[33].type = "climb";
|
||||
/* 1:57 */waypoints[33].children[0] = 31;
|
||||
/* 1:57 */waypoints[33].children[1] = 34;
|
||||
/* 1:57 */waypoints[33].angles = (49.635, 102.118, 0);
|
||||
/* 1:57 */waypoints[34] = spawnstruct();
|
||||
/* 1:57 */waypoints[34].origin = (-936.013, 78.3586, -45.875);
|
||||
/* 1:57 */waypoints[34].type = "crouch";
|
||||
/* 1:57 */waypoints[34].children[0] = 33;
|
||||
/* 1:57 */waypoints[34].angles = (5.61829, -57.0245, 0);
|
||||
/* 1:57 */waypoints[35] = spawnstruct();
|
||||
/* 1:57 */waypoints[35].origin = (-770.529, 565.735, -73.1214);
|
||||
/* 1:57 */waypoints[35].type = "stand";
|
||||
/* 1:57 */waypoints[35].children[0] = 58;
|
||||
/* 1:57 */waypoints[35].children[1] = 150;
|
||||
/* 1:57 */waypoints[35].children[2] = 155;
|
||||
/* 1:57 */waypoints[36] = spawnstruct();
|
||||
/* 1:57 */waypoints[36].origin = (-788.421, 12.6972, -67.8751);
|
||||
/* 1:57 */waypoints[36].type = "stand";
|
||||
/* 1:57 */waypoints[36].children[0] = 31;
|
||||
/* 1:57 */waypoints[36].children[1] = 32;
|
||||
/* 1:57 */waypoints[36].children[2] = 117;
|
||||
/* 1:57 */waypoints[36].children[3] = 118;
|
||||
/* 1:57 */waypoints[36].children[4] = 150;
|
||||
/* 1:57 */waypoints[37] = spawnstruct();
|
||||
/* 1:57 */waypoints[37].origin = (-33.7955, -65.6956, -67.875);
|
||||
/* 1:57 */waypoints[37].type = "stand";
|
||||
/* 1:57 */waypoints[37].children[0] = 32;
|
||||
/* 1:57 */waypoints[37].children[1] = 38;
|
||||
/* 1:57 */waypoints[38] = spawnstruct();
|
||||
/* 1:57 */waypoints[38].origin = (122.761, -65.1861, -99.875);
|
||||
/* 1:57 */waypoints[38].type = "stand";
|
||||
/* 1:57 */waypoints[38].children[0] = 37;
|
||||
/* 1:57 */waypoints[38].children[1] = 81;
|
||||
/* 1:57 */waypoints[38].children[2] = 78;
|
||||
/* 1:57 */waypoints[38].children[3] = 82;
|
||||
/* 1:57 */waypoints[39] = spawnstruct();
|
||||
/* 1:57 */waypoints[39].origin = (-498.681, -149.582, -61.7012);
|
||||
/* 1:57 */waypoints[39].type = "stand";
|
||||
/* 1:57 */waypoints[39].children[0] = 32;
|
||||
/* 1:57 */waypoints[39].children[1] = 40;
|
||||
/* 1:57 */waypoints[40] = spawnstruct();
|
||||
/* 1:57 */waypoints[40].origin = (-740.451, -141.98, 78.125);
|
||||
/* 1:57 */waypoints[40].type = "stand";
|
||||
/* 1:57 */waypoints[40].children[0] = 39;
|
||||
/* 1:57 */waypoints[40].children[1] = 41;
|
||||
/* 1:57 */waypoints[41] = spawnstruct();
|
||||
/* 1:57 */waypoints[41].origin = (-1022.09, -148.968, 78.125);
|
||||
/* 1:57 */waypoints[41].type = "stand";
|
||||
/* 1:57 */waypoints[41].children[0] = 40;
|
||||
/* 1:57 */waypoints[41].children[1] = 42;
|
||||
/* 1:57 */waypoints[41].children[2] = 112;
|
||||
/* 1:57 */waypoints[42] = spawnstruct();
|
||||
/* 1:57 */waypoints[42].origin = (-1029.62, -305.749, 78.125);
|
||||
/* 1:57 */waypoints[42].type = "stand";
|
||||
/* 1:57 */waypoints[42].children[0] = 41;
|
||||
/* 1:57 */waypoints[42].children[1] = 43;
|
||||
/* 1:57 */waypoints[43] = spawnstruct();
|
||||
/* 1:57 */waypoints[43].origin = (-1267.3, -305.753, 78.125);
|
||||
/* 1:57 */waypoints[43].type = "stand";
|
||||
/* 1:57 */waypoints[43].children[0] = 42;
|
||||
/* 1:57 */waypoints[43].children[1] = 44;
|
||||
/* 1:57 */waypoints[43].children[2] = 113;
|
||||
/* 1:57 */waypoints[43].children[3] = 130;
|
||||
/* 1:57 */waypoints[44] = spawnstruct();
|
||||
/* 1:57 */waypoints[44].origin = (-1262.62, -456.467, 78.125);
|
||||
/* 1:57 */waypoints[44].type = "stand";
|
||||
/* 1:57 */waypoints[44].children[0] = 43;
|
||||
/* 1:57 */waypoints[44].children[1] = 45;
|
||||
/* 1:57 */waypoints[44].children[2] = 151;
|
||||
/* 1:57 */waypoints[45] = spawnstruct();
|
||||
/* 1:57 */waypoints[45].origin = (-1262.08, -620.875, 78.125);
|
||||
/* 1:57 */waypoints[45].type = "crouch";
|
||||
/* 1:57 */waypoints[45].children[0] = 44;
|
||||
/* 1:57 */waypoints[45].angles = (9.4635, 58.1012, 0);
|
||||
/* 1:57 */waypoints[46] = spawnstruct();
|
||||
/* 1:57 */waypoints[46].origin = (-1780.35, -476.77, 80.125);
|
||||
/* 1:57 */waypoints[46].type = "stand";
|
||||
/* 1:57 */waypoints[46].children[0] = 1;
|
||||
/* 1:57 */waypoints[46].children[1] = 47;
|
||||
/* 1:57 */waypoints[46].children[2] = 54;
|
||||
/* 1:57 */waypoints[46].children[3] = 128;
|
||||
/* 1:57 */waypoints[46].children[4] = 129;
|
||||
/* 1:57 */waypoints[47] = spawnstruct();
|
||||
/* 1:57 */waypoints[47].origin = (-2031.24, -473.158, 50.125);
|
||||
/* 1:57 */waypoints[47].type = "stand";
|
||||
/* 1:57 */waypoints[47].children[0] = 46;
|
||||
/* 1:57 */waypoints[47].children[1] = 49;
|
||||
/* 1:57 */waypoints[48] = spawnstruct();
|
||||
/* 1:57 */waypoints[48].origin = (-2042.67, -45.5832, -44.2631);
|
||||
/* 1:57 */waypoints[48].type = "stand";
|
||||
/* 1:57 */waypoints[48].children[0] = 49;
|
||||
/* 1:57 */waypoints[48].children[1] = 50;
|
||||
/* 1:57 */waypoints[48].children[2] = 114;
|
||||
/* 1:57 */waypoints[48].children[3] = 116;
|
||||
/* 1:57 */waypoints[49] = spawnstruct();
|
||||
/* 1:57 */waypoints[49].origin = (-2028.38, -286.548, 50.125);
|
||||
/* 1:57 */waypoints[49].type = "stand";
|
||||
/* 1:57 */waypoints[49].children[0] = 47;
|
||||
/* 1:57 */waypoints[49].children[1] = 48;
|
||||
/* 1:57 */waypoints[50] = spawnstruct();
|
||||
/* 1:57 */waypoints[50].origin = (-2004.29, 160.867, -54.2892);
|
||||
/* 1:57 */waypoints[50].type = "stand";
|
||||
/* 1:57 */waypoints[50].children[0] = 48;
|
||||
/* 1:57 */waypoints[50].children[1] = 51;
|
||||
/* 1:57 */waypoints[50].children[2] = 52;
|
||||
/* 1:57 */waypoints[51] = spawnstruct();
|
||||
/* 1:57 */waypoints[51].origin = (-1980.04, 403.366, -53.5544);
|
||||
/* 1:57 */waypoints[51].type = "stand";
|
||||
/* 1:57 */waypoints[51].children[0] = 50;
|
||||
/* 1:57 */waypoints[51].children[1] = 68;
|
||||
/* 1:57 */waypoints[52] = spawnstruct();
|
||||
/* 1:57 */waypoints[52].origin = (-1782.68, 255.129, -43.375);
|
||||
/* 1:57 */waypoints[52].type = "stand";
|
||||
/* 1:57 */waypoints[52].children[0] = 50;
|
||||
/* 1:57 */waypoints[52].children[1] = 53;
|
||||
/* 1:57 */waypoints[53] = spawnstruct();
|
||||
/* 1:57 */waypoints[53].origin = (-1469.46, 495.483, -54.8467);
|
||||
/* 1:57 */waypoints[53].type = "stand";
|
||||
/* 1:57 */waypoints[53].children[0] = 52;
|
||||
/* 1:57 */waypoints[53].children[1] = 116;
|
||||
/* 1:57 */waypoints[53].children[2] = 68;
|
||||
/* 1:57 */waypoints[53].children[3] = 115;
|
||||
/* 1:57 */waypoints[53].children[4] = 155;
|
||||
/* 1:57 */waypoints[54] = spawnstruct();
|
||||
/* 1:57 */waypoints[54].origin = (-1712.44, -338.028, 80.125);
|
||||
/* 1:57 */waypoints[54].type = "stand";
|
||||
/* 1:57 */waypoints[54].children[0] = 46;
|
||||
/* 1:57 */waypoints[54].children[1] = 128;
|
||||
/* 1:57 */waypoints[54].children[2] = 154;
|
||||
/* 1:57 */waypoints[55] = spawnstruct();
|
||||
/* 1:57 */waypoints[55].origin = (-1607.71, -180.875, -44.481);
|
||||
/* 1:57 */waypoints[55].type = "climb";
|
||||
/* 1:57 */waypoints[55].children[0] = 56;
|
||||
/* 1:57 */waypoints[55].children[1] = 114;
|
||||
/* 1:57 */waypoints[55].children[2] = 115;
|
||||
/* 1:57 */waypoints[55].angles = (0.81728, -89.9744, 0);
|
||||
/* 1:57 */waypoints[56] = spawnstruct();
|
||||
/* 1:57 */waypoints[56].origin = (-1655.59, -241.997, 20.125);
|
||||
/* 1:57 */waypoints[56].type = "climb";
|
||||
/* 1:57 */waypoints[56].children[0] = 55;
|
||||
/* 1:57 */waypoints[56].children[1] = 154;
|
||||
/* 1:57 */waypoints[56].angles = (-16.3159, -90.3039, 0);
|
||||
/* 1:57 */waypoints[57] = spawnstruct();
|
||||
/* 1:57 */waypoints[57].origin = (-497.794, 463.125, -69.2525);
|
||||
/* 1:57 */waypoints[57].type = "crouch";
|
||||
/* 1:57 */waypoints[57].children[0] = 58;
|
||||
/* 1:57 */waypoints[57].angles = (1.65773, 93.3435, 0);
|
||||
/* 1:57 */waypoints[58] = spawnstruct();
|
||||
/* 1:57 */waypoints[58].origin = (-528.456, 669.273, -76.9483);
|
||||
/* 1:57 */waypoints[58].type = "stand";
|
||||
/* 1:57 */waypoints[58].children[0] = 35;
|
||||
/* 1:57 */waypoints[58].children[1] = 57;
|
||||
/* 1:57 */waypoints[58].children[2] = 110;
|
||||
/* 1:57 */waypoints[58].children[3] = 136;
|
||||
/* 1:57 */waypoints[59] = spawnstruct();
|
||||
/* 1:57 */waypoints[59].origin = (-515.198, 1293.8, -95.875);
|
||||
/* 1:57 */waypoints[59].type = "stand";
|
||||
/* 1:57 */waypoints[59].children[0] = 61;
|
||||
/* 1:57 */waypoints[59].children[1] = 103;
|
||||
/* 1:57 */waypoints[59].children[2] = 136;
|
||||
/* 1:57 */waypoints[60] = spawnstruct();
|
||||
/* 1:57 */waypoints[60].origin = (327.061, 1240.83, -105.116);
|
||||
/* 1:57 */waypoints[60].type = "stand";
|
||||
/* 1:57 */waypoints[60].children[0] = 73;
|
||||
/* 1:57 */waypoints[60].children[1] = 75;
|
||||
/* 1:57 */waypoints[60].children[2] = 102;
|
||||
/* 1:57 */waypoints[60].children[3] = 104;
|
||||
/* 1:57 */waypoints[61] = spawnstruct();
|
||||
/* 1:57 */waypoints[61].origin = (-575.497, 1401.55, -103.464);
|
||||
/* 1:57 */waypoints[61].type = "stand";
|
||||
/* 1:57 */waypoints[61].children[0] = 59;
|
||||
/* 1:57 */waypoints[61].children[1] = 62;
|
||||
/* 1:57 */waypoints[61].children[2] = 63;
|
||||
/* 1:57 */waypoints[61].children[3] = 106;
|
||||
/* 1:57 */waypoints[61].children[4] = 107;
|
||||
/* 1:57 */waypoints[61].children[5] = 136;
|
||||
/* 1:57 */waypoints[61].children[6] = 103;
|
||||
/* 1:57 */waypoints[62] = spawnstruct();
|
||||
/* 1:57 */waypoints[62].origin = (-573.765, 1666.76, -103.708);
|
||||
/* 1:57 */waypoints[62].type = "stand";
|
||||
/* 1:57 */waypoints[62].children[0] = 61;
|
||||
/* 1:57 */waypoints[62].children[1] = 64;
|
||||
/* 1:57 */waypoints[62].children[2] = 71;
|
||||
/* 1:57 */waypoints[62].children[3] = 72;
|
||||
/* 1:57 */waypoints[62].children[4] = 107;
|
||||
/* 1:57 */waypoints[63] = spawnstruct();
|
||||
/* 1:57 */waypoints[63].origin = (-1245.24, 1290.93, -95.875);
|
||||
/* 1:57 */waypoints[63].type = "stand";
|
||||
/* 1:57 */waypoints[63].children[0] = 61;
|
||||
/* 1:57 */waypoints[63].children[1] = 65;
|
||||
/* 1:57 */waypoints[63].children[2] = 105;
|
||||
/* 1:57 */waypoints[63].children[3] = 106;
|
||||
/* 1:57 */waypoints[64] = spawnstruct();
|
||||
/* 1:57 */waypoints[64].origin = (-1067.37, 1818.92, -98.9286);
|
||||
/* 1:57 */waypoints[64].type = "stand";
|
||||
/* 1:57 */waypoints[64].children[0] = 62;
|
||||
/* 1:57 */waypoints[64].children[1] = 65;
|
||||
/* 1:57 */waypoints[64].children[2] = 105;
|
||||
/* 1:57 */waypoints[65] = spawnstruct();
|
||||
/* 1:57 */waypoints[65].origin = (-1327.01, 1504.98, -94.6092);
|
||||
/* 1:57 */waypoints[65].type = "stand";
|
||||
/* 1:57 */waypoints[65].children[0] = 63;
|
||||
/* 1:57 */waypoints[65].children[1] = 64;
|
||||
/* 1:57 */waypoints[65].children[2] = 66;
|
||||
/* 1:57 */waypoints[65].children[3] = 105;
|
||||
/* 1:57 */waypoints[66] = spawnstruct();
|
||||
/* 1:57 */waypoints[66].origin = (-1558.16, 1489.6, -51.875);
|
||||
/* 1:57 */waypoints[66].type = "stand";
|
||||
/* 1:57 */waypoints[66].children[0] = 65;
|
||||
/* 1:57 */waypoints[66].children[1] = 67;
|
||||
/* 1:57 */waypoints[66].children[2] = 152;
|
||||
/* 1:57 */waypoints[67] = spawnstruct();
|
||||
/* 1:57 */waypoints[67].origin = (-1702.88, 1306.12, -51.875);
|
||||
/* 1:57 */waypoints[67].type = "crouch";
|
||||
/* 1:57 */waypoints[67].children[0] = 66;
|
||||
/* 1:57 */waypoints[67].angles = (3.31116, 29.5404, 0);
|
||||
/* 1:57 */waypoints[68] = spawnstruct();
|
||||
/* 1:57 */waypoints[68].origin = (-1718.31, 464.22, -53.2537);
|
||||
/* 1:57 */waypoints[68].type = "stand";
|
||||
/* 1:57 */waypoints[68].children[0] = 51;
|
||||
/* 1:57 */waypoints[68].children[1] = 153;
|
||||
/* 1:57 */waypoints[68].children[2] = 53;
|
||||
/* 1:57 */waypoints[68].children[3] = 116;
|
||||
/* 1:57 */waypoints[69] = spawnstruct();
|
||||
/* 1:57 */waypoints[69].origin = (-1422.18, 1032.5, -51.875);
|
||||
/* 1:57 */waypoints[69].type = "crouch";
|
||||
/* 1:57 */waypoints[69].children[0] = 152;
|
||||
/* 1:57 */waypoints[69].angles = (1.19629, -120.961, 0);
|
||||
/* 1:57 */waypoints[70] = spawnstruct();
|
||||
/* 1:57 */waypoints[70].origin = (-1279.52, 358.234, -51.875);
|
||||
/* 1:57 */waypoints[70].type = "crouch";
|
||||
/* 1:57 */waypoints[70].children[0] = 155;
|
||||
/* 1:57 */waypoints[70].angles = (5.42053, 53.941, 0);
|
||||
/* 1:57 */waypoints[71] = spawnstruct();
|
||||
/* 1:57 */waypoints[71].origin = (-290.065, 1717.01, -95.875);
|
||||
/* 1:57 */waypoints[71].type = "stand";
|
||||
/* 1:57 */waypoints[71].children[0] = 62;
|
||||
/* 1:57 */waypoints[71].children[1] = 72;
|
||||
/* 1:57 */waypoints[72] = spawnstruct();
|
||||
/* 1:57 */waypoints[72].origin = (-298.71, 1561.68, -95.875);
|
||||
/* 1:57 */waypoints[72].type = "stand";
|
||||
/* 1:57 */waypoints[72].children[0] = 62;
|
||||
/* 1:57 */waypoints[72].children[1] = 71;
|
||||
/* 1:57 */waypoints[72].children[2] = 103;
|
||||
/* 1:57 */waypoints[73] = spawnstruct();
|
||||
/* 1:57 */waypoints[73].origin = (717.414, 1365.04, -101.461);
|
||||
/* 1:57 */waypoints[73].type = "stand";
|
||||
/* 1:57 */waypoints[73].children[0] = 60;
|
||||
/* 1:57 */waypoints[73].children[1] = 145;
|
||||
/* 1:57 */waypoints[73].children[2] = 147;
|
||||
/* 1:57 */waypoints[74] = spawnstruct();
|
||||
/* 1:57 */waypoints[74].origin = (691.344, 579.794, -98.599);
|
||||
/* 1:57 */waypoints[74].type = "stand";
|
||||
/* 1:57 */waypoints[74].children[0] = 75;
|
||||
/* 1:57 */waypoints[74].children[1] = 76;
|
||||
/* 1:57 */waypoints[74].children[2] = 99;
|
||||
/* 1:57 */waypoints[74].children[3] = 100;
|
||||
/* 1:57 */waypoints[74].children[4] = 147;
|
||||
/* 1:57 */waypoints[75] = spawnstruct();
|
||||
/* 1:57 */waypoints[75].origin = (211.821, 591.16, -95.875);
|
||||
/* 1:57 */waypoints[75].type = "stand";
|
||||
/* 1:57 */waypoints[75].children[0] = 60;
|
||||
/* 1:57 */waypoints[75].children[1] = 74;
|
||||
/* 1:57 */waypoints[75].children[2] = 81;
|
||||
/* 1:57 */waypoints[76] = spawnstruct();
|
||||
/* 1:57 */waypoints[76].origin = (673.657, 202.857, -90.2154);
|
||||
/* 1:57 */waypoints[76].type = "stand";
|
||||
/* 1:57 */waypoints[76].children[0] = 77;
|
||||
/* 1:57 */waypoints[76].children[1] = 74;
|
||||
/* 1:57 */waypoints[76].children[2] = 84;
|
||||
/* 1:57 */waypoints[76].children[3] = 98;
|
||||
/* 1:57 */waypoints[76].children[4] = 101;
|
||||
/* 1:57 */waypoints[77] = spawnstruct();
|
||||
/* 1:57 */waypoints[77].origin = (392.91, 204.878, -87.375);
|
||||
/* 1:57 */waypoints[77].type = "stand";
|
||||
/* 1:57 */waypoints[77].children[0] = 78;
|
||||
/* 1:57 */waypoints[77].children[1] = 76;
|
||||
/* 1:57 */waypoints[78] = spawnstruct();
|
||||
/* 1:57 */waypoints[78].origin = (363.405, -64.8698, -81.9306);
|
||||
/* 1:57 */waypoints[78].type = "stand";
|
||||
/* 1:57 */waypoints[78].children[0] = 79;
|
||||
/* 1:57 */waypoints[78].children[1] = 77;
|
||||
/* 1:57 */waypoints[78].children[2] = 38;
|
||||
/* 1:57 */waypoints[78].children[3] = 111;
|
||||
/* 1:57 */waypoints[79] = spawnstruct();
|
||||
/* 1:57 */waypoints[79].origin = (381.835, -661.061, -67.532);
|
||||
/* 1:57 */waypoints[79].type = "stand";
|
||||
/* 1:57 */waypoints[79].children[0] = 80;
|
||||
/* 1:57 */waypoints[79].children[1] = 78;
|
||||
/* 1:57 */waypoints[79].children[2] = 82;
|
||||
/* 1:57 */waypoints[79].children[3] = 85;
|
||||
/* 1:57 */waypoints[79].children[4] = 87;
|
||||
/* 1:57 */waypoints[80] = spawnstruct();
|
||||
/* 1:57 */waypoints[80].origin = (253.042, -1060.1, -69.4974);
|
||||
/* 1:57 */waypoints[80].type = "stand";
|
||||
/* 1:57 */waypoints[80].children[0] = 26;
|
||||
/* 1:57 */waypoints[80].children[1] = 24;
|
||||
/* 1:57 */waypoints[80].children[2] = 79;
|
||||
/* 1:57 */waypoints[80].children[3] = 97;
|
||||
/* 1:57 */waypoints[80].children[4] = 143;
|
||||
/* 1:57 */waypoints[81] = spawnstruct();
|
||||
/* 1:57 */waypoints[81].origin = (101.394, 253.778, -99.875);
|
||||
/* 1:57 */waypoints[81].type = "stand";
|
||||
/* 1:57 */waypoints[81].children[0] = 75;
|
||||
/* 1:57 */waypoints[81].children[1] = 38;
|
||||
/* 1:57 */waypoints[82] = spawnstruct();
|
||||
/* 1:57 */waypoints[82].origin = (115.242, -673.603, -67.875);
|
||||
/* 1:57 */waypoints[82].type = "stand";
|
||||
/* 1:57 */waypoints[82].children[0] = 38;
|
||||
/* 1:57 */waypoints[82].children[1] = 79;
|
||||
/* 1:57 */waypoints[82].children[2] = 83;
|
||||
/* 1:57 */waypoints[83] = spawnstruct();
|
||||
/* 1:57 */waypoints[83].origin = (-53.7846, -673.771, -67.875);
|
||||
/* 1:57 */waypoints[83].type = "stand";
|
||||
/* 1:57 */waypoints[83].children[0] = 26;
|
||||
/* 1:57 */waypoints[83].children[1] = 82;
|
||||
/* 1:57 */waypoints[84] = spawnstruct();
|
||||
/* 1:57 */waypoints[84].origin = (721.483, -325.302, -80.4851);
|
||||
/* 1:57 */waypoints[84].type = "stand";
|
||||
/* 1:57 */waypoints[84].children[0] = 76;
|
||||
/* 1:57 */waypoints[84].children[1] = 85;
|
||||
/* 1:57 */waypoints[84].children[2] = 98;
|
||||
/* 1:57 */waypoints[85] = spawnstruct();
|
||||
/* 1:57 */waypoints[85].origin = (724.811, -451.478, -78.8976);
|
||||
/* 1:57 */waypoints[85].type = "stand";
|
||||
/* 1:57 */waypoints[85].children[0] = 84;
|
||||
/* 1:57 */waypoints[85].children[1] = 79;
|
||||
/* 1:57 */waypoints[85].children[2] = 86;
|
||||
/* 1:57 */waypoints[86] = spawnstruct();
|
||||
/* 1:57 */waypoints[86].origin = (802.166, -581.686, -71.875);
|
||||
/* 1:57 */waypoints[86].type = "stand";
|
||||
/* 1:57 */waypoints[86].children[0] = 85;
|
||||
/* 1:57 */waypoints[86].children[1] = 87;
|
||||
/* 1:57 */waypoints[86].children[2] = 98;
|
||||
/* 1:57 */waypoints[87] = spawnstruct();
|
||||
/* 1:57 */waypoints[87].origin = (787.311, -878.944, -77.6298);
|
||||
/* 1:57 */waypoints[87].type = "stand";
|
||||
/* 1:57 */waypoints[87].children[0] = 86;
|
||||
/* 1:57 */waypoints[87].children[1] = 88;
|
||||
/* 1:57 */waypoints[87].children[2] = 94;
|
||||
/* 1:57 */waypoints[87].children[3] = 79;
|
||||
/* 1:57 */waypoints[87].children[4] = 97;
|
||||
/* 1:57 */waypoints[87].children[5] = 137;
|
||||
/* 1:57 */waypoints[88] = spawnstruct();
|
||||
/* 1:57 */waypoints[88].origin = (767.869, -1336.48, -72.1795);
|
||||
/* 1:57 */waypoints[88].type = "stand";
|
||||
/* 1:57 */waypoints[88].children[0] = 87;
|
||||
/* 1:57 */waypoints[88].children[1] = 89;
|
||||
/* 1:57 */waypoints[88].children[2] = 93;
|
||||
/* 1:57 */waypoints[88].children[3] = 95;
|
||||
/* 1:57 */waypoints[88].children[4] = 148;
|
||||
/* 1:57 */waypoints[89] = spawnstruct();
|
||||
/* 1:57 */waypoints[89].origin = (761.876, -1468.87, -65.875);
|
||||
/* 1:57 */waypoints[89].type = "climb";
|
||||
/* 1:57 */waypoints[89].children[0] = 88;
|
||||
/* 1:57 */waypoints[89].children[1] = 90;
|
||||
/* 1:57 */waypoints[89].angles = (8.11768, -94.6106, 0);
|
||||
/* 1:57 */waypoints[90] = spawnstruct();
|
||||
/* 1:57 */waypoints[90].origin = (756.898, -1514.22, -60.875);
|
||||
/* 1:57 */waypoints[90].type = "climb";
|
||||
/* 1:57 */waypoints[90].children[0] = 89;
|
||||
/* 1:57 */waypoints[90].children[1] = 92;
|
||||
/* 1:57 */waypoints[90].angles = (2.03674, 88.5645, 0);
|
||||
/* 1:57 */waypoints[91] = spawnstruct();
|
||||
/* 1:57 */waypoints[91].origin = (364.092, -1594.84, 27.125);
|
||||
/* 1:57 */waypoints[91].type = "stand";
|
||||
/* 1:57 */waypoints[91].children[0] = 22;
|
||||
/* 1:57 */waypoints[91].children[1] = 92;
|
||||
/* 1:57 */waypoints[92] = spawnstruct();
|
||||
/* 1:57 */waypoints[92].origin = (662.449, -1589.56, -60.875);
|
||||
/* 1:57 */waypoints[92].type = "stand";
|
||||
/* 1:57 */waypoints[92].children[0] = 91;
|
||||
/* 1:57 */waypoints[92].children[1] = 90;
|
||||
/* 1:57 */waypoints[92].children[2] = 142;
|
||||
/* 1:57 */waypoints[92].children[3] = 148;
|
||||
/* 1:57 */waypoints[93] = spawnstruct();
|
||||
/* 1:57 */waypoints[93].origin = (649.893, -1323.68, -71.875);
|
||||
/* 1:57 */waypoints[93].type = "stand";
|
||||
/* 1:57 */waypoints[93].children[0] = 24;
|
||||
/* 1:57 */waypoints[93].children[1] = 88;
|
||||
/* 1:57 */waypoints[93].children[2] = 95;
|
||||
/* 1:57 */waypoints[93].children[3] = 148;
|
||||
/* 1:57 */waypoints[94] = spawnstruct();
|
||||
/* 1:57 */waypoints[94].origin = (1106.54, -751.291, -71.875);
|
||||
/* 1:57 */waypoints[94].type = "stand";
|
||||
/* 1:57 */waypoints[94].children[0] = 87;
|
||||
/* 1:57 */waypoints[94].children[1] = 95;
|
||||
/* 1:57 */waypoints[94].children[2] = 96;
|
||||
/* 1:57 */waypoints[95] = spawnstruct();
|
||||
/* 1:57 */waypoints[95].origin = (1115.3, -1150.34, -70.0649);
|
||||
/* 1:57 */waypoints[95].type = "stand";
|
||||
/* 1:57 */waypoints[95].children[0] = 94;
|
||||
/* 1:57 */waypoints[95].children[1] = 88;
|
||||
/* 1:57 */waypoints[95].children[2] = 93;
|
||||
/* 1:57 */waypoints[96] = spawnstruct();
|
||||
/* 1:57 */waypoints[96].origin = (1222.88, -615.125, -61.875);
|
||||
/* 1:57 */waypoints[96].type = "crouch";
|
||||
/* 1:57 */waypoints[96].children[0] = 94;
|
||||
/* 1:57 */waypoints[96].angles = (0.619507, -140.314, 0);
|
||||
/* 1:57 */waypoints[97] = spawnstruct();
|
||||
/* 1:57 */waypoints[97].origin = (545.295, -1197.95, -70.9087);
|
||||
/* 1:57 */waypoints[97].type = "stand";
|
||||
/* 1:57 */waypoints[97].children[0] = 87;
|
||||
/* 1:57 */waypoints[97].children[1] = 80;
|
||||
/* 1:57 */waypoints[97].children[2] = 24;
|
||||
/* 1:57 */waypoints[98] = spawnstruct();
|
||||
/* 1:57 */waypoints[98].origin = (787.154, -162.22, -82.8475);
|
||||
/* 1:57 */waypoints[98].type = "stand";
|
||||
/* 1:57 */waypoints[98].children[0] = 84;
|
||||
/* 1:57 */waypoints[98].children[1] = 86;
|
||||
/* 1:57 */waypoints[98].children[2] = 76;
|
||||
/* 1:57 */waypoints[99] = spawnstruct();
|
||||
/* 1:57 */waypoints[99].origin = (882.704, 648.628, -85.875);
|
||||
/* 1:57 */waypoints[99].type = "stand";
|
||||
/* 1:57 */waypoints[99].children[0] = 100;
|
||||
/* 1:57 */waypoints[99].children[1] = 74;
|
||||
/* 1:57 */waypoints[100] = spawnstruct();
|
||||
/* 1:57 */waypoints[100].origin = (892.233, 434.935, -85.875);
|
||||
/* 1:57 */waypoints[100].type = "stand";
|
||||
/* 1:57 */waypoints[100].children[0] = 101;
|
||||
/* 1:57 */waypoints[100].children[1] = 99;
|
||||
/* 1:57 */waypoints[100].children[2] = 74;
|
||||
/* 1:57 */waypoints[101] = spawnstruct();
|
||||
/* 1:57 */waypoints[101].origin = (888.732, 192.113, -85.875);
|
||||
/* 1:57 */waypoints[101].type = "stand";
|
||||
/* 1:57 */waypoints[101].children[0] = 76;
|
||||
/* 1:57 */waypoints[101].children[1] = 100;
|
||||
/* 1:57 */waypoints[102] = spawnstruct();
|
||||
/* 1:57 */waypoints[102].origin = (71.125, 1049.53, -92.875);
|
||||
/* 1:57 */waypoints[102].type = "crouch";
|
||||
/* 1:57 */waypoints[102].children[0] = 60;
|
||||
/* 1:57 */waypoints[102].angles = (3.70117, 2.00317, 0);
|
||||
/* 1:57 */waypoints[103] = spawnstruct();
|
||||
/* 1:57 */waypoints[103].origin = (-297.967, 1323.86, -95.8752);
|
||||
/* 1:57 */waypoints[103].type = "stand";
|
||||
/* 1:57 */waypoints[103].children[0] = 72;
|
||||
/* 1:57 */waypoints[103].children[1] = 59;
|
||||
/* 1:57 */waypoints[103].children[2] = 104;
|
||||
/* 1:57 */waypoints[103].children[3] = 61;
|
||||
/* 1:57 */waypoints[104] = spawnstruct();
|
||||
/* 1:57 */waypoints[104].origin = (11.1166, 1252.32, -95.875);
|
||||
/* 1:57 */waypoints[104].type = "stand";
|
||||
/* 1:57 */waypoints[104].children[0] = 60;
|
||||
/* 1:57 */waypoints[104].children[1] = 103;
|
||||
/* 1:57 */waypoints[105] = spawnstruct();
|
||||
/* 1:57 */waypoints[105].origin = (-1120.71, 1569.39, -101.585);
|
||||
/* 1:57 */waypoints[105].type = "stand";
|
||||
/* 1:57 */waypoints[105].children[0] = 63;
|
||||
/* 1:57 */waypoints[105].children[1] = 64;
|
||||
/* 1:57 */waypoints[105].children[2] = 106;
|
||||
/* 1:57 */waypoints[105].children[3] = 108;
|
||||
/* 1:57 */waypoints[105].children[4] = 65;
|
||||
/* 1:57 */waypoints[106] = spawnstruct();
|
||||
/* 1:57 */waypoints[106].origin = (-1104.67, 1397.81, -102.387);
|
||||
/* 1:57 */waypoints[106].type = "stand";
|
||||
/* 1:57 */waypoints[106].children[0] = 63;
|
||||
/* 1:57 */waypoints[106].children[1] = 105;
|
||||
/* 1:57 */waypoints[106].children[2] = 61;
|
||||
/* 1:57 */waypoints[107] = spawnstruct();
|
||||
/* 1:57 */waypoints[107].origin = (-603.397, 1553.96, -103.724);
|
||||
/* 1:57 */waypoints[107].type = "claymore";
|
||||
/* 1:57 */waypoints[107].children[0] = 62;
|
||||
/* 1:57 */waypoints[107].children[1] = 61;
|
||||
/* 1:57 */waypoints[107].angles = (46.7566, -77.9169, 0);
|
||||
/* 1:57 */waypoints[108] = spawnstruct();
|
||||
/* 1:57 */waypoints[108].origin = (-1490.59, 1718.03, -89.875);
|
||||
/* 1:57 */waypoints[108].type = "crouch";
|
||||
/* 1:57 */waypoints[108].children[0] = 105;
|
||||
/* 1:57 */waypoints[108].angles = (-1.10533, -100.752, 0);
|
||||
/* 1:57 */waypoints[109] = spawnstruct();
|
||||
/* 1:57 */waypoints[109].origin = (-1670.46, 546.998, -51.875);
|
||||
/* 1:57 */waypoints[109].type = "claymore";
|
||||
/* 1:57 */waypoints[109].children[0] = 153;
|
||||
/* 1:57 */waypoints[109].angles = (61.5552, 172.775, 0);
|
||||
/* 1:57 */waypoints[110] = spawnstruct();
|
||||
/* 1:57 */waypoints[110].origin = (-604.862, 748.858, -74.8106);
|
||||
/* 1:57 */waypoints[110].type = "claymore";
|
||||
/* 1:57 */waypoints[110].children[0] = 58;
|
||||
/* 1:57 */waypoints[110].angles = (73.4808, -0.787354, 0);
|
||||
/* 1:57 */waypoints[111] = spawnstruct();
|
||||
/* 1:57 */waypoints[111].origin = (327.541, -16.3796, -82.9684);
|
||||
/* 1:57 */waypoints[111].type = "claymore";
|
||||
/* 1:57 */waypoints[111].children[0] = 78;
|
||||
/* 1:57 */waypoints[111].angles = (55.0348, -93.8086, 0);
|
||||
/* 1:57 */waypoints[112] = spawnstruct();
|
||||
/* 1:57 */waypoints[112].origin = (-1144.88, -84.125, 78.125);
|
||||
/* 1:57 */waypoints[112].type = "crouch";
|
||||
/* 1:57 */waypoints[112].children[0] = 41;
|
||||
/* 1:57 */waypoints[112].angles = (3.14638, -29.4177, 0);
|
||||
/* 1:57 */waypoints[113] = spawnstruct();
|
||||
/* 1:57 */waypoints[113].origin = (-1416.88, -241.125, 80.171);
|
||||
/* 1:57 */waypoints[113].type = "crouch";
|
||||
/* 1:57 */waypoints[113].children[0] = 43;
|
||||
/* 1:57 */waypoints[113].angles = (4.84926, -51.5167, 0);
|
||||
/* 1:57 */waypoints[114] = spawnstruct();
|
||||
/* 1:57 */waypoints[114].origin = (-1689.6, -74.565, -46.991);
|
||||
/* 1:57 */waypoints[114].type = "stand";
|
||||
/* 1:57 */waypoints[114].children[0] = 48;
|
||||
/* 1:57 */waypoints[114].children[1] = 55;
|
||||
/* 1:57 */waypoints[114].children[2] = 115;
|
||||
/* 1:57 */waypoints[114].children[3] = 139;
|
||||
/* 1:57 */waypoints[115] = spawnstruct();
|
||||
/* 1:57 */waypoints[115].origin = (-1536.47, 7.8011, -49.2237);
|
||||
/* 1:57 */waypoints[115].type = "stand";
|
||||
/* 1:57 */waypoints[115].children[0] = 116;
|
||||
/* 1:57 */waypoints[115].children[1] = 114;
|
||||
/* 1:57 */waypoints[115].children[2] = 55;
|
||||
/* 1:57 */waypoints[115].children[3] = 53;
|
||||
/* 1:57 */waypoints[116] = spawnstruct();
|
||||
/* 1:57 */waypoints[116].origin = (-1588.33, 259.217, -51.017);
|
||||
/* 1:57 */waypoints[116].type = "stand";
|
||||
/* 1:57 */waypoints[116].children[0] = 48;
|
||||
/* 1:57 */waypoints[116].children[1] = 115;
|
||||
/* 1:57 */waypoints[116].children[2] = 53;
|
||||
/* 1:57 */waypoints[116].children[3] = 68;
|
||||
/* 1:57 */waypoints[117] = spawnstruct();
|
||||
/* 1:57 */waypoints[117].origin = (-408.432, 34.8685, -67.875);
|
||||
/* 1:57 */waypoints[117].type = "stand";
|
||||
/* 1:57 */waypoints[117].children[0] = 36;
|
||||
/* 1:57 */waypoints[117].children[1] = 32;
|
||||
/* 1:57 */waypoints[117].children[2] = 141;
|
||||
/* 1:57 */waypoints[118] = spawnstruct();
|
||||
/* 1:57 */waypoints[118].origin = (-943.717, -195.87, -67.8751);
|
||||
/* 1:57 */waypoints[118].type = "claymore";
|
||||
/* 1:57 */waypoints[118].children[0] = 36;
|
||||
/* 1:57 */waypoints[118].angles = (65.0214, 17.3236, 0);
|
||||
/* 1:57 */waypoints[119] = spawnstruct();
|
||||
/* 1:57 */waypoints[119].origin = (-583.642, -619.002, -67.8751);
|
||||
/* 1:57 */waypoints[119].type = "claymore";
|
||||
/* 1:57 */waypoints[119].children[0] = 29;
|
||||
/* 1:57 */waypoints[119].children[1] = 30;
|
||||
/* 1:57 */waypoints[119].angles = (71.9427, 13.2697, 0);
|
||||
/* 1:57 */waypoints[120] = spawnstruct();
|
||||
/* 1:57 */waypoints[120].origin = (-292.558, -642.023, -67.8751);
|
||||
/* 1:57 */waypoints[120].type = "stand";
|
||||
/* 1:57 */waypoints[120].children[0] = 121;
|
||||
/* 1:57 */waypoints[120].children[1] = 26;
|
||||
/* 1:57 */waypoints[121] = spawnstruct();
|
||||
/* 1:57 */waypoints[121].origin = (-471.129, -656.023, -67.8751);
|
||||
/* 1:57 */waypoints[121].type = "stand";
|
||||
/* 1:57 */waypoints[121].children[0] = 30;
|
||||
/* 1:57 */waypoints[121].children[1] = 29;
|
||||
/* 1:57 */waypoints[121].children[2] = 120;
|
||||
/* 1:57 */waypoints[122] = spawnstruct();
|
||||
/* 1:57 */waypoints[122].origin = (-992.086, -1364.65, 2.125);
|
||||
/* 1:57 */waypoints[122].type = "stand";
|
||||
/* 1:57 */waypoints[122].children[0] = 8;
|
||||
/* 1:57 */waypoints[122].children[1] = 123;
|
||||
/* 1:57 */waypoints[123] = spawnstruct();
|
||||
/* 1:57 */waypoints[123].origin = (-980.447, -1067.51, 4.125);
|
||||
/* 1:57 */waypoints[123].type = "stand";
|
||||
/* 1:57 */waypoints[123].children[0] = 122;
|
||||
/* 1:57 */waypoints[124] = spawnstruct();
|
||||
/* 1:57 */waypoints[124].origin = (-1472.9, -873.882, 4.33376);
|
||||
/* 1:57 */waypoints[124].type = "stand";
|
||||
/* 1:57 */waypoints[124].children[0] = 125;
|
||||
/* 1:57 */waypoints[124].children[1] = 1;
|
||||
/* 1:57 */waypoints[124].children[2] = 126;
|
||||
/* 1:57 */waypoints[124].children[3] = 131;
|
||||
/* 1:57 */waypoints[124].children[4] = 144;
|
||||
/* 1:57 */waypoints[125] = spawnstruct();
|
||||
/* 1:57 */waypoints[125].origin = (-979.942, -831.746, -67.875);
|
||||
/* 1:57 */waypoints[125].type = "stand";
|
||||
/* 1:57 */waypoints[125].children[0] = 27;
|
||||
/* 1:57 */waypoints[125].children[1] = 124;
|
||||
/* 1:57 */waypoints[126] = spawnstruct();
|
||||
/* 1:57 */waypoints[126].origin = (-1475.57, -1413.42, 2.125);
|
||||
/* 1:57 */waypoints[126].type = "stand";
|
||||
/* 1:57 */waypoints[126].children[0] = 124;
|
||||
/* 1:57 */waypoints[126].children[1] = 2;
|
||||
/* 1:57 */waypoints[126].children[2] = 0;
|
||||
/* 1:57 */waypoints[127] = spawnstruct();
|
||||
/* 1:57 */waypoints[127].origin = (-1599.26, -642.834, 80.125);
|
||||
/* 1:57 */waypoints[127].type = "stand";
|
||||
/* 1:57 */waypoints[127].children[0] = 1;
|
||||
/* 1:57 */waypoints[127].children[1] = 129;
|
||||
/* 1:57 */waypoints[128] = spawnstruct();
|
||||
/* 1:57 */waypoints[128].origin = (-1630.98, -428.252, 80.125);
|
||||
/* 1:57 */waypoints[128].type = "stand";
|
||||
/* 1:57 */waypoints[128].children[0] = 46;
|
||||
/* 1:57 */waypoints[128].children[1] = 129;
|
||||
/* 1:57 */waypoints[128].children[2] = 151;
|
||||
/* 1:57 */waypoints[128].children[3] = 54;
|
||||
/* 1:57 */waypoints[129] = spawnstruct();
|
||||
/* 1:57 */waypoints[129].origin = (-1521.7, -494.247, 80.125);
|
||||
/* 1:57 */waypoints[129].type = "stand";
|
||||
/* 1:57 */waypoints[129].children[0] = 128;
|
||||
/* 1:57 */waypoints[129].children[1] = 127;
|
||||
/* 1:57 */waypoints[129].children[2] = 46;
|
||||
/* 1:57 */waypoints[129].children[3] = 151;
|
||||
/* 1:57 */waypoints[130] = spawnstruct();
|
||||
/* 1:57 */waypoints[130].origin = (-1416.88, -402.584, 80.1709);
|
||||
/* 1:57 */waypoints[130].type = "claymore";
|
||||
/* 1:57 */waypoints[130].children[0] = 43;
|
||||
/* 1:57 */waypoints[130].angles = (61.7529, -86.8652, 0);
|
||||
/* 1:57 */waypoints[131] = spawnstruct();
|
||||
/* 1:57 */waypoints[131].origin = (-1735.95, -991.62, 16.6504);
|
||||
/* 1:57 */waypoints[131].type = "claymore";
|
||||
/* 1:57 */waypoints[131].children[0] = 1;
|
||||
/* 1:57 */waypoints[131].children[1] = 124;
|
||||
/* 1:57 */waypoints[131].angles = (40.0275, 57.3083, 0);
|
||||
/* 1:57 */waypoints[132] = spawnstruct();
|
||||
/* 1:57 */waypoints[132].origin = (-1301.58, -1614.79, 4.125);
|
||||
/* 1:57 */waypoints[132].type = "stand";
|
||||
/* 1:57 */waypoints[132].children[0] = 5;
|
||||
/* 1:57 */waypoints[132].children[1] = 133;
|
||||
/* 1:57 */waypoints[132].children[2] = 149;
|
||||
/* 1:57 */waypoints[133] = spawnstruct();
|
||||
/* 1:57 */waypoints[133].origin = (-1270.23, -1543.12, 4.125);
|
||||
/* 1:57 */waypoints[133].type = "claymore";
|
||||
/* 1:57 */waypoints[133].children[0] = 132;
|
||||
/* 1:57 */waypoints[133].angles = (73.2776, -175.75, 0);
|
||||
/* 1:57 */waypoints[134] = spawnstruct();
|
||||
/* 1:57 */waypoints[134].origin = (-335.557, -1471.17, 11.2512);
|
||||
/* 1:57 */waypoints[134].type = "crouch";
|
||||
/* 1:57 */waypoints[134].children[0] = 14;
|
||||
/* 1:57 */waypoints[134].angles = (2.92664, -49.8688, 0);
|
||||
/* 1:57 */waypoints[135] = spawnstruct();
|
||||
/* 1:57 */waypoints[135].origin = (-607.641, 796.06, -95.875);
|
||||
/* 1:57 */waypoints[135].type = "claymore";
|
||||
/* 1:57 */waypoints[135].children[0] = 136;
|
||||
/* 1:57 */waypoints[135].angles = (70.5914, 9.83093, 0);
|
||||
/* 1:57 */waypoints[136] = spawnstruct();
|
||||
/* 1:57 */waypoints[136].origin = (-498.587, 822.432, -95.875);
|
||||
/* 1:57 */waypoints[136].type = "stand";
|
||||
/* 1:57 */waypoints[136].children[0] = 135;
|
||||
/* 1:57 */waypoints[136].children[1] = 58;
|
||||
/* 1:57 */waypoints[136].children[2] = 61;
|
||||
/* 1:57 */waypoints[136].children[3] = 59;
|
||||
/* 1:57 */waypoints[137] = spawnstruct();
|
||||
/* 1:57 */waypoints[137].origin = (702.557, -894.281, -68.7618);
|
||||
/* 1:57 */waypoints[137].type = "grenade";
|
||||
/* 1:57 */waypoints[137].children[0] = 87;
|
||||
/* 1:57 */waypoints[137].angles = (-20.7159, 89.1687, 0);
|
||||
/* 1:57 */waypoints[138] = spawnstruct();
|
||||
/* 1:57 */waypoints[138].origin = (-214.536, -940.646, -67.8172);
|
||||
/* 1:57 */waypoints[138].type = "grenade";
|
||||
/* 1:57 */waypoints[138].children[0] = 26;
|
||||
/* 1:57 */waypoints[138].angles = (-5.91736, 128.335, 0);
|
||||
/* 1:57 */waypoints[139] = spawnstruct();
|
||||
/* 1:57 */waypoints[139].origin = (-1773.24, 23.1395, -46.1821);
|
||||
/* 1:57 */waypoints[139].type = "grenade";
|
||||
/* 1:57 */waypoints[139].children[0] = 114;
|
||||
/* 1:57 */waypoints[139].angles = (-18.4528, -87.486, 0);
|
||||
/* 1:57 */waypoints[140] = spawnstruct();
|
||||
/* 1:57 */waypoints[140].origin = (-714.925, 165.125, -67.875);
|
||||
/* 1:57 */waypoints[140].type = "crouch";
|
||||
/* 1:57 */waypoints[140].children[0] = 150;
|
||||
/* 1:57 */waypoints[140].angles = (6.9751, 115.838, 0);
|
||||
/* 1:57 */waypoints[141] = spawnstruct();
|
||||
/* 1:57 */waypoints[141].origin = (-435.07, 16.6627, -67.875);
|
||||
/* 1:57 */waypoints[141].type = "grenade";
|
||||
/* 1:57 */waypoints[141].children[0] = 117;
|
||||
/* 1:57 */waypoints[141].angles = (-22.0508, -156.118, 0);
|
||||
/* 1:57 */waypoints[142] = spawnstruct();
|
||||
/* 1:57 */waypoints[142].origin = (614.728, -1721.55, -60.875);
|
||||
/* 1:57 */waypoints[142].type = "stand";
|
||||
/* 1:57 */waypoints[142].children[0] = 92;
|
||||
/* 1:57 */waypoints[143] = spawnstruct();
|
||||
/* 1:57 */waypoints[143].origin = (272.649, -994.08, -69.7291);
|
||||
/* 1:57 */waypoints[143].type = "grenade";
|
||||
/* 1:57 */waypoints[143].children[0] = 80;
|
||||
/* 1:57 */waypoints[143].angles = (-17.4475, 86.1969, 0);
|
||||
/* 1:57 */waypoints[144] = spawnstruct();
|
||||
/* 1:57 */waypoints[144].origin = (-1453.29, -1127.88, 2.125);
|
||||
/* 1:57 */waypoints[144].type = "grenade";
|
||||
/* 1:57 */waypoints[144].children[0] = 124;
|
||||
/* 1:57 */waypoints[144].angles = (-17.5354, 123.056, 0.0384521);
|
||||
/* 1:57 */waypoints[145] = spawnstruct();
|
||||
/* 1:57 */waypoints[145].origin = (997.568, 1330.96, -87.875);
|
||||
/* 1:57 */waypoints[145].type = "stand";
|
||||
/* 1:57 */waypoints[145].children[0] = 73;
|
||||
/* 1:57 */waypoints[145].children[1] = 146;
|
||||
/* 1:57 */waypoints[146] = spawnstruct();
|
||||
/* 1:57 */waypoints[146].origin = (1003.47, 1111.62, -87.875);
|
||||
/* 1:57 */waypoints[146].type = "stand";
|
||||
/* 1:57 */waypoints[146].children[0] = 145;
|
||||
/* 1:57 */waypoints[146].children[1] = 147;
|
||||
/* 1:57 */waypoints[147] = spawnstruct();
|
||||
/* 1:57 */waypoints[147].origin = (714.56, 1028.01, -99.8719);
|
||||
/* 1:57 */waypoints[147].type = "stand";
|
||||
/* 1:57 */waypoints[147].children[0] = 146;
|
||||
/* 1:57 */waypoints[147].children[1] = 73;
|
||||
/* 1:57 */waypoints[147].children[2] = 74;
|
||||
/* 1:57 */waypoints[148] = spawnstruct();
|
||||
/* 1:57 */waypoints[148].origin = (679.216, -1383.4, -73.3097);
|
||||
/* 1:57 */waypoints[148].type = "stand";
|
||||
/* 1:57 */waypoints[148].children[0] = 93;
|
||||
/* 1:57 */waypoints[148].children[1] = 92;
|
||||
/* 1:57 */waypoints[148].children[2] = 88;
|
||||
/* 1:57 */waypoints[149] = spawnstruct();
|
||||
/* 1:57 */waypoints[149].origin = (-1318.81, -1556.59, 4.125);
|
||||
/* 1:57 */waypoints[149].type = "stand";
|
||||
/* 1:57 */waypoints[149].children[0] = 132;
|
||||
/* 1:57 */waypoints[149].children[1] = 2;
|
||||
/* 1:57 */waypoints[150] = spawnstruct();
|
||||
/* 1:57 */waypoints[150].origin = (-784.575, 170.894, -67.875);
|
||||
/* 1:57 */waypoints[150].type = "stand";
|
||||
/* 1:57 */waypoints[150].children[0] = 140;
|
||||
/* 1:57 */waypoints[150].children[1] = 36;
|
||||
/* 1:57 */waypoints[150].children[2] = 35;
|
||||
/* 1:57 */waypoints[151] = spawnstruct();
|
||||
/* 1:57 */waypoints[151].origin = (-1497.14, -456.128, 80.125);
|
||||
/* 1:57 */waypoints[151].type = "stand";
|
||||
/* 1:57 */waypoints[151].children[0] = 129;
|
||||
/* 1:57 */waypoints[151].children[1] = 44;
|
||||
/* 1:57 */waypoints[151].children[2] = 128;
|
||||
/* 1:57 */waypoints[152] = spawnstruct();
|
||||
/* 1:57 */waypoints[152].origin = (-1626.26, 1044.57, -51.875);
|
||||
/* 1:57 */waypoints[152].type = "stand";
|
||||
/* 1:57 */waypoints[152].children[0] = 69;
|
||||
/* 1:57 */waypoints[152].children[1] = 153;
|
||||
/* 1:57 */waypoints[152].children[2] = 66;
|
||||
/* 1:57 */waypoints[153] = spawnstruct();
|
||||
/* 1:57 */waypoints[153].origin = (-1704.74, 605.19, -51.875);
|
||||
/* 1:57 */waypoints[153].type = "stand";
|
||||
/* 1:57 */waypoints[153].children[0] = 152;
|
||||
/* 1:57 */waypoints[153].children[1] = 109;
|
||||
/* 1:57 */waypoints[153].children[2] = 68;
|
||||
/* 1:57 */waypoints[154] = spawnstruct();
|
||||
/* 1:57 */waypoints[154].origin = (-1657.27, -258.02, 79.9948);
|
||||
/* 1:57 */waypoints[154].type = "climb";
|
||||
/* 1:57 */waypoints[154].children[0] = 56;
|
||||
/* 1:57 */waypoints[154].children[1] = 54;
|
||||
/* 1:57 */waypoints[154].angles = (1.9281, -90.2252, 0);
|
||||
/* 1:57 */waypoints[155] = spawnstruct();
|
||||
/* 1:57 */waypoints[155].origin = (-1287.83, 522.259, -53.5349);
|
||||
/* 1:57 */waypoints[155].type = "stand";
|
||||
/* 1:57 */waypoints[155].children[0] = 53;
|
||||
/* 1:57 */waypoints[155].children[1] = 70;
|
||||
/* 1:57 */waypoints[155].children[2] = 35;
|
||||
/* 1:57 */return waypoints;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,841 +0,0 @@
|
||||
Erosion()
|
||||
{
|
||||
/* 9:53 */waypoints = [];
|
||||
/* 9:53 */waypoints[0] = spawnstruct();
|
||||
/* 9:53 */waypoints[0].origin = (814.597, 313.873, 128.125);
|
||||
/* 9:53 */waypoints[0].type = "stand";
|
||||
/* 9:53 */waypoints[0].children[0] = 5;
|
||||
/* 9:53 */waypoints[0].children[1] = 75;
|
||||
/* 9:53 */waypoints[0].children[2] = 99;
|
||||
/* 9:53 */waypoints[0].children[3] = 120;
|
||||
/* 9:53 */waypoints[1] = spawnstruct();
|
||||
/* 9:53 */waypoints[1].origin = (181.503, 268.959, 128.125);
|
||||
/* 9:53 */waypoints[1].type = "stand";
|
||||
/* 9:53 */waypoints[1].children[0] = 2;
|
||||
/* 9:53 */waypoints[1].children[1] = 3;
|
||||
/* 9:53 */waypoints[1].children[2] = 75;
|
||||
/* 9:53 */waypoints[1].children[3] = 100;
|
||||
/* 9:53 */waypoints[1].children[4] = 120;
|
||||
/* 9:53 */waypoints[2] = spawnstruct();
|
||||
/* 9:53 */waypoints[2].origin = (234.726, 507.15, 145.167);
|
||||
/* 9:53 */waypoints[2].type = "crouch";
|
||||
/* 9:53 */waypoints[2].children[0] = 1;
|
||||
/* 9:53 */waypoints[2].angles = (6.64673, -97.3425, 0);
|
||||
/* 9:53 */waypoints[3] = spawnstruct();
|
||||
/* 9:53 */waypoints[3].origin = (188.588, 150.903, 128.125);
|
||||
/* 9:53 */waypoints[3].type = "stand";
|
||||
/* 9:53 */waypoints[3].children[0] = 1;
|
||||
/* 9:53 */waypoints[3].children[1] = 4;
|
||||
/* 9:53 */waypoints[3].children[2] = 61;
|
||||
/* 9:53 */waypoints[3].children[3] = 76;
|
||||
/* 9:53 */waypoints[3].children[4] = 100;
|
||||
/* 9:53 */waypoints[4] = spawnstruct();
|
||||
/* 9:53 */waypoints[4].origin = (523.087, 126.85, 0.624999);
|
||||
/* 9:53 */waypoints[4].type = "stand";
|
||||
/* 9:53 */waypoints[4].children[0] = 3;
|
||||
/* 9:53 */waypoints[4].children[1] = 5;
|
||||
/* 9:53 */waypoints[4].children[2] = 69;
|
||||
/* 9:53 */waypoints[4].children[3] = 74;
|
||||
/* 9:53 */waypoints[5] = spawnstruct();
|
||||
/* 9:53 */waypoints[5].origin = (850.015, 110.245, 128.125);
|
||||
/* 9:53 */waypoints[5].type = "stand";
|
||||
/* 9:53 */waypoints[5].children[0] = 4;
|
||||
/* 9:53 */waypoints[5].children[1] = 0;
|
||||
/* 9:53 */waypoints[5].children[2] = 6;
|
||||
/* 9:53 */waypoints[5].children[3] = 64;
|
||||
/* 9:53 */waypoints[6] = spawnstruct();
|
||||
/* 9:53 */waypoints[6].origin = (1038.16, 120.267, 169.764);
|
||||
/* 9:53 */waypoints[6].type = "stand";
|
||||
/* 9:53 */waypoints[6].children[0] = 5;
|
||||
/* 9:53 */waypoints[6].children[1] = 7;
|
||||
/* 9:53 */waypoints[7] = spawnstruct();
|
||||
/* 9:53 */waypoints[7].origin = (1050.33, -576.167, 160.442);
|
||||
/* 9:53 */waypoints[7].type = "stand";
|
||||
/* 9:53 */waypoints[7].children[0] = 6;
|
||||
/* 9:53 */waypoints[7].children[1] = 8;
|
||||
/* 9:53 */waypoints[7].children[2] = 9;
|
||||
/* 9:53 */waypoints[8] = spawnstruct();
|
||||
/* 9:53 */waypoints[8].origin = (801.336, -587.172, 128.309);
|
||||
/* 9:53 */waypoints[8].type = "stand";
|
||||
/* 9:53 */waypoints[8].children[0] = 7;
|
||||
/* 9:53 */waypoints[8].children[1] = 40;
|
||||
/* 9:53 */waypoints[8].children[2] = 41;
|
||||
/* 9:53 */waypoints[8].children[3] = 72;
|
||||
/* 9:53 */waypoints[9] = spawnstruct();
|
||||
/* 9:53 */waypoints[9].origin = (1044.42, -1275.29, 168.045);
|
||||
/* 9:53 */waypoints[9].type = "stand";
|
||||
/* 9:53 */waypoints[9].children[0] = 7;
|
||||
/* 9:53 */waypoints[9].children[1] = 10;
|
||||
/* 9:53 */waypoints[9].children[2] = 122;
|
||||
/* 9:53 */waypoints[10] = spawnstruct();
|
||||
/* 9:53 */waypoints[10].origin = (795.735, -1264.29, 128.125);
|
||||
/* 9:53 */waypoints[10].type = "stand";
|
||||
/* 9:53 */waypoints[10].children[0] = 9;
|
||||
/* 9:53 */waypoints[10].children[1] = 11;
|
||||
/* 9:53 */waypoints[10].children[2] = 41;
|
||||
/* 9:53 */waypoints[11] = spawnstruct();
|
||||
/* 9:53 */waypoints[11].origin = (831.686, -1469.92, 128.125);
|
||||
/* 9:53 */waypoints[11].type = "stand";
|
||||
/* 9:53 */waypoints[11].children[0] = 10;
|
||||
/* 9:53 */waypoints[11].children[1] = 119;
|
||||
/* 9:53 */waypoints[11].children[2] = 122;
|
||||
/* 9:53 */waypoints[12] = spawnstruct();
|
||||
/* 9:53 */waypoints[12].origin = (789.671, -1792.7, 128.483);
|
||||
/* 9:53 */waypoints[12].type = "stand";
|
||||
/* 9:53 */waypoints[12].children[0] = 13;
|
||||
/* 9:53 */waypoints[12].children[1] = 119;
|
||||
/* 9:53 */waypoints[13] = spawnstruct();
|
||||
/* 9:53 */waypoints[13].origin = (692.935, -1957.79, 128.202);
|
||||
/* 9:53 */waypoints[13].type = "stand";
|
||||
/* 9:53 */waypoints[13].children[0] = 12;
|
||||
/* 9:53 */waypoints[13].children[1] = 14;
|
||||
/* 9:53 */waypoints[14] = spawnstruct();
|
||||
/* 9:53 */waypoints[14].origin = (241.683, -1961.29, 129.689);
|
||||
/* 9:53 */waypoints[14].type = "stand";
|
||||
/* 9:53 */waypoints[14].children[0] = 13;
|
||||
/* 9:53 */waypoints[14].children[1] = 15;
|
||||
/* 9:53 */waypoints[14].children[2] = 118;
|
||||
/* 9:53 */waypoints[15] = spawnstruct();
|
||||
/* 9:53 */waypoints[15].origin = (-55.864, -1960.04, 127.331);
|
||||
/* 9:53 */waypoints[15].type = "stand";
|
||||
/* 9:53 */waypoints[15].children[0] = 14;
|
||||
/* 9:53 */waypoints[15].children[1] = 16;
|
||||
/* 9:53 */waypoints[15].children[2] = 90;
|
||||
/* 9:53 */waypoints[15].children[3] = 91;
|
||||
/* 9:53 */waypoints[15].children[4] = 121;
|
||||
/* 9:53 */waypoints[15].children[5] = 123;
|
||||
/* 9:53 */waypoints[16] = spawnstruct();
|
||||
/* 9:53 */waypoints[16].origin = (-382.434, -2055.29, 126.203);
|
||||
/* 9:53 */waypoints[16].type = "stand";
|
||||
/* 9:53 */waypoints[16].children[0] = 15;
|
||||
/* 9:53 */waypoints[16].children[1] = 17;
|
||||
/* 9:53 */waypoints[16].children[2] = 25;
|
||||
/* 9:53 */waypoints[16].children[3] = 121;
|
||||
/* 9:53 */waypoints[17] = spawnstruct();
|
||||
/* 9:53 */waypoints[17].origin = (-543.62, -1953.81, 126.363);
|
||||
/* 9:53 */waypoints[17].type = "stand";
|
||||
/* 9:53 */waypoints[17].children[0] = 16;
|
||||
/* 9:53 */waypoints[17].children[1] = 18;
|
||||
/* 9:53 */waypoints[17].children[2] = 89;
|
||||
/* 9:53 */waypoints[18] = spawnstruct();
|
||||
/* 9:53 */waypoints[18].origin = (-866.255, -1881.26, 125.691);
|
||||
/* 9:53 */waypoints[18].type = "stand";
|
||||
/* 9:53 */waypoints[18].children[0] = 17;
|
||||
/* 9:53 */waypoints[18].children[1] = 19;
|
||||
/* 9:53 */waypoints[19] = spawnstruct();
|
||||
/* 9:53 */waypoints[19].origin = (-983.929, -1959.05, 125.125);
|
||||
/* 9:53 */waypoints[19].type = "stand";
|
||||
/* 9:53 */waypoints[19].children[0] = 18;
|
||||
/* 9:53 */waypoints[19].children[1] = 20;
|
||||
/* 9:53 */waypoints[19].children[2] = 87;
|
||||
/* 9:53 */waypoints[19].children[3] = 104;
|
||||
/* 9:53 */waypoints[20] = spawnstruct();
|
||||
/* 9:53 */waypoints[20].origin = (-1036.22, -1742.77, 124.585);
|
||||
/* 9:53 */waypoints[20].type = "stand";
|
||||
/* 9:53 */waypoints[20].children[0] = 19;
|
||||
/* 9:53 */waypoints[20].children[1] = 21;
|
||||
/* 9:53 */waypoints[20].children[2] = 87;
|
||||
/* 9:53 */waypoints[21] = spawnstruct();
|
||||
/* 9:53 */waypoints[21].origin = (-1050.04, -1337.07, 126.396);
|
||||
/* 9:53 */waypoints[21].type = "stand";
|
||||
/* 9:53 */waypoints[21].children[0] = 20;
|
||||
/* 9:53 */waypoints[21].children[1] = 22;
|
||||
/* 9:53 */waypoints[21].children[2] = 26;
|
||||
/* 9:53 */waypoints[21].children[3] = 47;
|
||||
/* 9:53 */waypoints[21].children[4] = 85;
|
||||
/* 9:53 */waypoints[22] = spawnstruct();
|
||||
/* 9:53 */waypoints[22].origin = (-1171.38, -1337.96, 125.931);
|
||||
/* 9:53 */waypoints[22].type = "stand";
|
||||
/* 9:53 */waypoints[22].children[0] = 21;
|
||||
/* 9:53 */waypoints[22].children[1] = 23;
|
||||
/* 9:53 */waypoints[22].children[2] = 47;
|
||||
/* 9:53 */waypoints[23] = spawnstruct();
|
||||
/* 9:53 */waypoints[23].origin = (-1170.42, -1874.54, 248.125);
|
||||
/* 9:53 */waypoints[23].type = "stand";
|
||||
/* 9:53 */waypoints[23].children[0] = 22;
|
||||
/* 9:53 */waypoints[23].children[1] = 24;
|
||||
/* 9:53 */waypoints[24] = spawnstruct();
|
||||
/* 9:53 */waypoints[24].origin = (-1015.85, -1868.94, 248.125);
|
||||
/* 9:53 */waypoints[24].type = "stand";
|
||||
/* 9:53 */waypoints[24].children[0] = 23;
|
||||
/* 9:53 */waypoints[24].children[1] = 25;
|
||||
/* 9:53 */waypoints[25] = spawnstruct();
|
||||
/* 9:53 */waypoints[25].origin = (-941.847, -2072.67, 248.125);
|
||||
/* 9:53 */waypoints[25].type = "stand";
|
||||
/* 9:53 */waypoints[25].children[0] = 24;
|
||||
/* 9:53 */waypoints[25].children[1] = 16;
|
||||
/* 9:53 */waypoints[26] = spawnstruct();
|
||||
/* 9:53 */waypoints[26].origin = (-1061.76, -1089.36, 128.125);
|
||||
/* 9:53 */waypoints[26].type = "stand";
|
||||
/* 9:53 */waypoints[26].children[0] = 21;
|
||||
/* 9:53 */waypoints[26].children[1] = 27;
|
||||
/* 9:53 */waypoints[26].children[2] = 47;
|
||||
/* 9:53 */waypoints[26].children[3] = 54;
|
||||
/* 9:53 */waypoints[26].children[4] = 82;
|
||||
/* 9:53 */waypoints[26].children[5] = 83;
|
||||
/* 9:53 */waypoints[27] = spawnstruct();
|
||||
/* 9:53 */waypoints[27].origin = (-891.829, -1076.75, 128.125);
|
||||
/* 9:53 */waypoints[27].type = "stand";
|
||||
/* 9:53 */waypoints[27].children[0] = 26;
|
||||
/* 9:53 */waypoints[27].children[1] = 28;
|
||||
/* 9:53 */waypoints[27].children[2] = 84;
|
||||
/* 9:53 */waypoints[28] = spawnstruct();
|
||||
/* 9:53 */waypoints[28].origin = (-882.694, -667.676, 1.30622);
|
||||
/* 9:53 */waypoints[28].type = "stand";
|
||||
/* 9:53 */waypoints[28].children[0] = 27;
|
||||
/* 9:53 */waypoints[28].children[1] = 29;
|
||||
/* 9:53 */waypoints[28].children[2] = 107;
|
||||
/* 9:53 */waypoints[28].children[3] = 108;
|
||||
/* 9:53 */waypoints[29] = spawnstruct();
|
||||
/* 9:53 */waypoints[29].origin = (-535.996, -693.574, -0.975826);
|
||||
/* 9:53 */waypoints[29].type = "stand";
|
||||
/* 9:53 */waypoints[29].children[0] = 28;
|
||||
/* 9:53 */waypoints[29].children[1] = 30;
|
||||
/* 9:53 */waypoints[29].children[2] = 36;
|
||||
/* 9:53 */waypoints[29].children[3] = 37;
|
||||
/* 9:53 */waypoints[29].children[4] = 108;
|
||||
/* 9:53 */waypoints[29].children[5] = 109;
|
||||
/* 9:53 */waypoints[29].children[6] = 110;
|
||||
/* 9:53 */waypoints[29].children[7] = 111;
|
||||
/* 9:53 */waypoints[29].children[8] = 112;
|
||||
/* 9:53 */waypoints[30] = spawnstruct();
|
||||
/* 9:53 */waypoints[30].origin = (-513.925, -1084.68, 16.2305);
|
||||
/* 9:53 */waypoints[30].type = "stand";
|
||||
/* 9:53 */waypoints[30].children[0] = 29;
|
||||
/* 9:53 */waypoints[30].children[1] = 31;
|
||||
/* 9:53 */waypoints[30].children[2] = 48;
|
||||
/* 9:53 */waypoints[30].children[3] = 33;
|
||||
/* 9:53 */waypoints[31] = spawnstruct();
|
||||
/* 9:53 */waypoints[31].origin = (-346.599, -1450.83, 0.227518);
|
||||
/* 9:53 */waypoints[31].type = "stand";
|
||||
/* 9:53 */waypoints[31].children[0] = 30;
|
||||
/* 9:53 */waypoints[31].children[1] = 34;
|
||||
/* 9:53 */waypoints[31].children[2] = 32;
|
||||
/* 9:53 */waypoints[31].children[3] = 48;
|
||||
/* 9:53 */waypoints[31].children[4] = 113;
|
||||
/* 9:53 */waypoints[32] = spawnstruct();
|
||||
/* 9:53 */waypoints[32].origin = (-313.921, -1592.57, 0.30533);
|
||||
/* 9:53 */waypoints[32].type = "stand";
|
||||
/* 9:53 */waypoints[32].children[0] = 43;
|
||||
/* 9:53 */waypoints[32].children[1] = 31;
|
||||
/* 9:53 */waypoints[32].children[2] = 33;
|
||||
/* 9:53 */waypoints[32].children[3] = 48;
|
||||
/* 9:53 */waypoints[33] = spawnstruct();
|
||||
/* 9:53 */waypoints[33].origin = (-291.957, -1747.12, 2.37415);
|
||||
/* 9:53 */waypoints[33].type = "stand";
|
||||
/* 9:53 */waypoints[33].children[0] = 44;
|
||||
/* 9:53 */waypoints[33].children[1] = 32;
|
||||
/* 9:53 */waypoints[33].children[2] = 45;
|
||||
/* 9:53 */waypoints[33].children[3] = 30;
|
||||
/* 9:53 */waypoints[34] = spawnstruct();
|
||||
/* 9:53 */waypoints[34].origin = (200.389, -1449.76, 3.73882);
|
||||
/* 9:53 */waypoints[34].type = "stand";
|
||||
/* 9:53 */waypoints[34].children[0] = 31;
|
||||
/* 9:53 */waypoints[34].children[1] = 35;
|
||||
/* 9:53 */waypoints[34].children[2] = 42;
|
||||
/* 9:53 */waypoints[34].children[3] = 44;
|
||||
/* 9:53 */waypoints[35] = spawnstruct();
|
||||
/* 9:53 */waypoints[35].origin = (228.288, -826.966, 0.624998);
|
||||
/* 9:53 */waypoints[35].type = "stand";
|
||||
/* 9:53 */waypoints[35].children[0] = 34;
|
||||
/* 9:53 */waypoints[35].children[1] = 36;
|
||||
/* 9:53 */waypoints[35].children[2] = 38;
|
||||
/* 9:53 */waypoints[36] = spawnstruct();
|
||||
/* 9:53 */waypoints[36].origin = (-248.98, -812.566, -0.864056);
|
||||
/* 9:53 */waypoints[36].type = "stand";
|
||||
/* 9:53 */waypoints[36].children[0] = 35;
|
||||
/* 9:53 */waypoints[36].children[1] = 29;
|
||||
/* 9:53 */waypoints[36].children[2] = 37;
|
||||
/* 9:53 */waypoints[36].children[3] = 111;
|
||||
/* 9:53 */waypoints[36].children[4] = 112;
|
||||
/* 9:53 */waypoints[37] = spawnstruct();
|
||||
/* 9:53 */waypoints[37].origin = (-278.525, -664.913, 1.59899);
|
||||
/* 9:53 */waypoints[37].type = "stand";
|
||||
/* 9:53 */waypoints[37].children[0] = 29;
|
||||
/* 9:53 */waypoints[37].children[1] = 38;
|
||||
/* 9:53 */waypoints[37].children[2] = 58;
|
||||
/* 9:53 */waypoints[37].children[3] = 36;
|
||||
/* 9:53 */waypoints[37].children[4] = 111;
|
||||
/* 9:53 */waypoints[37].children[5] = 112;
|
||||
/* 9:53 */waypoints[38] = spawnstruct();
|
||||
/* 9:53 */waypoints[38].origin = (217.731, -667.232, 0.625001);
|
||||
/* 9:53 */waypoints[38].type = "stand";
|
||||
/* 9:53 */waypoints[38].children[0] = 37;
|
||||
/* 9:53 */waypoints[38].children[1] = 39;
|
||||
/* 9:53 */waypoints[38].children[2] = 69;
|
||||
/* 9:53 */waypoints[38].children[3] = 74;
|
||||
/* 9:53 */waypoints[38].children[4] = 35;
|
||||
/* 9:53 */waypoints[39] = spawnstruct();
|
||||
/* 9:53 */waypoints[39].origin = (224.072, -286.595, 128.125);
|
||||
/* 9:53 */waypoints[39].type = "stand";
|
||||
/* 9:53 */waypoints[39].children[0] = 38;
|
||||
/* 9:53 */waypoints[39].children[1] = 40;
|
||||
/* 9:53 */waypoints[39].children[2] = 63;
|
||||
/* 9:53 */waypoints[39].children[3] = 64;
|
||||
/* 9:53 */waypoints[40] = spawnstruct();
|
||||
/* 9:53 */waypoints[40].origin = (740.021, -298.837, 128.125);
|
||||
/* 9:53 */waypoints[40].type = "stand";
|
||||
/* 9:53 */waypoints[40].children[0] = 39;
|
||||
/* 9:53 */waypoints[40].children[1] = 8;
|
||||
/* 9:53 */waypoints[40].children[2] = 64;
|
||||
/* 9:53 */waypoints[40].children[3] = 72;
|
||||
/* 9:53 */waypoints[41] = spawnstruct();
|
||||
/* 9:53 */waypoints[41].origin = (743.629, -1105.11, 128.125);
|
||||
/* 9:53 */waypoints[41].type = "stand";
|
||||
/* 9:53 */waypoints[41].children[0] = 8;
|
||||
/* 9:53 */waypoints[41].children[1] = 10;
|
||||
/* 9:53 */waypoints[41].children[2] = 66;
|
||||
/* 9:53 */waypoints[42] = spawnstruct();
|
||||
/* 9:53 */waypoints[42].origin = (315.515, -1514.94, 2.66027);
|
||||
/* 9:53 */waypoints[42].type = "stand";
|
||||
/* 9:53 */waypoints[42].children[0] = 34;
|
||||
/* 9:53 */waypoints[42].children[1] = 43;
|
||||
/* 9:53 */waypoints[42].children[2] = 44;
|
||||
/* 9:53 */waypoints[42].children[3] = 115;
|
||||
/* 9:53 */waypoints[43] = spawnstruct();
|
||||
/* 9:53 */waypoints[43].origin = (106.454, -1590.71, 5.60546);
|
||||
/* 9:53 */waypoints[43].type = "stand";
|
||||
/* 9:53 */waypoints[43].children[0] = 42;
|
||||
/* 9:53 */waypoints[43].children[1] = 32;
|
||||
/* 9:53 */waypoints[44] = spawnstruct();
|
||||
/* 9:53 */waypoints[44].origin = (144.061, -1752.18, 2.13524);
|
||||
/* 9:53 */waypoints[44].type = "stand";
|
||||
/* 9:53 */waypoints[44].children[0] = 33;
|
||||
/* 9:53 */waypoints[44].children[1] = 42;
|
||||
/* 9:53 */waypoints[44].children[2] = 34;
|
||||
/* 9:53 */waypoints[45] = spawnstruct();
|
||||
/* 9:53 */waypoints[45].origin = (-798.113, -1684.69, 5.43988);
|
||||
/* 9:53 */waypoints[45].type = "stand";
|
||||
/* 9:53 */waypoints[45].children[0] = 33;
|
||||
/* 9:53 */waypoints[45].children[1] = 46;
|
||||
/* 9:53 */waypoints[46] = spawnstruct();
|
||||
/* 9:53 */waypoints[46].origin = (-678.336, -1284.41, 9.58932);
|
||||
/* 9:53 */waypoints[46].type = "stand";
|
||||
/* 9:53 */waypoints[46].children[0] = 45;
|
||||
/* 9:53 */waypoints[46].children[1] = 47;
|
||||
/* 9:53 */waypoints[46].children[2] = 48;
|
||||
/* 9:53 */waypoints[47] = spawnstruct();
|
||||
/* 9:53 */waypoints[47].origin = (-1065.26, -1267.43, 126.33);
|
||||
/* 9:53 */waypoints[47].type = "stand";
|
||||
/* 9:53 */waypoints[47].children[0] = 46;
|
||||
/* 9:53 */waypoints[47].children[1] = 21;
|
||||
/* 9:53 */waypoints[47].children[2] = 22;
|
||||
/* 9:53 */waypoints[47].children[3] = 26;
|
||||
/* 9:53 */waypoints[47].children[4] = 85;
|
||||
/* 9:53 */waypoints[48] = spawnstruct();
|
||||
/* 9:53 */waypoints[48].origin = (-544.538, -1248.81, 30.2042);
|
||||
/* 9:53 */waypoints[48].type = "stand";
|
||||
/* 9:53 */waypoints[48].children[0] = 46;
|
||||
/* 9:53 */waypoints[48].children[1] = 30;
|
||||
/* 9:53 */waypoints[48].children[2] = 31;
|
||||
/* 9:53 */waypoints[48].children[3] = 32;
|
||||
/* 9:53 */waypoints[48].children[4] = 113;
|
||||
/* 9:53 */waypoints[49] = spawnstruct();
|
||||
/* 9:53 */waypoints[49].origin = (-490.605, 26.2396, 46.3706);
|
||||
/* 9:53 */waypoints[49].type = "stand";
|
||||
/* 9:53 */waypoints[49].children[0] = 50;
|
||||
/* 9:53 */waypoints[49].children[1] = 53;
|
||||
/* 9:53 */waypoints[49].children[2] = 106;
|
||||
/* 9:53 */waypoints[49].children[3] = 108;
|
||||
/* 9:53 */waypoints[50] = spawnstruct();
|
||||
/* 9:53 */waypoints[50].origin = (-698.694, 405.298, 116.125);
|
||||
/* 9:53 */waypoints[50].type = "stand";
|
||||
/* 9:53 */waypoints[50].children[0] = 49;
|
||||
/* 9:53 */waypoints[50].children[1] = 51;
|
||||
/* 9:53 */waypoints[50].children[2] = 53;
|
||||
/* 9:53 */waypoints[50].children[3] = 106;
|
||||
/* 9:53 */waypoints[51] = spawnstruct();
|
||||
/* 9:53 */waypoints[51].origin = (-1051.41, 369.033, 121.399);
|
||||
/* 9:53 */waypoints[51].type = "stand";
|
||||
/* 9:53 */waypoints[51].children[0] = 50;
|
||||
/* 9:53 */waypoints[51].children[1] = 52;
|
||||
/* 9:53 */waypoints[52] = spawnstruct();
|
||||
/* 9:53 */waypoints[52].origin = (-1068.35, 7.33249, 125.851);
|
||||
/* 9:53 */waypoints[52].type = "stand";
|
||||
/* 9:53 */waypoints[52].children[0] = 51;
|
||||
/* 9:53 */waypoints[52].children[1] = 53;
|
||||
/* 9:53 */waypoints[52].children[2] = 54;
|
||||
/* 9:53 */waypoints[53] = spawnstruct();
|
||||
/* 9:53 */waypoints[53].origin = (-857.665, 142.37, 110.337);
|
||||
/* 9:53 */waypoints[53].type = "stand";
|
||||
/* 9:53 */waypoints[53].children[0] = 52;
|
||||
/* 9:53 */waypoints[53].children[1] = 50;
|
||||
/* 9:53 */waypoints[53].children[2] = 49;
|
||||
/* 9:53 */waypoints[53].children[3] = 106;
|
||||
/* 9:53 */waypoints[54] = spawnstruct();
|
||||
/* 9:53 */waypoints[54].origin = (-1113.52, -1015.58, 128.125);
|
||||
/* 9:53 */waypoints[54].type = "stand";
|
||||
/* 9:53 */waypoints[54].children[0] = 52;
|
||||
/* 9:53 */waypoints[54].children[1] = 26;
|
||||
/* 9:53 */waypoints[54].children[2] = 81;
|
||||
/* 9:53 */waypoints[54].children[3] = 82;
|
||||
/* 9:53 */waypoints[54].children[4] = 83;
|
||||
/* 9:53 */waypoints[55] = spawnstruct();
|
||||
/* 9:53 */waypoints[55].origin = (-360.98, 462.217, 127.152);
|
||||
/* 9:53 */waypoints[55].type = "stand";
|
||||
/* 9:53 */waypoints[55].children[0] = 62;
|
||||
/* 9:53 */waypoints[55].children[1] = 105;
|
||||
/* 9:53 */waypoints[55].children[2] = 106;
|
||||
/* 9:53 */waypoints[56] = spawnstruct();
|
||||
/* 9:53 */waypoints[56].origin = (-296.526, 73.805, 123.369);
|
||||
/* 9:53 */waypoints[56].type = "stand";
|
||||
/* 9:53 */waypoints[56].children[0] = 57;
|
||||
/* 9:53 */waypoints[56].children[1] = 105;
|
||||
/* 9:53 */waypoints[57] = spawnstruct();
|
||||
/* 9:53 */waypoints[57].origin = (-348.594, -215.657, 126.428);
|
||||
/* 9:53 */waypoints[57].type = "stand";
|
||||
/* 9:53 */waypoints[57].children[0] = 56;
|
||||
/* 9:53 */waypoints[57].children[1] = 58;
|
||||
/* 9:53 */waypoints[58] = spawnstruct();
|
||||
/* 9:53 */waypoints[58].origin = (-211.055, -279.378, 128.125);
|
||||
/* 9:53 */waypoints[58].type = "stand";
|
||||
/* 9:53 */waypoints[58].children[0] = 57;
|
||||
/* 9:53 */waypoints[58].children[1] = 37;
|
||||
/* 9:53 */waypoints[58].children[2] = 59;
|
||||
/* 9:53 */waypoints[58].children[3] = 63;
|
||||
/* 9:53 */waypoints[59] = spawnstruct();
|
||||
/* 9:53 */waypoints[59].origin = (-75.3093, -295.769, 121.505);
|
||||
/* 9:53 */waypoints[59].type = "stand";
|
||||
/* 9:53 */waypoints[59].children[0] = 58;
|
||||
/* 9:53 */waypoints[59].children[1] = 60;
|
||||
/* 9:53 */waypoints[59].children[2] = 63;
|
||||
/* 9:53 */waypoints[59].children[3] = 103;
|
||||
/* 9:53 */waypoints[59].children[4] = 98;
|
||||
/* 9:53 */waypoints[59].children[5] = 134;
|
||||
/* 9:53 */waypoints[60] = spawnstruct();
|
||||
/* 9:53 */waypoints[60].origin = (-41.5434, -82.9539, 128.125);
|
||||
/* 9:53 */waypoints[60].type = "stand";
|
||||
/* 9:53 */waypoints[60].children[0] = 59;
|
||||
/* 9:53 */waypoints[60].children[1] = 61;
|
||||
/* 9:53 */waypoints[60].children[2] = 78;
|
||||
/* 9:53 */waypoints[61] = spawnstruct();
|
||||
/* 9:53 */waypoints[61].origin = (-41.9725, 69.4377, 128.125);
|
||||
/* 9:53 */waypoints[61].type = "stand";
|
||||
/* 9:53 */waypoints[61].children[0] = 60;
|
||||
/* 9:53 */waypoints[61].children[1] = 62;
|
||||
/* 9:53 */waypoints[61].children[2] = 3;
|
||||
/* 9:53 */waypoints[61].children[3] = 77;
|
||||
/* 9:53 */waypoints[61].children[4] = 78;
|
||||
/* 9:53 */waypoints[61].children[5] = 79;
|
||||
/* 9:53 */waypoints[61].children[6] = 101;
|
||||
/* 9:53 */waypoints[62] = spawnstruct();
|
||||
/* 9:53 */waypoints[62].origin = (-122.703, 428.487, 128.125);
|
||||
/* 9:53 */waypoints[62].type = "stand";
|
||||
/* 9:53 */waypoints[62].children[0] = 61;
|
||||
/* 9:53 */waypoints[62].children[1] = 55;
|
||||
/* 9:53 */waypoints[62].children[2] = 79;
|
||||
/* 9:53 */waypoints[62].children[3] = 101;
|
||||
/* 9:53 */waypoints[62].children[4] = 102;
|
||||
/* 9:53 */waypoints[62].children[5] = 105;
|
||||
/* 9:53 */waypoints[63] = spawnstruct();
|
||||
/* 9:53 */waypoints[63].origin = (40.5586, -208.132, 128.125);
|
||||
/* 9:53 */waypoints[63].type = "stand";
|
||||
/* 9:53 */waypoints[63].children[0] = 59;
|
||||
/* 9:53 */waypoints[63].children[1] = 39;
|
||||
/* 9:53 */waypoints[63].children[2] = 64;
|
||||
/* 9:53 */waypoints[63].children[3] = 58;
|
||||
/* 9:53 */waypoints[64] = spawnstruct();
|
||||
/* 9:53 */waypoints[64].origin = (751.796, -153.689, 128.125);
|
||||
/* 9:53 */waypoints[64].type = "stand";
|
||||
/* 9:53 */waypoints[64].children[0] = 63;
|
||||
/* 9:53 */waypoints[64].children[1] = 40;
|
||||
/* 9:53 */waypoints[64].children[2] = 39;
|
||||
/* 9:53 */waypoints[64].children[3] = 5;
|
||||
/* 9:53 */waypoints[65] = spawnstruct();
|
||||
/* 9:53 */waypoints[65].origin = (137.189, -1113.41, 128.125);
|
||||
/* 9:53 */waypoints[65].type = "stand";
|
||||
/* 9:53 */waypoints[65].children[0] = 66;
|
||||
/* 9:53 */waypoints[65].children[1] = 92;
|
||||
/* 9:53 */waypoints[65].children[2] = 124;
|
||||
/* 9:53 */waypoints[66] = spawnstruct();
|
||||
/* 9:53 */waypoints[66].origin = (218.336, -1099.79, 128.125);
|
||||
/* 9:53 */waypoints[66].type = "stand";
|
||||
/* 9:53 */waypoints[66].children[0] = 65;
|
||||
/* 9:53 */waypoints[66].children[1] = 41;
|
||||
/* 9:53 */waypoints[67] = spawnstruct();
|
||||
/* 9:53 */waypoints[67].origin = (-234.461, -1091.3, 128.125);
|
||||
/* 9:53 */waypoints[67].type = "stand";
|
||||
/* 9:53 */waypoints[67].children[0] = 68;
|
||||
/* 9:53 */waypoints[67].children[1] = 132;
|
||||
/* 9:53 */waypoints[67].children[2] = 133;
|
||||
/* 9:53 */waypoints[68] = spawnstruct();
|
||||
/* 9:53 */waypoints[68].origin = (-334.956, -1086.23, 124.829);
|
||||
/* 9:53 */waypoints[68].type = "crouch";
|
||||
/* 9:53 */waypoints[68].children[0] = 67;
|
||||
/* 9:53 */waypoints[68].angles = (7.31567, 179.914, 0);
|
||||
/* 9:53 */waypoints[69] = spawnstruct();
|
||||
/* 9:53 */waypoints[69].origin = (520.862, -716.198, 1.02902);
|
||||
/* 9:53 */waypoints[69].type = "stand";
|
||||
/* 9:53 */waypoints[69].children[0] = 38;
|
||||
/* 9:53 */waypoints[69].children[1] = 70;
|
||||
/* 9:53 */waypoints[69].children[2] = 4;
|
||||
/* 9:53 */waypoints[69].children[3] = 74;
|
||||
/* 9:53 */waypoints[70] = spawnstruct();
|
||||
/* 9:53 */waypoints[70].origin = (663.643, -750.942, 1.60862);
|
||||
/* 9:53 */waypoints[70].type = "stand";
|
||||
/* 9:53 */waypoints[70].children[0] = 69;
|
||||
/* 9:53 */waypoints[70].children[1] = 71;
|
||||
/* 9:53 */waypoints[70].children[2] = 73;
|
||||
/* 9:53 */waypoints[71] = spawnstruct();
|
||||
/* 9:53 */waypoints[71].origin = (664.183, -433.866, 129.711);
|
||||
/* 9:53 */waypoints[71].type = "stand";
|
||||
/* 9:53 */waypoints[71].children[0] = 70;
|
||||
/* 9:53 */waypoints[71].children[1] = 72;
|
||||
/* 9:53 */waypoints[72] = spawnstruct();
|
||||
/* 9:53 */waypoints[72].origin = (735.018, -429.113, 127.921);
|
||||
/* 9:53 */waypoints[72].type = "stand";
|
||||
/* 9:53 */waypoints[72].children[0] = 71;
|
||||
/* 9:53 */waypoints[72].children[1] = 40;
|
||||
/* 9:53 */waypoints[72].children[2] = 8;
|
||||
/* 9:53 */waypoints[73] = spawnstruct();
|
||||
/* 9:53 */waypoints[73].origin = (781.167, -762.566, 15.1041);
|
||||
/* 9:53 */waypoints[73].type = "crouch";
|
||||
/* 9:53 */waypoints[73].children[0] = 70;
|
||||
/* 9:53 */waypoints[73].angles = (4.46472, -178.4, 0);
|
||||
/* 9:53 */waypoints[74] = spawnstruct();
|
||||
/* 9:53 */waypoints[74].origin = (518.706, -562.432, 2.07548);
|
||||
/* 9:53 */waypoints[74].type = "stand";
|
||||
/* 9:53 */waypoints[74].children[0] = 38;
|
||||
/* 9:53 */waypoints[74].children[1] = 69;
|
||||
/* 9:53 */waypoints[74].children[2] = 4;
|
||||
/* 9:53 */waypoints[75] = spawnstruct();
|
||||
/* 9:53 */waypoints[75].origin = (598.819, 316.092, 128.125);
|
||||
/* 9:53 */waypoints[75].type = "stand";
|
||||
/* 9:53 */waypoints[75].children[0] = 0;
|
||||
/* 9:53 */waypoints[75].children[1] = 1;
|
||||
/* 9:53 */waypoints[75].children[2] = 99;
|
||||
/* 9:53 */waypoints[76] = spawnstruct();
|
||||
/* 9:53 */waypoints[76].origin = (137.065, -22.9577, 128.125);
|
||||
/* 9:53 */waypoints[76].type = "claymore";
|
||||
/* 9:53 */waypoints[76].children[0] = 3;
|
||||
/* 9:53 */waypoints[76].angles = (31.6779, 100.373, 0);
|
||||
/* 9:53 */waypoints[77] = spawnstruct();
|
||||
/* 9:53 */waypoints[77].origin = (21.4035, -37.7877, 128.009);
|
||||
/* 9:53 */waypoints[77].type = "claymore";
|
||||
/* 9:53 */waypoints[77].children[0] = 61;
|
||||
/* 9:53 */waypoints[77].angles = (57.1497, -179.416, 0);
|
||||
/* 9:53 */waypoints[78] = spawnstruct();
|
||||
/* 9:53 */waypoints[78].origin = (-141.061, -81.8493, 128.125);
|
||||
/* 9:53 */waypoints[78].type = "claymore";
|
||||
/* 9:53 */waypoints[78].children[0] = 60;
|
||||
/* 9:53 */waypoints[78].children[1] = 61;
|
||||
/* 9:53 */waypoints[78].angles = (27.5635, 3.63831, 0);
|
||||
/* 9:53 */waypoints[79] = spawnstruct();
|
||||
/* 9:53 */waypoints[79].origin = (-139.658, 319.82, 128.122);
|
||||
/* 9:53 */waypoints[79].type = "claymore";
|
||||
/* 9:53 */waypoints[79].children[0] = 62;
|
||||
/* 9:53 */waypoints[79].children[1] = 61;
|
||||
/* 9:53 */waypoints[79].angles = (30.8868, 89.8645, 0);
|
||||
/* 9:53 */waypoints[80] = spawnstruct();
|
||||
/* 9:53 */waypoints[80].origin = (-1029.4, -914.332, 126.88);
|
||||
/* 9:53 */waypoints[80].type = "claymore";
|
||||
/* 9:53 */waypoints[80].children[0] = 81;
|
||||
/* 9:53 */waypoints[80].angles = (36.9019, -168.199, 0);
|
||||
/* 9:53 */waypoints[81] = spawnstruct();
|
||||
/* 9:53 */waypoints[81].origin = (-1074.96, -803.985, 128.272);
|
||||
/* 9:53 */waypoints[81].type = "stand";
|
||||
/* 9:53 */waypoints[81].children[0] = 80;
|
||||
/* 9:53 */waypoints[81].children[1] = 54;
|
||||
/* 9:53 */waypoints[82] = spawnstruct();
|
||||
/* 9:53 */waypoints[82].origin = (-1013.66, -1006.89, 128.125);
|
||||
/* 9:53 */waypoints[82].type = "claymore";
|
||||
/* 9:53 */waypoints[82].children[0] = 54;
|
||||
/* 9:53 */waypoints[82].children[1] = 26;
|
||||
/* 9:53 */waypoints[82].angles = (47.8168, -173.835, 0);
|
||||
/* 9:53 */waypoints[83] = spawnstruct();
|
||||
/* 9:53 */waypoints[83].origin = (-1153.04, -1163.9, 128.125);
|
||||
/* 9:53 */waypoints[83].type = "claymore";
|
||||
/* 9:53 */waypoints[83].children[0] = 54;
|
||||
/* 9:53 */waypoints[83].children[1] = 26;
|
||||
/* 9:53 */waypoints[83].angles = (34.6826, 0.216064, 0);
|
||||
/* 9:53 */waypoints[84] = spawnstruct();
|
||||
/* 9:53 */waypoints[84].origin = (-917.373, -962.182, 128.125);
|
||||
/* 9:53 */waypoints[84].type = "claymore";
|
||||
/* 9:53 */waypoints[84].children[0] = 27;
|
||||
/* 9:53 */waypoints[84].angles = (31.2054, -90.6024, 0);
|
||||
/* 9:53 */waypoints[85] = spawnstruct();
|
||||
/* 9:53 */waypoints[85].origin = (-1158.78, -1255.77, 128.125);
|
||||
/* 9:53 */waypoints[85].type = "claymore";
|
||||
/* 9:53 */waypoints[85].children[0] = 47;
|
||||
/* 9:53 */waypoints[85].children[1] = 21;
|
||||
/* 9:53 */waypoints[85].angles = (35.6329, 0.69397, 0);
|
||||
/* 9:53 */waypoints[86] = spawnstruct();
|
||||
/* 9:53 */waypoints[86].origin = (-941.839, -1845.52, 127.125);
|
||||
/* 9:53 */waypoints[86].type = "claymore";
|
||||
/* 9:53 */waypoints[86].children[0] = 87;
|
||||
/* 9:53 */waypoints[86].angles = (56.2048, -167.65, 0);
|
||||
/* 9:53 */waypoints[87] = spawnstruct();
|
||||
/* 9:53 */waypoints[87].origin = (-1019.19, -1913.28, 125.125);
|
||||
/* 9:53 */waypoints[87].type = "stand";
|
||||
/* 9:53 */waypoints[87].children[0] = 86;
|
||||
/* 9:53 */waypoints[87].children[1] = 19;
|
||||
/* 9:53 */waypoints[87].children[2] = 20;
|
||||
/* 9:53 */waypoints[87].children[3] = 88;
|
||||
/* 9:53 */waypoints[88] = spawnstruct();
|
||||
/* 9:53 */waypoints[88].origin = (-1187.03, -1843.39, 128.125);
|
||||
/* 9:53 */waypoints[88].type = "crouch";
|
||||
/* 9:53 */waypoints[88].children[0] = 87;
|
||||
/* 9:53 */waypoints[88].angles = (6.20606, -18.1366, 0);
|
||||
/* 9:53 */waypoints[89] = spawnstruct();
|
||||
/* 9:53 */waypoints[89].origin = (-862.654, -1962.01, 127.526);
|
||||
/* 9:53 */waypoints[89].type = "crouch";
|
||||
/* 9:53 */waypoints[89].children[0] = 17;
|
||||
/* 9:53 */waypoints[89].angles = (3.67371, 27.7533, 0);
|
||||
/* 9:53 */waypoints[90] = spawnstruct();
|
||||
/* 9:53 */waypoints[90].origin = (-348.573, -1883.35, 137.401);
|
||||
/* 9:53 */waypoints[90].type = "claymore";
|
||||
/* 9:53 */waypoints[90].children[0] = 15;
|
||||
/* 9:53 */waypoints[90].angles = (29.6234, -78.7317, 0);
|
||||
/* 9:53 */waypoints[91] = spawnstruct();
|
||||
/* 9:53 */waypoints[91].origin = (-10.671, -1312.85, 128.383);
|
||||
/* 9:53 */waypoints[91].type = "claymore";
|
||||
/* 9:53 */waypoints[91].children[0] = 15;
|
||||
/* 9:53 */waypoints[91].children[1] = 123;
|
||||
/* 9:53 */waypoints[91].angles = (41.6479, 164.923, 0);
|
||||
/* 9:53 */waypoints[92] = spawnstruct();
|
||||
/* 9:53 */waypoints[92].origin = (-144.465, -971.765, 128.125);
|
||||
/* 9:53 */waypoints[92].type = "claymore";
|
||||
/* 9:53 */waypoints[92].children[0] = 65;
|
||||
/* 9:53 */waypoints[92].children[1] = 133;
|
||||
/* 9:53 */waypoints[92].angles = (28.6731, 1.80359, 0);
|
||||
/* 9:53 */waypoints[93] = spawnstruct();
|
||||
/* 9:53 */waypoints[93].origin = (47.4013, -1166.87, 128.125);
|
||||
/* 9:53 */waypoints[93].type = "claymore";
|
||||
/* 9:53 */waypoints[93].children[0] = 94;
|
||||
/* 9:53 */waypoints[93].angles = (20.9222, 107.498, 0);
|
||||
/* 9:53 */waypoints[94] = spawnstruct();
|
||||
/* 9:53 */waypoints[94].origin = (62.0376, -1207.71, 128.125);
|
||||
/* 9:53 */waypoints[94].type = "crouch";
|
||||
/* 9:53 */waypoints[94].children[0] = 93;
|
||||
/* 9:53 */waypoints[94].angles = (6.52466, 129.327, 0);
|
||||
/* 9:53 */waypoints[95] = spawnstruct();
|
||||
/* 9:53 */waypoints[95].origin = (-203.255, -1227.01, 128.125);
|
||||
/* 9:53 */waypoints[95].type = "crouch";
|
||||
/* 9:53 */waypoints[95].children[0] = 132;
|
||||
/* 9:53 */waypoints[95].angles = (5.88745, 47.5287, 0);
|
||||
/* 9:53 */waypoints[96] = spawnstruct();
|
||||
/* 9:53 */waypoints[96].origin = (-191.591, -960.381, 128.125);
|
||||
/* 9:53 */waypoints[96].type = "crouch";
|
||||
/* 9:53 */waypoints[96].children[0] = 133;
|
||||
/* 9:53 */waypoints[96].angles = (5.25574, -43.4985, 0);
|
||||
/* 9:53 */waypoints[97] = spawnstruct();
|
||||
/* 9:53 */waypoints[97].origin = (-140.62, -875.256, 135.127);
|
||||
/* 9:53 */waypoints[97].type = "claymore";
|
||||
/* 9:53 */waypoints[97].children[0] = 98;
|
||||
/* 9:53 */waypoints[97].children[1] = 134;
|
||||
/* 9:53 */waypoints[97].angles = (19.1809, 12.3999, 0);
|
||||
/* 9:53 */waypoints[98] = spawnstruct();
|
||||
/* 9:53 */waypoints[98].origin = (-112.861, -642.56, 125.784);
|
||||
/* 9:53 */waypoints[98].type = "stand";
|
||||
/* 9:53 */waypoints[98].children[0] = 97;
|
||||
/* 9:53 */waypoints[98].children[1] = 59;
|
||||
/* 9:53 */waypoints[98].children[2] = 134;
|
||||
/* 9:53 */waypoints[99] = spawnstruct();
|
||||
/* 9:53 */waypoints[99].origin = (500.781, 440.571, 128.125);
|
||||
/* 9:53 */waypoints[99].type = "claymore";
|
||||
/* 9:53 */waypoints[99].children[0] = 75;
|
||||
/* 9:53 */waypoints[99].children[1] = 0;
|
||||
/* 9:53 */waypoints[99].angles = (34.8102, -91.9006, 0);
|
||||
/* 9:53 */waypoints[100] = spawnstruct();
|
||||
/* 9:53 */waypoints[100].origin = (139.955, 233.958, 128.118);
|
||||
/* 9:53 */waypoints[100].type = "claymore";
|
||||
/* 9:53 */waypoints[100].children[0] = 1;
|
||||
/* 9:53 */waypoints[100].children[1] = 3;
|
||||
/* 9:53 */waypoints[100].angles = (32.1185, -92.0544, 0);
|
||||
/* 9:53 */waypoints[101] = spawnstruct();
|
||||
/* 9:53 */waypoints[101].origin = (9.01028, 209.109, 128.125);
|
||||
/* 9:53 */waypoints[101].type = "claymore";
|
||||
/* 9:53 */waypoints[101].children[0] = 61;
|
||||
/* 9:53 */waypoints[101].children[1] = 62;
|
||||
/* 9:53 */waypoints[101].angles = (36.2329, -89.7913, 0);
|
||||
/* 9:53 */waypoints[102] = spawnstruct();
|
||||
/* 9:53 */waypoints[102].origin = (20.6726, 450.142, 128.125);
|
||||
/* 9:53 */waypoints[102].type = "crouch";
|
||||
/* 9:53 */waypoints[102].children[0] = 62;
|
||||
/* 9:53 */waypoints[102].angles = (6.64673, -140.74, 0);
|
||||
/* 9:53 */waypoints[103] = spawnstruct();
|
||||
/* 9:53 */waypoints[103].origin = (10.1664, -312.323, 128.993);
|
||||
/* 9:53 */waypoints[103].type = "claymore";
|
||||
/* 9:53 */waypoints[103].children[0] = 59;
|
||||
/* 9:53 */waypoints[103].angles = (26.7407, 95.6415, 0);
|
||||
/* 9:53 */waypoints[104] = spawnstruct();
|
||||
/* 9:53 */waypoints[104].origin = (-960.063, -2029.59, 127.666);
|
||||
/* 9:53 */waypoints[104].type = "claymore";
|
||||
/* 9:53 */waypoints[104].children[0] = 19;
|
||||
/* 9:53 */waypoints[104].angles = (29.9048, 96.1633, 0);
|
||||
/* 9:53 */waypoints[105] = spawnstruct();
|
||||
/* 9:53 */waypoints[105].origin = (-358.17, 373.502, 125.473);
|
||||
/* 9:53 */waypoints[105].type = "stand";
|
||||
/* 9:53 */waypoints[105].children[0] = 62;
|
||||
/* 9:53 */waypoints[105].children[1] = 55;
|
||||
/* 9:53 */waypoints[105].children[2] = 56;
|
||||
/* 9:53 */waypoints[106] = spawnstruct();
|
||||
/* 9:53 */waypoints[106].origin = (-499.881, 453.089, 125.104);
|
||||
/* 9:53 */waypoints[106].type = "stand";
|
||||
/* 9:53 */waypoints[106].children[0] = 49;
|
||||
/* 9:53 */waypoints[106].children[1] = 50;
|
||||
/* 9:53 */waypoints[106].children[2] = 55;
|
||||
/* 9:53 */waypoints[106].children[3] = 53;
|
||||
/* 9:53 */waypoints[107] = spawnstruct();
|
||||
/* 9:53 */waypoints[107].origin = (-906.152, -262.699, 20.3433);
|
||||
/* 9:53 */waypoints[107].type = "crouch";
|
||||
/* 9:53 */waypoints[107].children[0] = 28;
|
||||
/* 9:53 */waypoints[107].angles = (5.85022, -48.0267, 0);
|
||||
/* 9:53 */waypoints[108] = spawnstruct();
|
||||
/* 9:53 */waypoints[108].origin = (-502.014, -344.79, 24.4609);
|
||||
/* 9:53 */waypoints[108].type = "stand";
|
||||
/* 9:53 */waypoints[108].children[0] = 49;
|
||||
/* 9:53 */waypoints[108].children[1] = 29;
|
||||
/* 9:53 */waypoints[108].children[2] = 28;
|
||||
/* 9:53 */waypoints[109] = spawnstruct();
|
||||
/* 9:53 */waypoints[109].origin = (-365.644, -418.584, 23.6361);
|
||||
/* 9:53 */waypoints[109].type = "crouch";
|
||||
/* 9:53 */waypoints[109].children[0] = 29;
|
||||
/* 9:53 */waypoints[109].angles = (10.2832, -138.224, 0);
|
||||
/* 9:53 */waypoints[110] = spawnstruct();
|
||||
/* 9:53 */waypoints[110].origin = (-782.655, -917.056, 32.068);
|
||||
/* 9:53 */waypoints[110].type = "crouch";
|
||||
/* 9:53 */waypoints[110].children[0] = 29;
|
||||
/* 9:53 */waypoints[110].angles = (4.42749, 49.4275, 0);
|
||||
/* 9:53 */waypoints[111] = spawnstruct();
|
||||
/* 9:53 */waypoints[111].origin = (-343.977, -914.132, 12.2281);
|
||||
/* 9:53 */waypoints[111].type = "claymore";
|
||||
/* 9:53 */waypoints[111].children[0] = 36;
|
||||
/* 9:53 */waypoints[111].children[1] = 37;
|
||||
/* 9:53 */waypoints[111].children[2] = 29;
|
||||
/* 9:53 */waypoints[111].angles = (25.9442, 177.479, 0);
|
||||
/* 9:53 */waypoints[112] = spawnstruct();
|
||||
/* 9:53 */waypoints[112].origin = (-699.511, -891.907, 20.0903);
|
||||
/* 9:53 */waypoints[112].type = "claymore";
|
||||
/* 9:53 */waypoints[112].children[0] = 29;
|
||||
/* 9:53 */waypoints[112].children[1] = 36;
|
||||
/* 9:53 */waypoints[112].children[2] = 37;
|
||||
/* 9:53 */waypoints[112].angles = (25.7849, -5.63599, 0);
|
||||
/* 9:53 */waypoints[113] = spawnstruct();
|
||||
/* 9:53 */waypoints[113].origin = (-338.474, -1274.76, 5.73503);
|
||||
/* 9:53 */waypoints[113].type = "claymore";
|
||||
/* 9:53 */waypoints[113].children[0] = 48;
|
||||
/* 9:53 */waypoints[113].children[1] = 31;
|
||||
/* 9:53 */waypoints[113].angles = (25.3125, -177.77, 0);
|
||||
/* 9:53 */waypoints[114] = spawnstruct();
|
||||
/* 9:53 */waypoints[114].origin = (475.284, -1324.4, 14.8494);
|
||||
/* 9:53 */waypoints[114].type = "stand";
|
||||
/* 9:53 */waypoints[114].children[0] = 115;
|
||||
/* 9:53 */waypoints[115] = spawnstruct();
|
||||
/* 9:53 */waypoints[115].origin = (551.743, -1485.19, 20.4491);
|
||||
/* 9:53 */waypoints[115].type = "stand";
|
||||
/* 9:53 */waypoints[115].children[0] = 114;
|
||||
/* 9:53 */waypoints[115].children[1] = 117;
|
||||
/* 9:53 */waypoints[115].children[2] = 116;
|
||||
/* 9:53 */waypoints[115].children[3] = 42;
|
||||
/* 9:53 */waypoints[116] = spawnstruct();
|
||||
/* 9:53 */waypoints[116].origin = (613.726, -1328.46, 25.2803);
|
||||
/* 9:53 */waypoints[116].type = "stand";
|
||||
/* 9:53 */waypoints[116].children[0] = 115;
|
||||
/* 9:53 */waypoints[117] = spawnstruct();
|
||||
/* 9:53 */waypoints[117].origin = (550.93, -1379.46, 17.2578);
|
||||
/* 9:53 */waypoints[117].type = "stand";
|
||||
/* 9:53 */waypoints[117].children[0] = 115;
|
||||
/* 9:53 */waypoints[118] = spawnstruct();
|
||||
/* 9:53 */waypoints[118].origin = (237.631, -1649.84, 128.125);
|
||||
/* 9:53 */waypoints[118].type = "stand";
|
||||
/* 9:53 */waypoints[118].children[0] = 14;
|
||||
/* 9:53 */waypoints[118].children[1] = 119;
|
||||
/* 9:53 */waypoints[119] = spawnstruct();
|
||||
/* 9:53 */waypoints[119].origin = (809.654, -1662.32, 128.125);
|
||||
/* 9:53 */waypoints[119].type = "stand";
|
||||
/* 9:53 */waypoints[119].children[0] = 118;
|
||||
/* 9:53 */waypoints[119].children[1] = 11;
|
||||
/* 9:53 */waypoints[119].children[2] = 12;
|
||||
/* 9:53 */waypoints[120] = spawnstruct();
|
||||
/* 9:53 */waypoints[120].origin = (667.092, 243.276, 128.177);
|
||||
/* 9:53 */waypoints[120].type = "stand";
|
||||
/* 9:53 */waypoints[120].children[0] = 0;
|
||||
/* 9:53 */waypoints[120].children[1] = 1;
|
||||
/* 9:53 */waypoints[121] = spawnstruct();
|
||||
/* 9:53 */waypoints[121].origin = (-300.636, -1924.38, 124.488);
|
||||
/* 9:53 */waypoints[121].type = "stand";
|
||||
/* 9:53 */waypoints[121].children[0] = 15;
|
||||
/* 9:53 */waypoints[121].children[1] = 16;
|
||||
/* 9:53 */waypoints[122] = spawnstruct();
|
||||
/* 9:53 */waypoints[122].origin = (1092.45, -1463.02, 166.956);
|
||||
/* 9:53 */waypoints[122].type = "stand";
|
||||
/* 9:53 */waypoints[122].children[0] = 9;
|
||||
/* 9:53 */waypoints[122].children[1] = 11;
|
||||
/* 9:53 */waypoints[123] = spawnstruct();
|
||||
/* 9:53 */waypoints[123].origin = (-87.4196, -1332.41, 128.125);
|
||||
/* 9:53 */waypoints[123].type = "stand";
|
||||
/* 9:53 */waypoints[123].children[0] = 91;
|
||||
/* 9:53 */waypoints[123].children[1] = 15;
|
||||
/* 9:53 */waypoints[123].children[2] = 132;
|
||||
/* 9:53 */waypoints[124] = spawnstruct();
|
||||
/* 9:53 */waypoints[124].origin = (13.3701, -1015.68, 130.125);
|
||||
/* 9:53 */waypoints[124].type = "stand";
|
||||
/* 9:53 */waypoints[124].children[0] = 65;
|
||||
/* 9:53 */waypoints[124].children[1] = 125;
|
||||
/* 9:53 */waypoints[124].children[2] = 132;
|
||||
/* 9:53 */waypoints[124].children[3] = 133;
|
||||
/* 9:53 */waypoints[125] = spawnstruct();
|
||||
/* 9:53 */waypoints[125].origin = (71.9119, -952.364, 128.125);
|
||||
/* 9:53 */waypoints[125].type = "stand";
|
||||
/* 9:53 */waypoints[125].children[0] = 124;
|
||||
/* 9:53 */waypoints[125].children[1] = 126;
|
||||
/* 9:53 */waypoints[125].children[2] = 133;
|
||||
/* 9:53 */waypoints[126] = spawnstruct();
|
||||
/* 9:53 */waypoints[126].origin = (73.0384, -971.748, 128.125);
|
||||
/* 9:53 */waypoints[126].type = "climb";
|
||||
/* 9:53 */waypoints[126].children[0] = 125;
|
||||
/* 9:53 */waypoints[126].children[1] = 127;
|
||||
/* 9:53 */waypoints[126].angles = (-14.6997, -88.0499, 0);
|
||||
/* 9:53 */waypoints[127] = spawnstruct();
|
||||
/* 9:53 */waypoints[127].origin = (73.0632, -1011.89, 296.125);
|
||||
/* 9:53 */waypoints[127].type = "climb";
|
||||
/* 9:53 */waypoints[127].children[0] = 126;
|
||||
/* 9:53 */waypoints[127].children[1] = 128;
|
||||
/* 9:53 */waypoints[127].angles = (20.9222, -94.6143, 0);
|
||||
/* 9:53 */waypoints[128] = spawnstruct();
|
||||
/* 9:53 */waypoints[128].origin = (63.3361, -1217.63, 296.125);
|
||||
/* 9:53 */waypoints[128].type = "stand";
|
||||
/* 9:53 */waypoints[128].children[0] = 127;
|
||||
/* 9:53 */waypoints[128].children[1] = 129;
|
||||
/* 9:53 */waypoints[129] = spawnstruct();
|
||||
/* 9:53 */waypoints[129].origin = (-189.05, -1210.04, 296.125);
|
||||
/* 9:53 */waypoints[129].type = "stand";
|
||||
/* 9:53 */waypoints[129].children[0] = 128;
|
||||
/* 9:53 */waypoints[129].children[1] = 130;
|
||||
/* 9:53 */waypoints[130] = spawnstruct();
|
||||
/* 9:53 */waypoints[130].origin = (-179.301, -962.35, 296.125);
|
||||
/* 9:53 */waypoints[130].type = "stand";
|
||||
/* 9:53 */waypoints[130].children[0] = 129;
|
||||
/* 9:53 */waypoints[130].children[1] = 131;
|
||||
/* 9:53 */waypoints[131] = spawnstruct();
|
||||
/* 9:53 */waypoints[131].origin = (-40.2301, -962.326, 296.125);
|
||||
/* 9:53 */waypoints[131].type = "stand";
|
||||
/* 9:53 */waypoints[131].children[0] = 130;
|
||||
/* 9:53 */waypoints[132] = spawnstruct();
|
||||
/* 9:53 */waypoints[132].origin = (-86.0223, -1176.36, 130.121);
|
||||
/* 9:53 */waypoints[132].type = "stand";
|
||||
/* 9:53 */waypoints[132].children[0] = 124;
|
||||
/* 9:53 */waypoints[132].children[1] = 67;
|
||||
/* 9:53 */waypoints[132].children[2] = 123;
|
||||
/* 9:53 */waypoints[132].children[3] = 133;
|
||||
/* 9:53 */waypoints[132].children[4] = 95;
|
||||
/* 9:53 */waypoints[133] = spawnstruct();
|
||||
/* 9:53 */waypoints[133].origin = (-34.696, -964.101, 128.125);
|
||||
/* 9:53 */waypoints[133].type = "stand";
|
||||
/* 9:53 */waypoints[133].children[0] = 134;
|
||||
/* 9:53 */waypoints[133].children[1] = 124;
|
||||
/* 9:53 */waypoints[133].children[2] = 125;
|
||||
/* 9:53 */waypoints[133].children[3] = 92;
|
||||
/* 9:53 */waypoints[133].children[4] = 96;
|
||||
/* 9:53 */waypoints[133].children[5] = 67;
|
||||
/* 9:53 */waypoints[133].children[6] = 132;
|
||||
/* 9:53 */waypoints[134] = spawnstruct();
|
||||
/* 9:53 */waypoints[134].origin = (-46.8199, -836.557, 128.125);
|
||||
/* 9:53 */waypoints[134].type = "stand";
|
||||
/* 9:53 */waypoints[134].children[0] = 97;
|
||||
/* 9:53 */waypoints[134].children[1] = 133;
|
||||
/* 9:53 */waypoints[134].children[2] = 98;
|
||||
/* 9:53 */waypoints[134].children[3] = 59;
|
||||
/* 9:53 */return waypoints;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,761 +0,0 @@
|
||||
Lookout()
|
||||
{
|
||||
/* 21:28 */waypoints = [];
|
||||
/* 21:28 */waypoints[0] = spawnstruct();
|
||||
/* 21:28 */waypoints[0].origin = (778.845, 1291.23, 1680.32);
|
||||
/* 21:28 */waypoints[0].type = "stand";
|
||||
/* 21:28 */waypoints[0].children[0] = 1;
|
||||
/* 21:28 */waypoints[0].children[1] = 3;
|
||||
/* 21:28 */waypoints[0].children[2] = 113;
|
||||
/* 21:28 */waypoints[1] = spawnstruct();
|
||||
/* 21:28 */waypoints[1].origin = (944.181, 1216.78, 1682.67);
|
||||
/* 21:28 */waypoints[1].type = "stand";
|
||||
/* 21:28 */waypoints[1].children[0] = 2;
|
||||
/* 21:28 */waypoints[1].children[1] = 0;
|
||||
/* 21:28 */waypoints[1].children[2] = 113;
|
||||
/* 21:28 */waypoints[2] = spawnstruct();
|
||||
/* 21:28 */waypoints[2].origin = (928.586, 850.699, 1683.12);
|
||||
/* 21:28 */waypoints[2].type = "stand";
|
||||
/* 21:28 */waypoints[2].children[0] = 1;
|
||||
/* 21:28 */waypoints[2].children[1] = 3;
|
||||
/* 21:28 */waypoints[2].children[2] = 4;
|
||||
/* 21:28 */waypoints[2].children[3] = 113;
|
||||
/* 21:28 */waypoints[3] = spawnstruct();
|
||||
/* 21:28 */waypoints[3].origin = (680.069, 1103.03, 1614.32);
|
||||
/* 21:28 */waypoints[3].type = "stand";
|
||||
/* 21:28 */waypoints[3].children[0] = 0;
|
||||
/* 21:28 */waypoints[3].children[1] = 2;
|
||||
/* 21:28 */waypoints[3].children[2] = 98;
|
||||
/* 21:28 */waypoints[3].children[3] = 113;
|
||||
/* 21:28 */waypoints[4] = spawnstruct();
|
||||
/* 21:28 */waypoints[4].origin = (960.17, 403.114, 1728.23);
|
||||
/* 21:28 */waypoints[4].type = "stand";
|
||||
/* 21:28 */waypoints[4].children[0] = 2;
|
||||
/* 21:28 */waypoints[4].children[1] = 5;
|
||||
/* 21:28 */waypoints[4].children[2] = 6;
|
||||
/* 21:28 */waypoints[5] = spawnstruct();
|
||||
/* 21:28 */waypoints[5].origin = (1003.19, 31.8613, 1777.39);
|
||||
/* 21:28 */waypoints[5].type = "claymore";
|
||||
/* 21:28 */waypoints[5].children[0] = 4;
|
||||
/* 21:28 */waypoints[5].children[1] = 12;
|
||||
/* 21:28 */waypoints[5].angles = (10.8875, -92.818, 0);
|
||||
/* 21:28 */waypoints[6] = spawnstruct();
|
||||
/* 21:28 */waypoints[6].origin = (858.734, 228.831, 1741.89);
|
||||
/* 21:28 */waypoints[6].type = "stand";
|
||||
/* 21:28 */waypoints[6].children[0] = 4;
|
||||
/* 21:28 */waypoints[6].children[1] = 7;
|
||||
/* 21:28 */waypoints[7] = spawnstruct();
|
||||
/* 21:28 */waypoints[7].origin = (674.06, 257.562, 1741.27);
|
||||
/* 21:28 */waypoints[7].type = "stand";
|
||||
/* 21:28 */waypoints[7].children[0] = 6;
|
||||
/* 21:28 */waypoints[7].children[1] = 8;
|
||||
/* 21:28 */waypoints[7].children[2] = 15;
|
||||
/* 21:28 */waypoints[8] = spawnstruct();
|
||||
/* 21:28 */waypoints[8].origin = (680.17, 66.3202, 1767.13);
|
||||
/* 21:28 */waypoints[8].type = "stand";
|
||||
/* 21:28 */waypoints[8].children[0] = 7;
|
||||
/* 21:28 */waypoints[8].children[1] = 9;
|
||||
/* 21:28 */waypoints[8].children[2] = 10;
|
||||
/* 21:28 */waypoints[9] = spawnstruct();
|
||||
/* 21:28 */waypoints[9].origin = (818.391, 69.0948, 1767.13);
|
||||
/* 21:28 */waypoints[9].type = "crouch";
|
||||
/* 21:28 */waypoints[9].children[0] = 8;
|
||||
/* 21:28 */waypoints[9].angles = (9.34387, -177.748, 0);
|
||||
/* 21:28 */waypoints[10] = spawnstruct();
|
||||
/* 21:28 */waypoints[10].origin = (829.887, -88.4691, 1767.12);
|
||||
/* 21:28 */waypoints[10].type = "stand";
|
||||
/* 21:28 */waypoints[10].children[0] = 8;
|
||||
/* 21:28 */waypoints[10].children[1] = 11;
|
||||
/* 21:28 */waypoints[11] = spawnstruct();
|
||||
/* 21:28 */waypoints[11].origin = (843.459, -393.654, 1810.19);
|
||||
/* 21:28 */waypoints[11].type = "grenade";
|
||||
/* 21:28 */waypoints[11].children[0] = 10;
|
||||
/* 21:28 */waypoints[11].children[1] = 12;
|
||||
/* 21:28 */waypoints[11].children[2] = 13;
|
||||
/* 21:28 */waypoints[11].children[3] = 29;
|
||||
/* 21:28 */waypoints[11].angles = (2.08191, 162.784, 0);
|
||||
/* 21:28 */waypoints[12] = spawnstruct();
|
||||
/* 21:28 */waypoints[12].origin = (983.911, -227.724, 1792.76);
|
||||
/* 21:28 */waypoints[12].type = "stand";
|
||||
/* 21:28 */waypoints[12].children[0] = 11;
|
||||
/* 21:28 */waypoints[12].children[1] = 5;
|
||||
/* 21:28 */waypoints[12].children[2] = 13;
|
||||
/* 21:28 */waypoints[13] = spawnstruct();
|
||||
/* 21:28 */waypoints[13].origin = (547.199, -283.987, 1764.58);
|
||||
/* 21:28 */waypoints[13].type = "javelin";
|
||||
/* 21:28 */waypoints[13].children[0] = 11;
|
||||
/* 21:28 */waypoints[13].children[1] = 12;
|
||||
/* 21:28 */waypoints[13].children[2] = 14;
|
||||
/* 21:28 */waypoints[13].children[3] = 29;
|
||||
/* 21:28 */waypoints[13].children[4] = 30;
|
||||
/* 21:28 */waypoints[13].jav_point = (517.679, 1207.62, 1653.41);
|
||||
/* 21:28 */waypoints[14] = spawnstruct();
|
||||
/* 21:28 */waypoints[14].origin = (515.57, -80.5683, 1753.47);
|
||||
/* 21:28 */waypoints[14].type = "stand";
|
||||
/* 21:28 */waypoints[14].children[0] = 13;
|
||||
/* 21:28 */waypoints[14].children[1] = 15;
|
||||
/* 21:28 */waypoints[15] = spawnstruct();
|
||||
/* 21:28 */waypoints[15].origin = (455.89, 250.559, 1727.12);
|
||||
/* 21:28 */waypoints[15].type = "stand";
|
||||
/* 21:28 */waypoints[15].children[0] = 14;
|
||||
/* 21:28 */waypoints[15].children[1] = 7;
|
||||
/* 21:28 */waypoints[15].children[2] = 16;
|
||||
/* 21:28 */waypoints[15].children[3] = 26;
|
||||
/* 21:28 */waypoints[15].children[4] = 90;
|
||||
/* 21:28 */waypoints[15].children[5] = 92;
|
||||
/* 21:28 */waypoints[16] = spawnstruct();
|
||||
/* 21:28 */waypoints[16].origin = (574.296, 328.468, 1746.24);
|
||||
/* 21:28 */waypoints[16].type = "stand";
|
||||
/* 21:28 */waypoints[16].children[0] = 15;
|
||||
/* 21:28 */waypoints[16].children[1] = 17;
|
||||
/* 21:28 */waypoints[17] = spawnstruct();
|
||||
/* 21:28 */waypoints[17].origin = (577.759, 546.938, 1822.41);
|
||||
/* 21:28 */waypoints[17].type = "stand";
|
||||
/* 21:28 */waypoints[17].children[0] = 16;
|
||||
/* 21:28 */waypoints[17].children[1] = 18;
|
||||
/* 21:28 */waypoints[17].children[2] = 93;
|
||||
/* 21:28 */waypoints[18] = spawnstruct();
|
||||
/* 21:28 */waypoints[18].origin = (350.125, 547.077, 1819.58);
|
||||
/* 21:28 */waypoints[18].type = "climb";
|
||||
/* 21:28 */waypoints[18].children[0] = 17;
|
||||
/* 21:28 */waypoints[18].children[1] = 19;
|
||||
/* 21:28 */waypoints[18].angles = (-17.298, 175.908, 0);
|
||||
/* 21:28 */waypoints[19] = spawnstruct();
|
||||
/* 21:28 */waypoints[19].origin = (333.173, 547.077, 1867.13);
|
||||
/* 21:28 */waypoints[19].type = "climb";
|
||||
/* 21:28 */waypoints[19].children[0] = 18;
|
||||
/* 21:28 */waypoints[19].children[1] = 20;
|
||||
/* 21:28 */waypoints[19].angles = (14.3536, 177.166, 0);
|
||||
/* 21:28 */waypoints[20] = spawnstruct();
|
||||
/* 21:28 */waypoints[20].origin = (282.875, 545.777, 1832.85);
|
||||
/* 21:28 */waypoints[20].type = "climb";
|
||||
/* 21:28 */waypoints[20].children[0] = 19;
|
||||
/* 21:28 */waypoints[20].children[1] = 21;
|
||||
/* 21:28 */waypoints[20].angles = (-18.869, 0.862427, 0);
|
||||
/* 21:28 */waypoints[21] = spawnstruct();
|
||||
/* 21:28 */waypoints[21].origin = (143.908, 543.603, 1783.66);
|
||||
/* 21:28 */waypoints[21].type = "stand";
|
||||
/* 21:28 */waypoints[21].children[0] = 20;
|
||||
/* 21:28 */waypoints[21].children[1] = 24;
|
||||
/* 21:28 */waypoints[22] = spawnstruct();
|
||||
/* 21:28 */waypoints[22].origin = (-77.9322, 601.837, 1646.86);
|
||||
/* 21:28 */waypoints[22].type = "climb";
|
||||
/* 21:28 */waypoints[22].children[0] = 23;
|
||||
/* 21:28 */waypoints[22].children[1] = 69;
|
||||
/* 21:28 */waypoints[22].children[2] = 70;
|
||||
/* 21:28 */waypoints[22].angles = (-26.4825, -11.1951, 0);
|
||||
/* 21:28 */waypoints[23] = spawnstruct();
|
||||
/* 21:28 */waypoints[23].origin = (-61.7961, 599.51, 1699.37);
|
||||
/* 21:28 */waypoints[23].type = "climb";
|
||||
/* 21:28 */waypoints[23].children[0] = 22;
|
||||
/* 21:28 */waypoints[23].children[1] = 24;
|
||||
/* 21:28 */waypoints[23].angles = (-17.4902, -15.6171, 0);
|
||||
/* 21:28 */waypoints[24] = spawnstruct();
|
||||
/* 21:28 */waypoints[24].origin = (-19.655, 589.415, 1721.62);
|
||||
/* 21:28 */waypoints[24].type = "grenade";
|
||||
/* 21:28 */waypoints[24].children[0] = 21;
|
||||
/* 21:28 */waypoints[24].children[1] = 23;
|
||||
/* 21:28 */waypoints[24].angles = (6.37207, -95.1636, 0);
|
||||
/* 21:28 */waypoints[25] = spawnstruct();
|
||||
/* 21:28 */waypoints[25].origin = (33.6918, 255.847, 1668.19);
|
||||
/* 21:28 */waypoints[25].type = "stand";
|
||||
/* 21:28 */waypoints[25].children[0] = 26;
|
||||
/* 21:28 */waypoints[25].children[1] = 70;
|
||||
/* 21:28 */waypoints[25].children[2] = 71;
|
||||
/* 21:28 */waypoints[25].children[3] = 104;
|
||||
/* 21:28 */waypoints[26] = spawnstruct();
|
||||
/* 21:28 */waypoints[26].origin = (159.778, 228.387, 1692.65);
|
||||
/* 21:28 */waypoints[26].type = "stand";
|
||||
/* 21:28 */waypoints[26].children[0] = 25;
|
||||
/* 21:28 */waypoints[26].children[1] = 15;
|
||||
/* 21:28 */waypoints[27] = spawnstruct();
|
||||
/* 21:28 */waypoints[27].origin = (-199.676, -233.593, 1582.39);
|
||||
/* 21:28 */waypoints[27].type = "claymore";
|
||||
/* 21:28 */waypoints[27].children[0] = 31;
|
||||
/* 21:28 */waypoints[27].children[1] = 33;
|
||||
/* 21:28 */waypoints[27].angles = (11.5466, 98.2177, 0);
|
||||
/* 21:28 */waypoints[28] = spawnstruct();
|
||||
/* 21:28 */waypoints[28].origin = (504.664, -874.319, 1907.27);
|
||||
/* 21:28 */waypoints[28].type = "stand";
|
||||
/* 21:28 */waypoints[28].children[0] = 29;
|
||||
/* 21:28 */waypoints[28].children[1] = 38;
|
||||
/* 21:28 */waypoints[28].children[2] = 39;
|
||||
/* 21:28 */waypoints[28].children[3] = 117;
|
||||
/* 21:28 */waypoints[29] = spawnstruct();
|
||||
/* 21:28 */waypoints[29].origin = (868.347, -651.815, 1830.62);
|
||||
/* 21:28 */waypoints[29].type = "stand";
|
||||
/* 21:28 */waypoints[29].children[0] = 28;
|
||||
/* 21:28 */waypoints[29].children[1] = 11;
|
||||
/* 21:28 */waypoints[29].children[2] = 13;
|
||||
/* 21:28 */waypoints[29].children[3] = 117;
|
||||
/* 21:28 */waypoints[30] = spawnstruct();
|
||||
/* 21:28 */waypoints[30].origin = (235.202, -310.967, 1677.52);
|
||||
/* 21:28 */waypoints[30].type = "claymore";
|
||||
/* 21:28 */waypoints[30].children[0] = 13;
|
||||
/* 21:28 */waypoints[30].children[1] = 32;
|
||||
/* 21:28 */waypoints[30].angles = (3.62545, 9.55254, 0);
|
||||
/* 21:28 */waypoints[31] = spawnstruct();
|
||||
/* 21:28 */waypoints[31].origin = (-199.553, -390.271, 1581.75);
|
||||
/* 21:28 */waypoints[31].type = "javelin";
|
||||
/* 21:28 */waypoints[31].children[0] = 32;
|
||||
/* 21:28 */waypoints[31].children[1] = 27;
|
||||
/* 21:28 */waypoints[31].children[2] = 41;
|
||||
/* 21:28 */waypoints[31].children[3] = 54;
|
||||
/* 21:28 */waypoints[31].children[4] = 40;
|
||||
/* 21:28 */waypoints[31].jav_point = (-306.57, 1092.12, 1596.47);
|
||||
/* 21:28 */waypoints[32] = spawnstruct();
|
||||
/* 21:28 */waypoints[32].origin = (27.1112, -354.983, 1633.98);
|
||||
/* 21:28 */waypoints[32].type = "stand";
|
||||
/* 21:28 */waypoints[32].children[0] = 30;
|
||||
/* 21:28 */waypoints[32].children[1] = 31;
|
||||
/* 21:28 */waypoints[33] = spawnstruct();
|
||||
/* 21:28 */waypoints[33].origin = (-187.646, -33.5736, 1604.24);
|
||||
/* 21:28 */waypoints[33].type = "grenade";
|
||||
/* 21:28 */waypoints[33].children[0] = 27;
|
||||
/* 21:28 */waypoints[33].children[1] = 65;
|
||||
/* 21:28 */waypoints[33].children[2] = 70;
|
||||
/* 21:28 */waypoints[33].children[3] = 104;
|
||||
/* 21:28 */waypoints[33].angles = (-1.69741, 74.7784, 0);
|
||||
/* 21:28 */waypoints[34] = spawnstruct();
|
||||
/* 21:28 */waypoints[34].origin = (42.3314, -1467.71, 1888.05);
|
||||
/* 21:28 */waypoints[34].type = "stand";
|
||||
/* 21:28 */waypoints[34].children[0] = 35;
|
||||
/* 21:28 */waypoints[34].children[1] = 105;
|
||||
/* 21:28 */waypoints[34].children[2] = 108;
|
||||
/* 21:28 */waypoints[35] = spawnstruct();
|
||||
/* 21:28 */waypoints[35].origin = (-22.4712, -1092.97, 1731.46);
|
||||
/* 21:28 */waypoints[35].type = "stand";
|
||||
/* 21:28 */waypoints[35].children[0] = 34;
|
||||
/* 21:28 */waypoints[35].children[1] = 40;
|
||||
/* 21:28 */waypoints[35].children[2] = 105;
|
||||
/* 21:28 */waypoints[35].children[3] = 106;
|
||||
/* 21:28 */waypoints[35].children[4] = 108;
|
||||
/* 21:28 */waypoints[35].children[5] = 111;
|
||||
/* 21:28 */waypoints[36] = spawnstruct();
|
||||
/* 21:28 */waypoints[36].origin = (-725.882, -1123.12, 1656.6);
|
||||
/* 21:28 */waypoints[36].type = "stand";
|
||||
/* 21:28 */waypoints[36].children[0] = 37;
|
||||
/* 21:28 */waypoints[36].children[1] = 107;
|
||||
/* 21:28 */waypoints[37] = spawnstruct();
|
||||
/* 21:28 */waypoints[37].origin = (-851.998, -1133.61, 1645.02);
|
||||
/* 21:28 */waypoints[37].type = "tube";
|
||||
/* 21:28 */waypoints[37].children[0] = 36;
|
||||
/* 21:28 */waypoints[37].children[1] = 46;
|
||||
/* 21:28 */waypoints[37].angles = (0.730549, 83.5509, 0);
|
||||
/* 21:28 */waypoints[38] = spawnstruct();
|
||||
/* 21:28 */waypoints[38].origin = (485.187, -655.606, 1964.53);
|
||||
/* 21:28 */waypoints[38].type = "tube";
|
||||
/* 21:28 */waypoints[38].children[0] = 28;
|
||||
/* 21:28 */waypoints[38].angles = (9.53059, 97.8496, 0);
|
||||
/* 21:28 */waypoints[39] = spawnstruct();
|
||||
/* 21:28 */waypoints[39].origin = (286.624, -893.423, 1871.69);
|
||||
/* 21:28 */waypoints[39].type = "stand";
|
||||
/* 21:28 */waypoints[39].children[0] = 28;
|
||||
/* 21:28 */waypoints[39].children[1] = 40;
|
||||
/* 21:28 */waypoints[39].children[2] = 111;
|
||||
/* 21:28 */waypoints[40] = spawnstruct();
|
||||
/* 21:28 */waypoints[40].origin = (-21.8602, -856.088, 1645.35);
|
||||
/* 21:28 */waypoints[40].type = "stand";
|
||||
/* 21:28 */waypoints[40].children[0] = 39;
|
||||
/* 21:28 */waypoints[40].children[1] = 35;
|
||||
/* 21:28 */waypoints[40].children[2] = 41;
|
||||
/* 21:28 */waypoints[40].children[3] = 31;
|
||||
/* 21:28 */waypoints[40].children[4] = 42;
|
||||
/* 21:28 */waypoints[41] = spawnstruct();
|
||||
/* 21:28 */waypoints[41].origin = (-173.65, -706.015, 1578.71);
|
||||
/* 21:28 */waypoints[41].type = "stand";
|
||||
/* 21:28 */waypoints[41].children[0] = 40;
|
||||
/* 21:28 */waypoints[41].children[1] = 31;
|
||||
/* 21:28 */waypoints[41].children[2] = 42;
|
||||
/* 21:28 */waypoints[41].children[3] = 54;
|
||||
/* 21:28 */waypoints[42] = spawnstruct();
|
||||
/* 21:28 */waypoints[42].origin = (-478.051, -729.367, 1543.01);
|
||||
/* 21:28 */waypoints[42].type = "stand";
|
||||
/* 21:28 */waypoints[42].children[0] = 41;
|
||||
/* 21:28 */waypoints[42].children[1] = 43;
|
||||
/* 21:28 */waypoints[42].children[2] = 40;
|
||||
/* 21:28 */waypoints[42].children[3] = 110;
|
||||
/* 21:28 */waypoints[42].children[4] = 112;
|
||||
/* 21:28 */waypoints[42].children[5] = 120;
|
||||
/* 21:28 */waypoints[43] = spawnstruct();
|
||||
/* 21:28 */waypoints[43].origin = (-767.651, -847.858, 1503.43);
|
||||
/* 21:28 */waypoints[43].type = "tube";
|
||||
/* 21:28 */waypoints[43].children[0] = 42;
|
||||
/* 21:28 */waypoints[43].children[1] = 112;
|
||||
/* 21:28 */waypoints[43].angles = (-9.28349, 99.0911, 0);
|
||||
/* 21:28 */waypoints[44] = spawnstruct();
|
||||
/* 21:28 */waypoints[44].origin = (-920.323, -420.493, 1517.66);
|
||||
/* 21:28 */waypoints[44].type = "grenade";
|
||||
/* 21:28 */waypoints[44].children[0] = 45;
|
||||
/* 21:28 */waypoints[44].children[1] = 47;
|
||||
/* 21:28 */waypoints[44].children[2] = 51;
|
||||
/* 21:28 */waypoints[44].children[3] = 110;
|
||||
/* 21:28 */waypoints[44].children[4] = 112;
|
||||
/* 21:28 */waypoints[44].angles = (1.38972, 77.2283, 0);
|
||||
/* 21:28 */waypoints[45] = spawnstruct();
|
||||
/* 21:28 */waypoints[45].origin = (-1003.29, -780.596, 1586.88);
|
||||
/* 21:28 */waypoints[45].type = "stand";
|
||||
/* 21:28 */waypoints[45].children[0] = 44;
|
||||
/* 21:28 */waypoints[45].children[1] = 46;
|
||||
/* 21:28 */waypoints[45].children[2] = 112;
|
||||
/* 21:28 */waypoints[46] = spawnstruct();
|
||||
/* 21:28 */waypoints[46].origin = (-954.677, -1074.13, 1638.92);
|
||||
/* 21:28 */waypoints[46].type = "stand";
|
||||
/* 21:28 */waypoints[46].children[0] = 45;
|
||||
/* 21:28 */waypoints[46].children[1] = 37;
|
||||
/* 21:28 */waypoints[46].children[2] = 107;
|
||||
/* 21:28 */waypoints[46].children[3] = 109;
|
||||
/* 21:28 */waypoints[47] = spawnstruct();
|
||||
/* 21:28 */waypoints[47].origin = (-899.572, -59.1686, 1516.52);
|
||||
/* 21:28 */waypoints[47].type = "stand";
|
||||
/* 21:28 */waypoints[47].children[0] = 44;
|
||||
/* 21:28 */waypoints[47].children[1] = 48;
|
||||
/* 21:28 */waypoints[48] = spawnstruct();
|
||||
/* 21:28 */waypoints[48].origin = (-815.13, 74.4702, 1513.83);
|
||||
/* 21:28 */waypoints[48].type = "stand";
|
||||
/* 21:28 */waypoints[48].children[0] = 47;
|
||||
/* 21:28 */waypoints[48].children[1] = 49;
|
||||
/* 21:28 */waypoints[48].children[2] = 55;
|
||||
/* 21:28 */waypoints[49] = spawnstruct();
|
||||
/* 21:28 */waypoints[49].origin = (-780.329, -27.66, 1519.26);
|
||||
/* 21:28 */waypoints[49].type = "claymore";
|
||||
/* 21:28 */waypoints[49].children[0] = 48;
|
||||
/* 21:28 */waypoints[49].children[1] = 50;
|
||||
/* 21:28 */waypoints[49].angles = (23.1701, -89.3684, 0);
|
||||
/* 21:28 */waypoints[50] = spawnstruct();
|
||||
/* 21:28 */waypoints[50].origin = (-773.866, -296.802, 1550.87);
|
||||
/* 21:28 */waypoints[50].type = "stand";
|
||||
/* 21:28 */waypoints[50].children[0] = 49;
|
||||
/* 21:28 */waypoints[50].children[1] = 51;
|
||||
/* 21:28 */waypoints[50].children[2] = 52;
|
||||
/* 21:28 */waypoints[51] = spawnstruct();
|
||||
/* 21:28 */waypoints[51].origin = (-818.798, -329.561, 1575.18);
|
||||
/* 21:28 */waypoints[51].type = "climb";
|
||||
/* 21:28 */waypoints[51].children[0] = 50;
|
||||
/* 21:28 */waypoints[51].children[1] = 44;
|
||||
/* 21:28 */waypoints[51].angles = (28.2568, -153.21, 0);
|
||||
/* 21:28 */waypoints[52] = spawnstruct();
|
||||
/* 21:28 */waypoints[52].origin = (-736.241, -484.446, 1549.97);
|
||||
/* 21:28 */waypoints[52].type = "stand";
|
||||
/* 21:28 */waypoints[52].children[0] = 50;
|
||||
/* 21:28 */waypoints[52].children[1] = 53;
|
||||
/* 21:28 */waypoints[53] = spawnstruct();
|
||||
/* 21:28 */waypoints[53].origin = (-616.34, -558.103, 1562.35);
|
||||
/* 21:28 */waypoints[53].type = "stand";
|
||||
/* 21:28 */waypoints[53].children[0] = 52;
|
||||
/* 21:28 */waypoints[53].children[1] = 54;
|
||||
/* 21:28 */waypoints[53].children[2] = 121;
|
||||
/* 21:28 */waypoints[54] = spawnstruct();
|
||||
/* 21:28 */waypoints[54].origin = (-316.123, -543.016, 1579.86);
|
||||
/* 21:28 */waypoints[54].type = "stand";
|
||||
/* 21:28 */waypoints[54].children[0] = 53;
|
||||
/* 21:28 */waypoints[54].children[1] = 41;
|
||||
/* 21:28 */waypoints[54].children[2] = 31;
|
||||
/* 21:28 */waypoints[55] = spawnstruct();
|
||||
/* 21:28 */waypoints[55].origin = (-780.144, 316.765, 1513.43);
|
||||
/* 21:28 */waypoints[55].type = "stand";
|
||||
/* 21:28 */waypoints[55].children[0] = 48;
|
||||
/* 21:28 */waypoints[55].children[1] = 56;
|
||||
/* 21:28 */waypoints[56] = spawnstruct();
|
||||
/* 21:28 */waypoints[56].origin = (-705.31, 342.408, 1510.88);
|
||||
/* 21:28 */waypoints[56].type = "stand";
|
||||
/* 21:28 */waypoints[56].children[0] = 55;
|
||||
/* 21:28 */waypoints[56].children[1] = 57;
|
||||
/* 21:28 */waypoints[57] = spawnstruct();
|
||||
/* 21:28 */waypoints[57].origin = (-711.347, 533.404, 1506.94);
|
||||
/* 21:28 */waypoints[57].type = "stand";
|
||||
/* 21:28 */waypoints[57].children[0] = 56;
|
||||
/* 21:28 */waypoints[57].children[1] = 58;
|
||||
/* 21:28 */waypoints[57].children[2] = 59;
|
||||
/* 21:28 */waypoints[57].children[3] = 69;
|
||||
/* 21:28 */waypoints[57].children[4] = 102;
|
||||
/* 21:28 */waypoints[58] = spawnstruct();
|
||||
/* 21:28 */waypoints[58].origin = (-825.775, 498.273, 1507.83);
|
||||
/* 21:28 */waypoints[58].type = "tube";
|
||||
/* 21:28 */waypoints[58].children[0] = 57;
|
||||
/* 21:28 */waypoints[58].angles = (-6.61381, 18.8195, 0);
|
||||
/* 21:28 */waypoints[59] = spawnstruct();
|
||||
/* 21:28 */waypoints[59].origin = (-794.749, 686.022, 1500.35);
|
||||
/* 21:28 */waypoints[59].type = "stand";
|
||||
/* 21:28 */waypoints[59].children[0] = 57;
|
||||
/* 21:28 */waypoints[59].children[1] = 60;
|
||||
/* 21:28 */waypoints[60] = spawnstruct();
|
||||
/* 21:28 */waypoints[60].origin = (-769.515, 904.623, 1500.13);
|
||||
/* 21:28 */waypoints[60].type = "claymore";
|
||||
/* 21:28 */waypoints[60].children[0] = 59;
|
||||
/* 21:28 */waypoints[60].children[1] = 61;
|
||||
/* 21:28 */waypoints[60].children[2] = 62;
|
||||
/* 21:28 */waypoints[60].angles = (19.4567, 84.2925, 0);
|
||||
/* 21:28 */waypoints[61] = spawnstruct();
|
||||
/* 21:28 */waypoints[61].origin = (-717.039, 1162.02, 1500.13);
|
||||
/* 21:28 */waypoints[61].type = "stand";
|
||||
/* 21:28 */waypoints[61].children[0] = 60;
|
||||
/* 21:28 */waypoints[61].children[1] = 72;
|
||||
/* 21:28 */waypoints[62] = spawnstruct();
|
||||
/* 21:28 */waypoints[62].origin = (-727.443, 795.736, 1500.13);
|
||||
/* 21:28 */waypoints[62].type = "stand";
|
||||
/* 21:28 */waypoints[62].children[0] = 60;
|
||||
/* 21:28 */waypoints[62].children[1] = 63;
|
||||
/* 21:28 */waypoints[63] = spawnstruct();
|
||||
/* 21:28 */waypoints[63].origin = (-541.775, 789.281, 1502.92);
|
||||
/* 21:28 */waypoints[63].type = "stand";
|
||||
/* 21:28 */waypoints[63].children[0] = 62;
|
||||
/* 21:28 */waypoints[63].children[1] = 75;
|
||||
/* 21:28 */waypoints[63].children[2] = 102;
|
||||
/* 21:28 */waypoints[63].children[3] = 115;
|
||||
/* 21:28 */waypoints[64] = spawnstruct();
|
||||
/* 21:28 */waypoints[64].origin = (-557.083, 129.701, 1576.29);
|
||||
/* 21:28 */waypoints[64].type = "stand";
|
||||
/* 21:28 */waypoints[64].children[0] = 65;
|
||||
/* 21:28 */waypoints[64].children[1] = 103;
|
||||
/* 21:28 */waypoints[65] = spawnstruct();
|
||||
/* 21:28 */waypoints[65].origin = (-583.579, -71.3439, 1583.11);
|
||||
/* 21:28 */waypoints[65].type = "stand";
|
||||
/* 21:28 */waypoints[65].children[0] = 33;
|
||||
/* 21:28 */waypoints[65].children[1] = 66;
|
||||
/* 21:28 */waypoints[65].children[2] = 64;
|
||||
/* 21:28 */waypoints[66] = spawnstruct();
|
||||
/* 21:28 */waypoints[66].origin = (-484.101, -273.864, 1597.98);
|
||||
/* 21:28 */waypoints[66].type = "stand";
|
||||
/* 21:28 */waypoints[66].children[0] = 65;
|
||||
/* 21:28 */waypoints[66].children[1] = 67;
|
||||
/* 21:28 */waypoints[67] = spawnstruct();
|
||||
/* 21:28 */waypoints[67].origin = (-499.615, -465.275, 1625.37);
|
||||
/* 21:28 */waypoints[67].type = "climb";
|
||||
/* 21:28 */waypoints[67].children[0] = 68;
|
||||
/* 21:28 */waypoints[67].children[1] = 66;
|
||||
/* 21:28 */waypoints[67].angles = (-9.47026, -85.8308, 0);
|
||||
/* 21:28 */waypoints[68] = spawnstruct();
|
||||
/* 21:28 */waypoints[68].origin = (-499.615, -482.118, 1667.22);
|
||||
/* 21:28 */waypoints[68].type = "climb";
|
||||
/* 21:28 */waypoints[68].children[0] = 67;
|
||||
/* 21:28 */waypoints[68].angles = (-1.9611, -84.864, 0);
|
||||
/* 21:28 */waypoints[69] = spawnstruct();
|
||||
/* 21:28 */waypoints[69].origin = (-444.307, 661.426, 1544.65);
|
||||
/* 21:28 */waypoints[69].type = "stand";
|
||||
/* 21:28 */waypoints[69].children[0] = 57;
|
||||
/* 21:28 */waypoints[69].children[1] = 22;
|
||||
/* 21:28 */waypoints[69].children[2] = 70;
|
||||
/* 21:28 */waypoints[69].children[3] = 102;
|
||||
/* 21:28 */waypoints[69].children[4] = 118;
|
||||
/* 21:28 */waypoints[70] = spawnstruct();
|
||||
/* 21:28 */waypoints[70].origin = (-167.345, 380.638, 1630.04);
|
||||
/* 21:28 */waypoints[70].type = "stand";
|
||||
/* 21:28 */waypoints[70].children[0] = 69;
|
||||
/* 21:28 */waypoints[70].children[1] = 25;
|
||||
/* 21:28 */waypoints[70].children[2] = 22;
|
||||
/* 21:28 */waypoints[70].children[3] = 33;
|
||||
/* 21:28 */waypoints[70].children[4] = 104;
|
||||
/* 21:28 */waypoints[70].children[5] = 118;
|
||||
/* 21:28 */waypoints[71] = spawnstruct();
|
||||
/* 21:28 */waypoints[71].origin = (38.6083, 191.077, 1673.58);
|
||||
/* 21:28 */waypoints[71].type = "crouch";
|
||||
/* 21:28 */waypoints[71].children[0] = 25;
|
||||
/* 21:28 */waypoints[71].angles = (8.93184, 92.4773, 0);
|
||||
/* 21:28 */waypoints[72] = spawnstruct();
|
||||
/* 21:28 */waypoints[72].origin = (-524.709, 1186.15, 1500.13);
|
||||
/* 21:28 */waypoints[72].type = "stand";
|
||||
/* 21:28 */waypoints[72].children[0] = 61;
|
||||
/* 21:28 */waypoints[72].children[1] = 73;
|
||||
/* 21:28 */waypoints[73] = spawnstruct();
|
||||
/* 21:28 */waypoints[73].origin = (-380.21, 1276.73, 1501.13);
|
||||
/* 21:28 */waypoints[73].type = "stand";
|
||||
/* 21:28 */waypoints[73].children[0] = 72;
|
||||
/* 21:28 */waypoints[73].children[1] = 74;
|
||||
/* 21:28 */waypoints[74] = spawnstruct();
|
||||
/* 21:28 */waypoints[74].origin = (-204.127, 1244.17, 1499.97);
|
||||
/* 21:28 */waypoints[74].type = "stand";
|
||||
/* 21:28 */waypoints[74].children[0] = 73;
|
||||
/* 21:28 */waypoints[74].children[1] = 75;
|
||||
/* 21:28 */waypoints[74].children[2] = 101;
|
||||
/* 21:28 */waypoints[75] = spawnstruct();
|
||||
/* 21:28 */waypoints[75].origin = (-233.653, 872.014, 1499.78);
|
||||
/* 21:28 */waypoints[75].type = "grenade";
|
||||
/* 21:28 */waypoints[75].children[0] = 74;
|
||||
/* 21:28 */waypoints[75].children[1] = 76;
|
||||
/* 21:28 */waypoints[75].children[2] = 100;
|
||||
/* 21:28 */waypoints[75].children[3] = 63;
|
||||
/* 21:28 */waypoints[75].children[4] = 115;
|
||||
/* 21:28 */waypoints[75].angles = (-8.55839, 20.2093, 0);
|
||||
/* 21:28 */waypoints[76] = spawnstruct();
|
||||
/* 21:28 */waypoints[76].origin = (-339.604, 948.565, 1499.79);
|
||||
/* 21:28 */waypoints[76].type = "stand";
|
||||
/* 21:28 */waypoints[76].children[0] = 75;
|
||||
/* 21:28 */waypoints[76].children[1] = 77;
|
||||
/* 21:28 */waypoints[77] = spawnstruct();
|
||||
/* 21:28 */waypoints[77].origin = (-653.404, 954.094, 1677.81);
|
||||
/* 21:28 */waypoints[77].type = "stand";
|
||||
/* 21:28 */waypoints[77].children[0] = 76;
|
||||
/* 21:28 */waypoints[77].children[1] = 83;
|
||||
/* 21:28 */waypoints[77].children[2] = 78;
|
||||
/* 21:28 */waypoints[77].children[3] = 85;
|
||||
/* 21:28 */waypoints[78] = spawnstruct();
|
||||
/* 21:28 */waypoints[78].origin = (-735.062, 755.125, 1682.78);
|
||||
/* 21:28 */waypoints[78].type = "climb";
|
||||
/* 21:28 */waypoints[78].children[0] = 77;
|
||||
/* 21:28 */waypoints[78].children[1] = 79;
|
||||
/* 21:28 */waypoints[78].children[2] = 86;
|
||||
/* 21:28 */waypoints[78].angles = (-9.95915, -86.0999, 0);
|
||||
/* 21:28 */waypoints[79] = spawnstruct();
|
||||
/* 21:28 */waypoints[79].origin = (-735.062, 738.172, 1730.13);
|
||||
/* 21:28 */waypoints[79].type = "climb";
|
||||
/* 21:28 */waypoints[79].children[0] = 78;
|
||||
/* 21:28 */waypoints[79].children[1] = 80;
|
||||
/* 21:28 */waypoints[79].angles = (-0.164838, -83.216, 0);
|
||||
/* 21:28 */waypoints[80] = spawnstruct();
|
||||
/* 21:28 */waypoints[80].origin = (-820.676, 721.946, 1727.13);
|
||||
/* 21:28 */waypoints[80].type = "javelin";
|
||||
/* 21:28 */waypoints[80].children[0] = 79;
|
||||
/* 21:28 */waypoints[80].jav_point = (552.842, 980.233, 1645.93);
|
||||
/* 21:28 */waypoints[81] = spawnstruct();
|
||||
/* 21:28 */waypoints[81].origin = (-371.125, 1224.92, 1676.13);
|
||||
/* 21:28 */waypoints[81].type = "climb";
|
||||
/* 21:28 */waypoints[81].children[0] = 84;
|
||||
/* 21:28 */waypoints[81].children[1] = 82;
|
||||
/* 21:28 */waypoints[81].angles = (-8.03654, 0.543739, 0);
|
||||
/* 21:28 */waypoints[82] = spawnstruct();
|
||||
/* 21:28 */waypoints[82].origin = (-354.833, 1224.92, 1730.12);
|
||||
/* 21:28 */waypoints[82].type = "climb";
|
||||
/* 21:28 */waypoints[82].children[0] = 81;
|
||||
/* 21:28 */waypoints[82].angles = (11.4038, -0.230797, 0);
|
||||
/* 21:28 */waypoints[83] = spawnstruct();
|
||||
/* 21:28 */waypoints[83].origin = (-670.662, 1002.55, 1677.93);
|
||||
/* 21:28 */waypoints[83].type = "stand";
|
||||
/* 21:28 */waypoints[83].children[0] = 84;
|
||||
/* 21:28 */waypoints[83].children[1] = 77;
|
||||
/* 21:28 */waypoints[83].children[2] = 86;
|
||||
/* 21:28 */waypoints[84] = spawnstruct();
|
||||
/* 21:28 */waypoints[84].origin = (-608.584, 1233.96, 1678.63);
|
||||
/* 21:28 */waypoints[84].type = "stand";
|
||||
/* 21:28 */waypoints[84].children[0] = 83;
|
||||
/* 21:28 */waypoints[84].children[1] = 81;
|
||||
/* 21:28 */waypoints[84].children[2] = 87;
|
||||
/* 21:28 */waypoints[85] = spawnstruct();
|
||||
/* 21:28 */waypoints[85].origin = (-779.275, 879.155, 1681.01);
|
||||
/* 21:28 */waypoints[85].type = "crouch";
|
||||
/* 21:28 */waypoints[85].children[0] = 77;
|
||||
/* 21:28 */waypoints[85].angles = (10.6347, 31.2763, 0);
|
||||
/* 21:28 */waypoints[86] = spawnstruct();
|
||||
/* 21:28 */waypoints[86].origin = (-908.868, 850.536, 1676.51);
|
||||
/* 21:28 */waypoints[86].type = "stand";
|
||||
/* 21:28 */waypoints[86].children[0] = 83;
|
||||
/* 21:28 */waypoints[86].children[1] = 78;
|
||||
/* 21:28 */waypoints[87] = spawnstruct();
|
||||
/* 21:28 */waypoints[87].origin = (-463.31, 1075.13, 1676.13);
|
||||
/* 21:28 */waypoints[87].type = "climb";
|
||||
/* 21:28 */waypoints[87].children[0] = 84;
|
||||
/* 21:28 */waypoints[87].children[1] = 88;
|
||||
/* 21:28 */waypoints[87].angles = (-11.1237, -85.7281, 0);
|
||||
/* 21:28 */waypoints[88] = spawnstruct();
|
||||
/* 21:28 */waypoints[88].origin = (-463.31, 1058.84, 1730.13);
|
||||
/* 21:28 */waypoints[88].type = "climb";
|
||||
/* 21:28 */waypoints[88].children[0] = 87;
|
||||
/* 21:28 */waypoints[88].children[1] = 89;
|
||||
/* 21:28 */waypoints[88].angles = (2.51582, -91.3367, 0);
|
||||
/* 21:28 */waypoints[89] = spawnstruct();
|
||||
/* 21:28 */waypoints[89].origin = (-397.056, 1030.95, 1730.13);
|
||||
/* 21:28 */waypoints[89].type = "grenade";
|
||||
/* 21:28 */waypoints[89].children[0] = 88;
|
||||
/* 21:28 */waypoints[89].angles = (1.96651, -177.62, 0);
|
||||
/* 21:28 */waypoints[90] = spawnstruct();
|
||||
/* 21:28 */waypoints[90].origin = (506.466, 417.863, 1728.33);
|
||||
/* 21:28 */waypoints[90].type = "stand";
|
||||
/* 21:28 */waypoints[90].children[0] = 15;
|
||||
/* 21:28 */waypoints[90].children[1] = 91;
|
||||
/* 21:28 */waypoints[91] = spawnstruct();
|
||||
/* 21:28 */waypoints[91].origin = (522.53, 544.775, 1714.05);
|
||||
/* 21:28 */waypoints[91].type = "stand";
|
||||
/* 21:28 */waypoints[91].children[0] = 90;
|
||||
/* 21:28 */waypoints[91].children[1] = 92;
|
||||
/* 21:28 */waypoints[91].children[2] = 95;
|
||||
/* 21:28 */waypoints[92] = spawnstruct();
|
||||
/* 21:28 */waypoints[92].origin = (393.142, 511.969, 1707.6);
|
||||
/* 21:28 */waypoints[92].type = "stand";
|
||||
/* 21:28 */waypoints[92].children[0] = 91;
|
||||
/* 21:28 */waypoints[92].children[1] = 15;
|
||||
/* 21:28 */waypoints[93] = spawnstruct();
|
||||
/* 21:28 */waypoints[93].origin = (567.839, 624.875, 1821.75);
|
||||
/* 21:28 */waypoints[93].type = "climb";
|
||||
/* 21:28 */waypoints[93].children[0] = 17;
|
||||
/* 21:28 */waypoints[93].children[1] = 94;
|
||||
/* 21:28 */waypoints[93].angles = (-2.16435, 91.908, 0);
|
||||
/* 21:28 */waypoints[94] = spawnstruct();
|
||||
/* 21:28 */waypoints[94].origin = (567.839, 642.054, 1854.13);
|
||||
/* 21:28 */waypoints[94].type = "climb";
|
||||
/* 21:28 */waypoints[94].children[0] = 93;
|
||||
/* 21:28 */waypoints[94].angles = (10.2667, 88.0573, 0);
|
||||
/* 21:28 */waypoints[95] = spawnstruct();
|
||||
/* 21:28 */waypoints[95].origin = (550.168, 680.045, 1706.03);
|
||||
/* 21:28 */waypoints[95].type = "claymore";
|
||||
/* 21:28 */waypoints[95].children[0] = 91;
|
||||
/* 21:28 */waypoints[95].children[1] = 96;
|
||||
/* 21:28 */waypoints[95].angles = (11.8048, -93.6291, 0);
|
||||
/* 21:28 */waypoints[96] = spawnstruct();
|
||||
/* 21:28 */waypoints[96].origin = (482.643, 856.949, 1662.32);
|
||||
/* 21:28 */waypoints[96].type = "grenade";
|
||||
/* 21:28 */waypoints[96].children[0] = 95;
|
||||
/* 21:28 */waypoints[96].children[1] = 97;
|
||||
/* 21:28 */waypoints[96].children[2] = 98;
|
||||
/* 21:28 */waypoints[96].children[3] = 114;
|
||||
/* 21:28 */waypoints[96].children[4] = 116;
|
||||
/* 21:28 */waypoints[96].angles = (-3.26298, -84.4665, 0);
|
||||
/* 21:28 */waypoints[97] = spawnstruct();
|
||||
/* 21:28 */waypoints[97].origin = (174.424, 879.088, 1624.36);
|
||||
/* 21:28 */waypoints[97].type = "stand";
|
||||
/* 21:28 */waypoints[97].children[0] = 96;
|
||||
/* 21:28 */waypoints[97].children[1] = 99;
|
||||
/* 21:28 */waypoints[97].children[2] = 100;
|
||||
/* 21:28 */waypoints[97].children[3] = 116;
|
||||
/* 21:28 */waypoints[98] = spawnstruct();
|
||||
/* 21:28 */waypoints[98].origin = (492.933, 1073.11, 1613.67);
|
||||
/* 21:28 */waypoints[98].type = "stand";
|
||||
/* 21:28 */waypoints[98].children[0] = 96;
|
||||
/* 21:28 */waypoints[98].children[1] = 3;
|
||||
/* 21:28 */waypoints[98].children[2] = 114;
|
||||
/* 21:28 */waypoints[99] = spawnstruct();
|
||||
/* 21:28 */waypoints[99].origin = (180.131, 955.094, 1618.86);
|
||||
/* 21:28 */waypoints[99].type = "crouch";
|
||||
/* 21:28 */waypoints[99].children[0] = 97;
|
||||
/* 21:28 */waypoints[99].angles = (16.6497, -99.5562, 0);
|
||||
/* 21:28 */waypoints[100] = spawnstruct();
|
||||
/* 21:28 */waypoints[100].origin = (-4.37523, 846.459, 1564.76);
|
||||
/* 21:28 */waypoints[100].type = "stand";
|
||||
/* 21:28 */waypoints[100].children[0] = 97;
|
||||
/* 21:28 */waypoints[100].children[1] = 75;
|
||||
/* 21:28 */waypoints[100].children[2] = 101;
|
||||
/* 21:28 */waypoints[100].children[3] = 115;
|
||||
/* 21:28 */waypoints[101] = spawnstruct();
|
||||
/* 21:28 */waypoints[101].origin = (-20.3735, 1280.57, 1585.8);
|
||||
/* 21:28 */waypoints[101].type = "stand";
|
||||
/* 21:28 */waypoints[101].children[0] = 74;
|
||||
/* 21:28 */waypoints[101].children[1] = 100;
|
||||
/* 21:28 */waypoints[102] = spawnstruct();
|
||||
/* 21:28 */waypoints[102].origin = (-558.524, 652.626, 1523.91);
|
||||
/* 21:28 */waypoints[102].type = "stand";
|
||||
/* 21:28 */waypoints[102].children[0] = 63;
|
||||
/* 21:28 */waypoints[102].children[1] = 69;
|
||||
/* 21:28 */waypoints[102].children[2] = 103;
|
||||
/* 21:28 */waypoints[102].children[3] = 57;
|
||||
/* 21:28 */waypoints[103] = spawnstruct();
|
||||
/* 21:28 */waypoints[103].origin = (-555.573, 327.061, 1555.55);
|
||||
/* 21:28 */waypoints[103].type = "claymore";
|
||||
/* 21:28 */waypoints[103].children[0] = 64;
|
||||
/* 21:28 */waypoints[103].children[1] = 102;
|
||||
/* 21:28 */waypoints[103].angles = (8.38926, -87.312, 0);
|
||||
/* 21:28 */waypoints[104] = spawnstruct();
|
||||
/* 21:28 */waypoints[104].origin = (-66.844, 148.569, 1656.66);
|
||||
/* 21:28 */waypoints[104].type = "tube";
|
||||
/* 21:28 */waypoints[104].children[0] = 33;
|
||||
/* 21:28 */waypoints[104].children[1] = 70;
|
||||
/* 21:28 */waypoints[104].children[2] = 25;
|
||||
/* 21:28 */waypoints[104].angles = (16.5302, -134.811, 0);
|
||||
/* 21:28 */waypoints[105] = spawnstruct();
|
||||
/* 21:28 */waypoints[105].origin = (97.1165, -1373.04, 1858.65);
|
||||
/* 21:28 */waypoints[105].type = "stand";
|
||||
/* 21:28 */waypoints[105].children[0] = 34;
|
||||
/* 21:28 */waypoints[105].children[1] = 35;
|
||||
/* 21:28 */waypoints[106] = spawnstruct();
|
||||
/* 21:28 */waypoints[106].origin = (-257.072, -1072.54, 1708.85);
|
||||
/* 21:28 */waypoints[106].type = "stand";
|
||||
/* 21:28 */waypoints[106].children[0] = 35;
|
||||
/* 21:28 */waypoints[106].children[1] = 107;
|
||||
/* 21:28 */waypoints[106].children[2] = 108;
|
||||
/* 21:28 */waypoints[106].children[3] = 109;
|
||||
/* 21:28 */waypoints[107] = spawnstruct();
|
||||
/* 21:28 */waypoints[107].origin = (-618.75, -1091.79, 1675.27);
|
||||
/* 21:28 */waypoints[107].type = "stand";
|
||||
/* 21:28 */waypoints[107].children[0] = 36;
|
||||
/* 21:28 */waypoints[107].children[1] = 46;
|
||||
/* 21:28 */waypoints[107].children[2] = 106;
|
||||
/* 21:28 */waypoints[107].children[3] = 109;
|
||||
/* 21:28 */waypoints[108] = spawnstruct();
|
||||
/* 21:28 */waypoints[108].origin = (-92.3217, -1176.25, 1739.45);
|
||||
/* 21:28 */waypoints[108].type = "tube";
|
||||
/* 21:28 */waypoints[108].children[0] = 106;
|
||||
/* 21:28 */waypoints[108].children[1] = 34;
|
||||
/* 21:28 */waypoints[108].children[2] = 35;
|
||||
/* 21:28 */waypoints[108].angles = (12.9309, 134.893, 0);
|
||||
/* 21:28 */waypoints[109] = spawnstruct();
|
||||
/* 21:28 */waypoints[109].origin = (-520.857, -987.208, 1679.89);
|
||||
/* 21:28 */waypoints[109].type = "javelin";
|
||||
/* 21:28 */waypoints[109].children[0] = 106;
|
||||
/* 21:28 */waypoints[109].children[1] = 107;
|
||||
/* 21:28 */waypoints[109].children[2] = 46;
|
||||
/* 21:28 */waypoints[109].jav_point = (-742.804, 685.227, 1703.49);
|
||||
/* 21:28 */waypoints[110] = spawnstruct();
|
||||
/* 21:28 */waypoints[110].origin = (-813.081, -605.778, 1510.38);
|
||||
/* 21:28 */waypoints[110].type = "grenade";
|
||||
/* 21:28 */waypoints[110].children[0] = 44;
|
||||
/* 21:28 */waypoints[110].children[1] = 42;
|
||||
/* 21:28 */waypoints[110].children[2] = 112;
|
||||
/* 21:28 */waypoints[110].angles = (-5.28442, -17.7155, 0);
|
||||
/* 21:28 */waypoints[111] = spawnstruct();
|
||||
/* 21:28 */waypoints[111].origin = (139.58, -1045.94, 1788.12);
|
||||
/* 21:28 */waypoints[111].type = "stand";
|
||||
/* 21:28 */waypoints[111].children[0] = 35;
|
||||
/* 21:28 */waypoints[111].children[1] = 39;
|
||||
/* 21:28 */waypoints[112] = spawnstruct();
|
||||
/* 21:28 */waypoints[112].origin = (-865.624, -677.168, 1509.9);
|
||||
/* 21:28 */waypoints[112].type = "stand";
|
||||
/* 21:28 */waypoints[112].children[0] = 44;
|
||||
/* 21:28 */waypoints[112].children[1] = 42;
|
||||
/* 21:28 */waypoints[112].children[2] = 43;
|
||||
/* 21:28 */waypoints[112].children[3] = 110;
|
||||
/* 21:28 */waypoints[112].children[4] = 45;
|
||||
/* 21:28 */waypoints[113] = spawnstruct();
|
||||
/* 21:28 */waypoints[113].origin = (858.267, 1039.37, 1640.89);
|
||||
/* 21:28 */waypoints[113].type = "tube";
|
||||
/* 21:28 */waypoints[113].children[0] = 2;
|
||||
/* 21:28 */waypoints[113].children[1] = 3;
|
||||
/* 21:28 */waypoints[113].children[2] = 0;
|
||||
/* 21:28 */waypoints[113].children[3] = 1;
|
||||
/* 21:28 */waypoints[113].angles = (-0.769043, -71.4771, 0);
|
||||
/* 21:28 */waypoints[114] = spawnstruct();
|
||||
/* 21:28 */waypoints[114].origin = (539.336, 870.157, 1664.74);
|
||||
/* 21:28 */waypoints[114].type = "javelin";
|
||||
/* 21:28 */waypoints[114].children[0] = 96;
|
||||
/* 21:28 */waypoints[114].children[1] = 98;
|
||||
/* 21:28 */waypoints[114].jav_point = (-905.952, 518.715, 1514.15);
|
||||
/* 21:28 */waypoints[115] = spawnstruct();
|
||||
/* 21:28 */waypoints[115].origin = (-92.668, 810.415, 1537.18);
|
||||
/* 21:28 */waypoints[115].type = "stand";
|
||||
/* 21:28 */waypoints[115].children[0] = 63;
|
||||
/* 21:28 */waypoints[115].children[1] = 100;
|
||||
/* 21:28 */waypoints[115].children[2] = 116;
|
||||
/* 21:28 */waypoints[115].children[3] = 75;
|
||||
/* 21:28 */waypoints[116] = spawnstruct();
|
||||
/* 21:28 */waypoints[116].origin = (168.156, 806.962, 1624.79);
|
||||
/* 21:28 */waypoints[116].type = "stand";
|
||||
/* 21:28 */waypoints[116].children[0] = 115;
|
||||
/* 21:28 */waypoints[116].children[1] = 96;
|
||||
/* 21:28 */waypoints[116].children[2] = 97;
|
||||
/* 21:28 */waypoints[117] = spawnstruct();
|
||||
/* 21:28 */waypoints[117].origin = (661.343, -849.706, 1902.63);
|
||||
/* 21:28 */waypoints[117].type = "prone";
|
||||
/* 21:28 */waypoints[117].children[0] = 28;
|
||||
/* 21:28 */waypoints[117].children[1] = 29;
|
||||
/* 21:28 */waypoints[118] = spawnstruct();
|
||||
/* 21:28 */waypoints[118].origin = (-370.124, 320.395, 1596.16);
|
||||
/* 21:28 */waypoints[118].type = "stand";
|
||||
/* 21:28 */waypoints[118].children[0] = 70;
|
||||
/* 21:28 */waypoints[118].children[1] = 69;
|
||||
/* 21:28 */waypoints[119] = spawnstruct();
|
||||
/* 21:28 */waypoints[119].origin = (-566.673, -608.925, 1589.33);
|
||||
/* 21:28 */waypoints[119].type = "climb";
|
||||
/* 21:28 */waypoints[119].children[0] = 120;
|
||||
/* 21:28 */waypoints[119].children[1] = 121;
|
||||
/* 21:28 */waypoints[119].angles = (3.82324, -49.6857, 0);
|
||||
/* 21:28 */waypoints[120] = spawnstruct();
|
||||
/* 21:28 */waypoints[120].origin = (-556.794, -642.377, 1538);
|
||||
/* 21:28 */waypoints[120].type = "climb";
|
||||
/* 21:28 */waypoints[120].children[0] = 42;
|
||||
/* 21:28 */waypoints[120].children[1] = 119;
|
||||
/* 21:28 */waypoints[120].angles = (-32.2229, 106.227, 0);
|
||||
/* 21:28 */waypoints[121] = spawnstruct();
|
||||
/* 21:28 */waypoints[121].origin = (-570.37, -591.199, 1567.69);
|
||||
/* 21:28 */waypoints[121].type = "climb";
|
||||
/* 21:28 */waypoints[121].children[0] = 119;
|
||||
/* 21:28 */waypoints[121].children[1] = 53;
|
||||
/* 21:28 */waypoints[121].angles = (-23.4229, -79.129, 0);
|
||||
/* 21:28 */return waypoints;
|
||||
}
|
||||
@@ -1,969 +0,0 @@
|
||||
Mission()
|
||||
{
|
||||
/* 0:49 */waypoints = [];
|
||||
/* 0:49 */waypoints[0] = spawnstruct();
|
||||
/* 0:49 */waypoints[0].origin = (-792.763, 1294.27, 1211);
|
||||
/* 0:49 */waypoints[0].type = "stand";
|
||||
/* 0:49 */waypoints[0].children[0] = 1;
|
||||
/* 0:49 */waypoints[0].children[1] = 52;
|
||||
/* 0:49 */waypoints[1] = spawnstruct();
|
||||
/* 0:49 */waypoints[1].origin = (-816.529, 1053.25, 1212.13);
|
||||
/* 0:49 */waypoints[1].type = "stand";
|
||||
/* 0:49 */waypoints[1].children[0] = 0;
|
||||
/* 0:49 */waypoints[1].children[1] = 2;
|
||||
/* 0:49 */waypoints[1].children[2] = 56;
|
||||
/* 0:49 */waypoints[1].children[3] = 93;
|
||||
/* 0:49 */waypoints[1].children[4] = 139;
|
||||
/* 0:49 */waypoints[2] = spawnstruct();
|
||||
/* 0:49 */waypoints[2].origin = (-816.558, 784.932, 1212.13);
|
||||
/* 0:49 */waypoints[2].type = "stand";
|
||||
/* 0:49 */waypoints[2].children[0] = 1;
|
||||
/* 0:49 */waypoints[2].children[1] = 3;
|
||||
/* 0:49 */waypoints[2].children[2] = 130;
|
||||
/* 0:49 */waypoints[3] = spawnstruct();
|
||||
/* 0:49 */waypoints[3].origin = (-811.61, 416.127, 1213.69);
|
||||
/* 0:49 */waypoints[3].type = "stand";
|
||||
/* 0:49 */waypoints[3].children[0] = 2;
|
||||
/* 0:49 */waypoints[3].children[1] = 4;
|
||||
/* 0:49 */waypoints[3].children[2] = 27;
|
||||
/* 0:49 */waypoints[3].children[3] = 70;
|
||||
/* 0:49 */waypoints[3].children[4] = 92;
|
||||
/* 0:49 */waypoints[3].children[5] = 93;
|
||||
/* 0:49 */waypoints[3].children[6] = 131;
|
||||
/* 0:49 */waypoints[4] = spawnstruct();
|
||||
/* 0:49 */waypoints[4].origin = (-544.78, 386.252, 1212.13);
|
||||
/* 0:49 */waypoints[4].type = "stand";
|
||||
/* 0:49 */waypoints[4].children[0] = 3;
|
||||
/* 0:49 */waypoints[4].children[1] = 5;
|
||||
/* 0:49 */waypoints[4].children[2] = 27;
|
||||
/* 0:49 */waypoints[5] = spawnstruct();
|
||||
/* 0:49 */waypoints[5].origin = (-380.37, 329.792, 1210.32);
|
||||
/* 0:49 */waypoints[5].type = "stand";
|
||||
/* 0:49 */waypoints[5].children[0] = 4;
|
||||
/* 0:49 */waypoints[5].children[1] = 6;
|
||||
/* 0:49 */waypoints[6] = spawnstruct();
|
||||
/* 0:49 */waypoints[6].origin = (-286.166, 260.148, 1212.13);
|
||||
/* 0:49 */waypoints[6].type = "stand";
|
||||
/* 0:49 */waypoints[6].children[0] = 5;
|
||||
/* 0:49 */waypoints[6].children[1] = 7;
|
||||
/* 0:49 */waypoints[6].children[2] = 31;
|
||||
/* 0:49 */waypoints[6].children[3] = 167;
|
||||
/* 0:49 */waypoints[6].children[4] = 166;
|
||||
/* 0:49 */waypoints[7] = spawnstruct();
|
||||
/* 0:49 */waypoints[7].origin = (-319.613, -89.698, 1219.66);
|
||||
/* 0:49 */waypoints[7].type = "stand";
|
||||
/* 0:49 */waypoints[7].children[0] = 6;
|
||||
/* 0:49 */waypoints[7].children[1] = 8;
|
||||
/* 0:49 */waypoints[7].children[2] = 30;
|
||||
/* 0:49 */waypoints[7].children[3] = 134;
|
||||
/* 0:49 */waypoints[7].children[4] = 167;
|
||||
/* 0:49 */waypoints[7].children[5] = 166;
|
||||
/* 0:49 */waypoints[8] = spawnstruct();
|
||||
/* 0:49 */waypoints[8].origin = (-94.4127, -189.413, 1217.78);
|
||||
/* 0:49 */waypoints[8].type = "stand";
|
||||
/* 0:49 */waypoints[8].children[0] = 7;
|
||||
/* 0:49 */waypoints[8].children[1] = 9;
|
||||
/* 0:49 */waypoints[8].children[2] = 30;
|
||||
/* 0:49 */waypoints[9] = spawnstruct();
|
||||
/* 0:49 */waypoints[9].origin = (101.777, -255.943, 1203.26);
|
||||
/* 0:49 */waypoints[9].type = "stand";
|
||||
/* 0:49 */waypoints[9].children[0] = 8;
|
||||
/* 0:49 */waypoints[9].children[1] = 10;
|
||||
/* 0:49 */waypoints[9].children[2] = 30;
|
||||
/* 0:49 */waypoints[10] = spawnstruct();
|
||||
/* 0:49 */waypoints[10].origin = (218.823, -253.528, 1212.28);
|
||||
/* 0:49 */waypoints[10].type = "stand";
|
||||
/* 0:49 */waypoints[10].children[0] = 9;
|
||||
/* 0:49 */waypoints[10].children[1] = 11;
|
||||
/* 0:49 */waypoints[10].children[2] = 112;
|
||||
/* 0:49 */waypoints[11] = spawnstruct();
|
||||
/* 0:49 */waypoints[11].origin = (266.433, -0.0781363, 1212.17);
|
||||
/* 0:49 */waypoints[11].type = "stand";
|
||||
/* 0:49 */waypoints[11].children[0] = 10;
|
||||
/* 0:49 */waypoints[11].children[1] = 28;
|
||||
/* 0:49 */waypoints[11].children[2] = 29;
|
||||
/* 0:49 */waypoints[11].children[3] = 113;
|
||||
/* 0:49 */waypoints[11].children[4] = 123;
|
||||
/* 0:49 */waypoints[12] = spawnstruct();
|
||||
/* 0:49 */waypoints[12].origin = (885.1, -92.127, 1136.58);
|
||||
/* 0:49 */waypoints[12].type = "stand";
|
||||
/* 0:49 */waypoints[12].children[0] = 13;
|
||||
/* 0:49 */waypoints[12].children[1] = 19;
|
||||
/* 0:49 */waypoints[12].children[2] = 20;
|
||||
/* 0:49 */waypoints[12].children[3] = 113;
|
||||
/* 0:49 */waypoints[13] = spawnstruct();
|
||||
/* 0:49 */waypoints[13].origin = (820.157, -213.935, 1090.11);
|
||||
/* 0:49 */waypoints[13].type = "stand";
|
||||
/* 0:49 */waypoints[13].children[0] = 12;
|
||||
/* 0:49 */waypoints[13].children[1] = 14;
|
||||
/* 0:49 */waypoints[13].children[2] = 19;
|
||||
/* 0:49 */waypoints[14] = spawnstruct();
|
||||
/* 0:49 */waypoints[14].origin = (822.756, -875.509, 1021.64);
|
||||
/* 0:49 */waypoints[14].type = "stand";
|
||||
/* 0:49 */waypoints[14].children[0] = 13;
|
||||
/* 0:49 */waypoints[14].children[1] = 15;
|
||||
/* 0:49 */waypoints[14].children[2] = 84;
|
||||
/* 0:49 */waypoints[15] = spawnstruct();
|
||||
/* 0:49 */waypoints[15].origin = (1079.12, -926.79, 1070.96);
|
||||
/* 0:49 */waypoints[15].type = "stand";
|
||||
/* 0:49 */waypoints[15].children[0] = 14;
|
||||
/* 0:49 */waypoints[15].children[1] = 16;
|
||||
/* 0:49 */waypoints[15].children[2] = 87;
|
||||
/* 0:49 */waypoints[16] = spawnstruct();
|
||||
/* 0:49 */waypoints[16].origin = (1271.95, -841.969, 1089.33);
|
||||
/* 0:49 */waypoints[16].type = "stand";
|
||||
/* 0:49 */waypoints[16].children[0] = 15;
|
||||
/* 0:49 */waypoints[16].children[1] = 17;
|
||||
/* 0:49 */waypoints[16].children[2] = 145;
|
||||
/* 0:49 */waypoints[16].children[3] = 160;
|
||||
/* 0:49 */waypoints[17] = spawnstruct();
|
||||
/* 0:49 */waypoints[17].origin = (1272.07, -633.258, 1094.07);
|
||||
/* 0:49 */waypoints[17].type = "stand";
|
||||
/* 0:49 */waypoints[17].children[0] = 16;
|
||||
/* 0:49 */waypoints[17].children[1] = 18;
|
||||
/* 0:49 */waypoints[17].children[2] = 88;
|
||||
/* 0:49 */waypoints[17].children[3] = 148;
|
||||
/* 0:49 */waypoints[18] = spawnstruct();
|
||||
/* 0:49 */waypoints[18].origin = (1324.23, -187.298, 1125.66);
|
||||
/* 0:49 */waypoints[18].type = "stand";
|
||||
/* 0:49 */waypoints[18].children[0] = 17;
|
||||
/* 0:49 */waypoints[18].children[1] = 19;
|
||||
/* 0:49 */waypoints[18].children[2] = 34;
|
||||
/* 0:49 */waypoints[18].children[3] = 156;
|
||||
/* 0:49 */waypoints[19] = spawnstruct();
|
||||
/* 0:49 */waypoints[19].origin = (1028.58, -154.97, 1130.95);
|
||||
/* 0:49 */waypoints[19].type = "stand";
|
||||
/* 0:49 */waypoints[19].children[0] = 18;
|
||||
/* 0:49 */waypoints[19].children[1] = 12;
|
||||
/* 0:49 */waypoints[19].children[2] = 13;
|
||||
/* 0:49 */waypoints[20] = spawnstruct();
|
||||
/* 0:49 */waypoints[20].origin = (940.526, -6.40559, 1146.79);
|
||||
/* 0:49 */waypoints[20].type = "stand";
|
||||
/* 0:49 */waypoints[20].children[0] = 12;
|
||||
/* 0:49 */waypoints[20].children[1] = 21;
|
||||
/* 0:49 */waypoints[21] = spawnstruct();
|
||||
/* 0:49 */waypoints[21].origin = (952.75, 155.147, 1171.34);
|
||||
/* 0:49 */waypoints[21].type = "stand";
|
||||
/* 0:49 */waypoints[21].children[0] = 20;
|
||||
/* 0:49 */waypoints[21].children[1] = 22;
|
||||
/* 0:49 */waypoints[22] = spawnstruct();
|
||||
/* 0:49 */waypoints[22].origin = (955.049, 249.235, 1179.95);
|
||||
/* 0:49 */waypoints[22].type = "stand";
|
||||
/* 0:49 */waypoints[22].children[0] = 21;
|
||||
/* 0:49 */waypoints[22].children[1] = 23;
|
||||
/* 0:49 */waypoints[22].children[2] = 33;
|
||||
/* 0:49 */waypoints[22].children[3] = 150;
|
||||
/* 0:49 */waypoints[23] = spawnstruct();
|
||||
/* 0:49 */waypoints[23].origin = (922.893, 459.502, 1180.05);
|
||||
/* 0:49 */waypoints[23].type = "stand";
|
||||
/* 0:49 */waypoints[23].children[0] = 22;
|
||||
/* 0:49 */waypoints[23].children[1] = 24;
|
||||
/* 0:49 */waypoints[23].children[2] = 114;
|
||||
/* 0:49 */waypoints[24] = spawnstruct();
|
||||
/* 0:49 */waypoints[24].origin = (555.83, 388.73, 1199.87);
|
||||
/* 0:49 */waypoints[24].type = "stand";
|
||||
/* 0:49 */waypoints[24].children[0] = 23;
|
||||
/* 0:49 */waypoints[24].children[1] = 25;
|
||||
/* 0:49 */waypoints[24].children[2] = 28;
|
||||
/* 0:49 */waypoints[24].children[3] = 144;
|
||||
/* 0:49 */waypoints[25] = spawnstruct();
|
||||
/* 0:49 */waypoints[25].origin = (167.189, 411.513, 1209.8);
|
||||
/* 0:49 */waypoints[25].type = "stand";
|
||||
/* 0:49 */waypoints[25].children[0] = 24;
|
||||
/* 0:49 */waypoints[25].children[1] = 26;
|
||||
/* 0:49 */waypoints[25].children[2] = 28;
|
||||
/* 0:49 */waypoints[25].children[3] = 32;
|
||||
/* 0:49 */waypoints[26] = spawnstruct();
|
||||
/* 0:49 */waypoints[26].origin = (-135.963, 467.477, 1208.13);
|
||||
/* 0:49 */waypoints[26].type = "stand";
|
||||
/* 0:49 */waypoints[26].children[0] = 25;
|
||||
/* 0:49 */waypoints[26].children[1] = 27;
|
||||
/* 0:49 */waypoints[26].children[2] = 32;
|
||||
/* 0:49 */waypoints[26].children[3] = 31;
|
||||
/* 0:49 */waypoints[27] = spawnstruct();
|
||||
/* 0:49 */waypoints[27].origin = (-488.676, 452.444, 1212.13);
|
||||
/* 0:49 */waypoints[27].type = "stand";
|
||||
/* 0:49 */waypoints[27].children[0] = 26;
|
||||
/* 0:49 */waypoints[27].children[1] = 3;
|
||||
/* 0:49 */waypoints[27].children[2] = 4;
|
||||
/* 0:49 */waypoints[28] = spawnstruct();
|
||||
/* 0:49 */waypoints[28].origin = (287.324, 267.045, 1210.43);
|
||||
/* 0:49 */waypoints[28].type = "stand";
|
||||
/* 0:49 */waypoints[28].children[0] = 11;
|
||||
/* 0:49 */waypoints[28].children[1] = 25;
|
||||
/* 0:49 */waypoints[28].children[2] = 32;
|
||||
/* 0:49 */waypoints[28].children[3] = 24;
|
||||
/* 0:49 */waypoints[29] = spawnstruct();
|
||||
/* 0:49 */waypoints[29].origin = (147.215, -39.2893, 1230.1);
|
||||
/* 0:49 */waypoints[29].type = "stand";
|
||||
/* 0:49 */waypoints[29].children[0] = 11;
|
||||
/* 0:49 */waypoints[29].children[1] = 30;
|
||||
/* 0:49 */waypoints[30] = spawnstruct();
|
||||
/* 0:49 */waypoints[30].origin = (-120.622, -97.766, 1217.11);
|
||||
/* 0:49 */waypoints[30].type = "stand";
|
||||
/* 0:49 */waypoints[30].children[0] = 29;
|
||||
/* 0:49 */waypoints[30].children[1] = 7;
|
||||
/* 0:49 */waypoints[30].children[2] = 9;
|
||||
/* 0:49 */waypoints[30].children[3] = 8;
|
||||
/* 0:49 */waypoints[30].children[4] = 136;
|
||||
/* 0:49 */waypoints[30].children[5] = 135;
|
||||
/* 0:49 */waypoints[31] = spawnstruct();
|
||||
/* 0:49 */waypoints[31].origin = (-130.301, 352.809, 1204.6);
|
||||
/* 0:49 */waypoints[31].type = "stand";
|
||||
/* 0:49 */waypoints[31].children[0] = 6;
|
||||
/* 0:49 */waypoints[31].children[1] = 32;
|
||||
/* 0:49 */waypoints[31].children[2] = 26;
|
||||
/* 0:49 */waypoints[31].children[3] = 122;
|
||||
/* 0:49 */waypoints[32] = spawnstruct();
|
||||
/* 0:49 */waypoints[32].origin = (63.9374, 389.257, 1207.57);
|
||||
/* 0:49 */waypoints[32].type = "stand";
|
||||
/* 0:49 */waypoints[32].children[0] = 31;
|
||||
/* 0:49 */waypoints[32].children[1] = 25;
|
||||
/* 0:49 */waypoints[32].children[2] = 26;
|
||||
/* 0:49 */waypoints[32].children[3] = 28;
|
||||
/* 0:49 */waypoints[33] = spawnstruct();
|
||||
/* 0:49 */waypoints[33].origin = (1118.34, 270.423, 1167.86);
|
||||
/* 0:49 */waypoints[33].type = "stand";
|
||||
/* 0:49 */waypoints[33].children[0] = 22;
|
||||
/* 0:49 */waypoints[33].children[1] = 141;
|
||||
/* 0:49 */waypoints[34] = spawnstruct();
|
||||
/* 0:49 */waypoints[34].origin = (1441.9, -152.004, 1122.68);
|
||||
/* 0:49 */waypoints[34].type = "stand";
|
||||
/* 0:49 */waypoints[34].children[0] = 18;
|
||||
/* 0:49 */waypoints[34].children[1] = 42;
|
||||
/* 0:49 */waypoints[34].children[2] = 45;
|
||||
/* 0:49 */waypoints[34].children[3] = 142;
|
||||
/* 0:49 */waypoints[35] = spawnstruct();
|
||||
/* 0:49 */waypoints[35].origin = (1814.38, -270.337, 1109.55);
|
||||
/* 0:49 */waypoints[35].type = "stand";
|
||||
/* 0:49 */waypoints[35].children[0] = 36;
|
||||
/* 0:49 */waypoints[35].children[1] = 142;
|
||||
/* 0:49 */waypoints[36] = spawnstruct();
|
||||
/* 0:49 */waypoints[36].origin = (1850.34, -469.251, 1169.13);
|
||||
/* 0:49 */waypoints[36].type = "stand";
|
||||
/* 0:49 */waypoints[36].children[0] = 35;
|
||||
/* 0:49 */waypoints[36].children[1] = 37;
|
||||
/* 0:49 */waypoints[36].children[2] = 39;
|
||||
/* 0:49 */waypoints[37] = spawnstruct();
|
||||
/* 0:49 */waypoints[37].origin = (1861.16, -685.059, 1169.13);
|
||||
/* 0:49 */waypoints[37].type = "stand";
|
||||
/* 0:49 */waypoints[37].children[0] = 36;
|
||||
/* 0:49 */waypoints[37].children[1] = 38;
|
||||
/* 0:49 */waypoints[38] = spawnstruct();
|
||||
/* 0:49 */waypoints[38].origin = (1604.2, -693.672, 1169.13);
|
||||
/* 0:49 */waypoints[38].type = "stand";
|
||||
/* 0:49 */waypoints[38].children[0] = 37;
|
||||
/* 0:49 */waypoints[38].children[1] = 39;
|
||||
/* 0:49 */waypoints[38].children[2] = 40;
|
||||
/* 0:49 */waypoints[38].children[3] = 138;
|
||||
/* 0:49 */waypoints[39] = spawnstruct();
|
||||
/* 0:49 */waypoints[39].origin = (1554.54, -455.165, 1169.13);
|
||||
/* 0:49 */waypoints[39].type = "stand";
|
||||
/* 0:49 */waypoints[39].children[0] = 38;
|
||||
/* 0:49 */waypoints[39].children[1] = 36;
|
||||
/* 0:49 */waypoints[39].children[2] = 41;
|
||||
/* 0:49 */waypoints[40] = spawnstruct();
|
||||
/* 0:49 */waypoints[40].origin = (1385.56, -703.721, 1169.13);
|
||||
/* 0:49 */waypoints[40].type = "crouch";
|
||||
/* 0:49 */waypoints[40].children[0] = 38;
|
||||
/* 0:49 */waypoints[40].angles = (6.08643, -178.912, 0);
|
||||
/* 0:49 */waypoints[41] = spawnstruct();
|
||||
/* 0:49 */waypoints[41].origin = (1492.6, -335.632, 1165.53);
|
||||
/* 0:49 */waypoints[41].type = "climb";
|
||||
/* 0:49 */waypoints[41].children[0] = 39;
|
||||
/* 0:49 */waypoints[41].children[1] = 42;
|
||||
/* 0:49 */waypoints[41].angles = (1.88416, 99.256, 0);
|
||||
/* 0:49 */waypoints[42] = spawnstruct();
|
||||
/* 0:49 */waypoints[42].origin = (1480.8, -285.761, 1119.77);
|
||||
/* 0:49 */waypoints[42].type = "climb";
|
||||
/* 0:49 */waypoints[42].children[0] = 41;
|
||||
/* 0:49 */waypoints[42].children[1] = 34;
|
||||
/* 0:49 */waypoints[42].angles = (-0.582275, -82.2601, 0);
|
||||
/* 0:49 */waypoints[43] = spawnstruct();
|
||||
/* 0:49 */waypoints[43].origin = (1869.22, 80.573, 1153.9);
|
||||
/* 0:49 */waypoints[43].type = "stand";
|
||||
/* 0:49 */waypoints[43].children[0] = 44;
|
||||
/* 0:49 */waypoints[43].children[1] = 142;
|
||||
/* 0:49 */waypoints[44] = spawnstruct();
|
||||
/* 0:49 */waypoints[44].origin = (1588.68, 83.473, 1153.42);
|
||||
/* 0:49 */waypoints[44].type = "stand";
|
||||
/* 0:49 */waypoints[44].children[0] = 43;
|
||||
/* 0:49 */waypoints[44].children[1] = 45;
|
||||
/* 0:49 */waypoints[45] = spawnstruct();
|
||||
/* 0:49 */waypoints[45].origin = (1455.33, 85.097, 1139.65);
|
||||
/* 0:49 */waypoints[45].type = "stand";
|
||||
/* 0:49 */waypoints[45].children[0] = 44;
|
||||
/* 0:49 */waypoints[45].children[1] = 34;
|
||||
/* 0:49 */waypoints[45].children[2] = 141;
|
||||
/* 0:49 */waypoints[45].children[3] = 151;
|
||||
/* 0:49 */waypoints[46] = spawnstruct();
|
||||
/* 0:49 */waypoints[46].origin = (1446.6, 458.699, 1194.77);
|
||||
/* 0:49 */waypoints[46].type = "stand";
|
||||
/* 0:49 */waypoints[46].children[0] = 141;
|
||||
/* 0:49 */waypoints[46].children[1] = 153;
|
||||
/* 0:49 */waypoints[47] = spawnstruct();
|
||||
/* 0:49 */waypoints[47].origin = (1450.45, 927.719, 1212.23);
|
||||
/* 0:49 */waypoints[47].type = "stand";
|
||||
/* 0:49 */waypoints[47].children[0] = 48;
|
||||
/* 0:49 */waypoints[47].children[1] = 115;
|
||||
/* 0:49 */waypoints[47].children[2] = 153;
|
||||
/* 0:49 */waypoints[47].children[3] = 155;
|
||||
/* 0:49 */waypoints[47].children[4] = 161;
|
||||
/* 0:49 */waypoints[48] = spawnstruct();
|
||||
/* 0:49 */waypoints[48].origin = (1018.82, 907.289, 1155.02);
|
||||
/* 0:49 */waypoints[48].type = "stand";
|
||||
/* 0:49 */waypoints[48].children[0] = 47;
|
||||
/* 0:49 */waypoints[48].children[1] = 49;
|
||||
/* 0:49 */waypoints[48].children[2] = 106;
|
||||
/* 0:49 */waypoints[48].children[3] = 120;
|
||||
/* 0:49 */waypoints[48].children[4] = 128;
|
||||
/* 0:49 */waypoints[49] = spawnstruct();
|
||||
/* 0:49 */waypoints[49].origin = (605.122, 948.504, 1109.19);
|
||||
/* 0:49 */waypoints[49].type = "stand";
|
||||
/* 0:49 */waypoints[49].children[0] = 48;
|
||||
/* 0:49 */waypoints[49].children[1] = 50;
|
||||
/* 0:49 */waypoints[49].children[2] = 106;
|
||||
/* 0:49 */waypoints[50] = spawnstruct();
|
||||
/* 0:49 */waypoints[50].origin = (568.772, 1130.09, 1102.82);
|
||||
/* 0:49 */waypoints[50].type = "stand";
|
||||
/* 0:49 */waypoints[50].children[0] = 49;
|
||||
/* 0:49 */waypoints[50].children[1] = 51;
|
||||
/* 0:49 */waypoints[51] = spawnstruct();
|
||||
/* 0:49 */waypoints[51].origin = (175.316, 1245.82, 1122.67);
|
||||
/* 0:49 */waypoints[51].type = "stand";
|
||||
/* 0:49 */waypoints[51].children[0] = 50;
|
||||
/* 0:49 */waypoints[51].children[1] = 52;
|
||||
/* 0:49 */waypoints[51].children[2] = 55;
|
||||
/* 0:49 */waypoints[52] = spawnstruct();
|
||||
/* 0:49 */waypoints[52].origin = (-363.956, 1335.15, 1198.72);
|
||||
/* 0:49 */waypoints[52].type = "stand";
|
||||
/* 0:49 */waypoints[52].children[0] = 51;
|
||||
/* 0:49 */waypoints[52].children[1] = 0;
|
||||
/* 0:49 */waypoints[52].children[2] = 140;
|
||||
/* 0:49 */waypoints[52].children[3] = 54;
|
||||
/* 0:49 */waypoints[53] = spawnstruct();
|
||||
/* 0:49 */waypoints[53].origin = (-303.905, 1510.73, 1201.16);
|
||||
/* 0:49 */waypoints[53].type = "crouch";
|
||||
/* 0:49 */waypoints[53].children[0] = 54;
|
||||
/* 0:49 */waypoints[53].angles = (2.61475, -27.9492, 0);
|
||||
/* 0:49 */waypoints[54] = spawnstruct();
|
||||
/* 0:49 */waypoints[54].origin = (-206.586, 1375.92, 1181.58);
|
||||
/* 0:49 */waypoints[54].type = "stand";
|
||||
/* 0:49 */waypoints[54].children[0] = 53;
|
||||
/* 0:49 */waypoints[54].children[1] = 55;
|
||||
/* 0:49 */waypoints[54].children[2] = 52;
|
||||
/* 0:49 */waypoints[55] = spawnstruct();
|
||||
/* 0:49 */waypoints[55].origin = (51.1437, 1264.77, 1133.74);
|
||||
/* 0:49 */waypoints[55].type = "stand";
|
||||
/* 0:49 */waypoints[55].children[0] = 54;
|
||||
/* 0:49 */waypoints[55].children[1] = 51;
|
||||
/* 0:49 */waypoints[56] = spawnstruct();
|
||||
/* 0:49 */waypoints[56].origin = (-1099.16, 1046.39, 1210.46);
|
||||
/* 0:49 */waypoints[56].type = "stand";
|
||||
/* 0:49 */waypoints[56].children[0] = 1;
|
||||
/* 0:49 */waypoints[56].children[1] = 57;
|
||||
/* 0:49 */waypoints[56].children[2] = 147;
|
||||
/* 0:49 */waypoints[57] = spawnstruct();
|
||||
/* 0:49 */waypoints[57].origin = (-1486.53, 1037.84, 1156.94);
|
||||
/* 0:49 */waypoints[57].type = "stand";
|
||||
/* 0:49 */waypoints[57].children[0] = 56;
|
||||
/* 0:49 */waypoints[57].children[1] = 58;
|
||||
/* 0:49 */waypoints[57].children[2] = 124;
|
||||
/* 0:49 */waypoints[57].children[3] = 125;
|
||||
/* 0:49 */waypoints[57].children[4] = 162;
|
||||
/* 0:49 */waypoints[58] = spawnstruct();
|
||||
/* 0:49 */waypoints[58].origin = (-2058.25, 1061.45, 1088.37);
|
||||
/* 0:49 */waypoints[58].type = "stand";
|
||||
/* 0:49 */waypoints[58].children[0] = 57;
|
||||
/* 0:49 */waypoints[58].children[1] = 59;
|
||||
/* 0:49 */waypoints[59] = spawnstruct();
|
||||
/* 0:49 */waypoints[59].origin = (-2052.71, 973.244, 1071.54);
|
||||
/* 0:49 */waypoints[59].type = "stand";
|
||||
/* 0:49 */waypoints[59].children[0] = 58;
|
||||
/* 0:49 */waypoints[59].children[1] = 60;
|
||||
/* 0:49 */waypoints[60] = spawnstruct();
|
||||
/* 0:49 */waypoints[60].origin = (-2018.95, 583.207, 948.128);
|
||||
/* 0:49 */waypoints[60].type = "stand";
|
||||
/* 0:49 */waypoints[60].children[0] = 59;
|
||||
/* 0:49 */waypoints[60].children[1] = 61;
|
||||
/* 0:49 */waypoints[60].children[2] = 133;
|
||||
/* 0:49 */waypoints[61] = spawnstruct();
|
||||
/* 0:49 */waypoints[61].origin = (-1794.23, 321.641, 938.936);
|
||||
/* 0:49 */waypoints[61].type = "stand";
|
||||
/* 0:49 */waypoints[61].children[0] = 60;
|
||||
/* 0:49 */waypoints[61].children[1] = 62;
|
||||
/* 0:49 */waypoints[61].children[2] = 76;
|
||||
/* 0:49 */waypoints[61].children[3] = 126;
|
||||
/* 0:49 */waypoints[62] = spawnstruct();
|
||||
/* 0:49 */waypoints[62].origin = (-1830.12, -43.0857, 944.831);
|
||||
/* 0:49 */waypoints[62].type = "stand";
|
||||
/* 0:49 */waypoints[62].children[0] = 61;
|
||||
/* 0:49 */waypoints[62].children[1] = 63;
|
||||
/* 0:49 */waypoints[62].children[2] = 76;
|
||||
/* 0:49 */waypoints[63] = spawnstruct();
|
||||
/* 0:49 */waypoints[63].origin = (-1710.4, -279.575, 938.066);
|
||||
/* 0:49 */waypoints[63].type = "stand";
|
||||
/* 0:49 */waypoints[63].children[0] = 62;
|
||||
/* 0:49 */waypoints[63].children[1] = 64;
|
||||
/* 0:49 */waypoints[64] = spawnstruct();
|
||||
/* 0:49 */waypoints[64].origin = (-1552.51, -405.698, 947.502);
|
||||
/* 0:49 */waypoints[64].type = "stand";
|
||||
/* 0:49 */waypoints[64].children[0] = 63;
|
||||
/* 0:49 */waypoints[64].children[1] = 65;
|
||||
/* 0:49 */waypoints[64].children[2] = 132;
|
||||
/* 0:49 */waypoints[65] = spawnstruct();
|
||||
/* 0:49 */waypoints[65].origin = (-1493.8, -582.418, 956.741);
|
||||
/* 0:49 */waypoints[65].type = "stand";
|
||||
/* 0:49 */waypoints[65].children[0] = 64;
|
||||
/* 0:49 */waypoints[65].children[1] = 66;
|
||||
/* 0:49 */waypoints[66] = spawnstruct();
|
||||
/* 0:49 */waypoints[66].origin = (-1148.6, -620.787, 975.612);
|
||||
/* 0:49 */waypoints[66].type = "stand";
|
||||
/* 0:49 */waypoints[66].children[0] = 65;
|
||||
/* 0:49 */waypoints[66].children[1] = 67;
|
||||
/* 0:49 */waypoints[66].children[2] = 71;
|
||||
/* 0:49 */waypoints[66].children[3] = 73;
|
||||
/* 0:49 */waypoints[67] = spawnstruct();
|
||||
/* 0:49 */waypoints[67].origin = (-874.25, -606.742, 970.426);
|
||||
/* 0:49 */waypoints[67].type = "stand";
|
||||
/* 0:49 */waypoints[67].children[0] = 66;
|
||||
/* 0:49 */waypoints[67].children[1] = 68;
|
||||
/* 0:49 */waypoints[67].children[2] = 73;
|
||||
/* 0:49 */waypoints[67].children[3] = 82;
|
||||
/* 0:49 */waypoints[67].children[4] = 127;
|
||||
/* 0:49 */waypoints[67].children[5] = 157;
|
||||
/* 0:49 */waypoints[68] = spawnstruct();
|
||||
/* 0:49 */waypoints[68].origin = (-787.288, -463.053, 1031.08);
|
||||
/* 0:49 */waypoints[68].type = "stand";
|
||||
/* 0:49 */waypoints[68].children[0] = 67;
|
||||
/* 0:49 */waypoints[68].children[1] = 69;
|
||||
/* 0:49 */waypoints[68].children[2] = 91;
|
||||
/* 0:49 */waypoints[68].children[3] = 95;
|
||||
/* 0:49 */waypoints[69] = spawnstruct();
|
||||
/* 0:49 */waypoints[69].origin = (-806.401, -95.4257, 1154.77);
|
||||
/* 0:49 */waypoints[69].type = "stand";
|
||||
/* 0:49 */waypoints[69].children[0] = 68;
|
||||
/* 0:49 */waypoints[69].children[1] = 70;
|
||||
/* 0:49 */waypoints[69].children[2] = 158;
|
||||
/* 0:49 */waypoints[70] = spawnstruct();
|
||||
/* 0:49 */waypoints[70].origin = (-823.882, 299.214, 1214.89);
|
||||
/* 0:49 */waypoints[70].type = "stand";
|
||||
/* 0:49 */waypoints[70].children[0] = 69;
|
||||
/* 0:49 */waypoints[70].children[1] = 3;
|
||||
/* 0:49 */waypoints[70].children[2] = 143;
|
||||
/* 0:49 */waypoints[70].children[3] = 159;
|
||||
/* 0:49 */waypoints[71] = spawnstruct();
|
||||
/* 0:49 */waypoints[71].origin = (-1160.64, -679.83, 980.125);
|
||||
/* 0:49 */waypoints[71].type = "stand";
|
||||
/* 0:49 */waypoints[71].children[0] = 66;
|
||||
/* 0:49 */waypoints[71].children[1] = 72;
|
||||
/* 0:49 */waypoints[72] = spawnstruct();
|
||||
/* 0:49 */waypoints[72].origin = (-1091.13, -746.526, 980.125);
|
||||
/* 0:49 */waypoints[72].type = "crouch";
|
||||
/* 0:49 */waypoints[72].children[0] = 71;
|
||||
/* 0:49 */waypoints[72].angles = (0.296631, -3.14758, 0);
|
||||
/* 0:49 */waypoints[73] = spawnstruct();
|
||||
/* 0:49 */waypoints[73].origin = (-989.702, -452.669, 967.368);
|
||||
/* 0:49 */waypoints[73].type = "stand";
|
||||
/* 0:49 */waypoints[73].children[0] = 67;
|
||||
/* 0:49 */waypoints[73].children[1] = 74;
|
||||
/* 0:49 */waypoints[73].children[2] = 66;
|
||||
/* 0:49 */waypoints[73].children[3] = 95;
|
||||
/* 0:49 */waypoints[74] = spawnstruct();
|
||||
/* 0:49 */waypoints[74].origin = (-1128.79, -78.3326, 926.246);
|
||||
/* 0:49 */waypoints[74].type = "stand";
|
||||
/* 0:49 */waypoints[74].children[0] = 73;
|
||||
/* 0:49 */waypoints[74].children[1] = 75;
|
||||
/* 0:49 */waypoints[74].children[2] = 77;
|
||||
/* 0:49 */waypoints[74].children[3] = 100;
|
||||
/* 0:49 */waypoints[75] = spawnstruct();
|
||||
/* 0:49 */waypoints[75].origin = (-1377.95, 180.691, 920.43);
|
||||
/* 0:49 */waypoints[75].type = "stand";
|
||||
/* 0:49 */waypoints[75].children[0] = 74;
|
||||
/* 0:49 */waypoints[75].children[1] = 76;
|
||||
/* 0:49 */waypoints[75].children[2] = 111;
|
||||
/* 0:49 */waypoints[76] = spawnstruct();
|
||||
/* 0:49 */waypoints[76].origin = (-1686.38, 309.517, 933.817);
|
||||
/* 0:49 */waypoints[76].type = "stand";
|
||||
/* 0:49 */waypoints[76].children[0] = 75;
|
||||
/* 0:49 */waypoints[76].children[1] = 61;
|
||||
/* 0:49 */waypoints[76].children[2] = 109;
|
||||
/* 0:49 */waypoints[76].children[3] = 62;
|
||||
/* 0:49 */waypoints[76].children[4] = 110;
|
||||
/* 0:49 */waypoints[77] = spawnstruct();
|
||||
/* 0:49 */waypoints[77].origin = (-1223.57, -247.579, 975.125);
|
||||
/* 0:49 */waypoints[77].type = "stand";
|
||||
/* 0:49 */waypoints[77].children[0] = 74;
|
||||
/* 0:49 */waypoints[77].children[1] = 78;
|
||||
/* 0:49 */waypoints[78] = spawnstruct();
|
||||
/* 0:49 */waypoints[78].origin = (-1224.22, -306.597, 975.125);
|
||||
/* 0:49 */waypoints[78].type = "stand";
|
||||
/* 0:49 */waypoints[78].children[0] = 77;
|
||||
/* 0:49 */waypoints[78].children[1] = 79;
|
||||
/* 0:49 */waypoints[79] = spawnstruct();
|
||||
/* 0:49 */waypoints[79].origin = (-1377.08, -318.221, 1031.13);
|
||||
/* 0:49 */waypoints[79].type = "stand";
|
||||
/* 0:49 */waypoints[79].children[0] = 78;
|
||||
/* 0:49 */waypoints[79].children[1] = 80;
|
||||
/* 0:49 */waypoints[80] = spawnstruct();
|
||||
/* 0:49 */waypoints[80].origin = (-1359.04, -484.543, 1111.13);
|
||||
/* 0:49 */waypoints[80].type = "stand";
|
||||
/* 0:49 */waypoints[80].children[0] = 79;
|
||||
/* 0:49 */waypoints[80].children[1] = 81;
|
||||
/* 0:49 */waypoints[81] = spawnstruct();
|
||||
/* 0:49 */waypoints[81].origin = (-1223.55, -413.784, 1111.13);
|
||||
/* 0:49 */waypoints[81].type = "crouch";
|
||||
/* 0:49 */waypoints[81].children[0] = 80;
|
||||
/* 0:49 */waypoints[81].angles = (2.18079, -10.3766, 0);
|
||||
/* 0:49 */waypoints[82] = spawnstruct();
|
||||
/* 0:49 */waypoints[82].origin = (-615.366, -773.652, 970.625);
|
||||
/* 0:49 */waypoints[82].type = "stand";
|
||||
/* 0:49 */waypoints[82].children[0] = 67;
|
||||
/* 0:49 */waypoints[82].children[1] = 83;
|
||||
/* 0:49 */waypoints[82].children[2] = 96;
|
||||
/* 0:49 */waypoints[83] = spawnstruct();
|
||||
/* 0:49 */waypoints[83].origin = (-134.866, -853.82, 970.13);
|
||||
/* 0:49 */waypoints[83].type = "stand";
|
||||
/* 0:49 */waypoints[83].children[0] = 82;
|
||||
/* 0:49 */waypoints[83].children[1] = 84;
|
||||
/* 0:49 */waypoints[83].children[2] = 85;
|
||||
/* 0:49 */waypoints[83].children[3] = 98;
|
||||
/* 0:49 */waypoints[83].children[4] = 164;
|
||||
/* 0:49 */waypoints[84] = spawnstruct();
|
||||
/* 0:49 */waypoints[84].origin = (407.92, -775.34, 974.555);
|
||||
/* 0:49 */waypoints[84].type = "stand";
|
||||
/* 0:49 */waypoints[84].children[0] = 83;
|
||||
/* 0:49 */waypoints[84].children[1] = 14;
|
||||
/* 0:49 */waypoints[84].children[2] = 99;
|
||||
/* 0:49 */waypoints[85] = spawnstruct();
|
||||
/* 0:49 */waypoints[85].origin = (-95.2064, -985.366, 972.401);
|
||||
/* 0:49 */waypoints[85].type = "stand";
|
||||
/* 0:49 */waypoints[85].children[0] = 83;
|
||||
/* 0:49 */waypoints[85].children[1] = 86;
|
||||
/* 0:49 */waypoints[86] = spawnstruct();
|
||||
/* 0:49 */waypoints[86].origin = (28.4648, -1069.61, 967.634);
|
||||
/* 0:49 */waypoints[86].type = "stand";
|
||||
/* 0:49 */waypoints[86].children[0] = 85;
|
||||
/* 0:49 */waypoints[86].children[1] = 87;
|
||||
/* 0:49 */waypoints[87] = spawnstruct();
|
||||
/* 0:49 */waypoints[87].origin = (757.679, -1042.53, 1023.72);
|
||||
/* 0:49 */waypoints[87].type = "stand";
|
||||
/* 0:49 */waypoints[87].children[0] = 86;
|
||||
/* 0:49 */waypoints[87].children[1] = 15;
|
||||
/* 0:49 */waypoints[88] = spawnstruct();
|
||||
/* 0:49 */waypoints[88].origin = (1221.8, -616.227, 1096.13);
|
||||
/* 0:49 */waypoints[88].type = "stand";
|
||||
/* 0:49 */waypoints[88].children[0] = 17;
|
||||
/* 0:49 */waypoints[88].children[1] = 89;
|
||||
/* 0:49 */waypoints[89] = spawnstruct();
|
||||
/* 0:49 */waypoints[89].origin = (1034.42, -616.104, 1186.13);
|
||||
/* 0:49 */waypoints[89].type = "stand";
|
||||
/* 0:49 */waypoints[89].children[0] = 88;
|
||||
/* 0:49 */waypoints[89].children[1] = 90;
|
||||
/* 0:49 */waypoints[89].children[2] = 137;
|
||||
/* 0:49 */waypoints[90] = spawnstruct();
|
||||
/* 0:49 */waypoints[90].origin = (912.016, -616.17, 1186.13);
|
||||
/* 0:49 */waypoints[90].type = "crouch";
|
||||
/* 0:49 */waypoints[90].children[0] = 89;
|
||||
/* 0:49 */waypoints[90].angles = (6.31165, -173.54, 0);
|
||||
/* 0:49 */waypoints[91] = spawnstruct();
|
||||
/* 0:49 */waypoints[91].origin = (-762.557, -251.392, 1103.48);
|
||||
/* 0:49 */waypoints[91].type = "stand";
|
||||
/* 0:49 */waypoints[91].children[0] = 68;
|
||||
/* 0:49 */waypoints[91].children[1] = 92;
|
||||
/* 0:49 */waypoints[91].children[2] = 94;
|
||||
/* 0:49 */waypoints[91].children[3] = 121;
|
||||
/* 0:49 */waypoints[92] = spawnstruct();
|
||||
/* 0:49 */waypoints[92].origin = (-752.716, 148.001, 1226.67);
|
||||
/* 0:49 */waypoints[92].type = "stand";
|
||||
/* 0:49 */waypoints[92].children[0] = 91;
|
||||
/* 0:49 */waypoints[92].children[1] = 3;
|
||||
/* 0:49 */waypoints[93] = spawnstruct();
|
||||
/* 0:49 */waypoints[93].origin = (-753.091, 653.628, 1214.13);
|
||||
/* 0:49 */waypoints[93].type = "stand";
|
||||
/* 0:49 */waypoints[93].children[0] = 1;
|
||||
/* 0:49 */waypoints[93].children[1] = 3;
|
||||
/* 0:49 */waypoints[94] = spawnstruct();
|
||||
/* 0:49 */waypoints[94].origin = (-772.41, 23.4657, 1199.63);
|
||||
/* 0:49 */waypoints[94].type = "crouch";
|
||||
/* 0:49 */waypoints[94].children[0] = 91;
|
||||
/* 0:49 */waypoints[94].angles = (-0.6427, 92.1478, 0);
|
||||
/* 0:49 */waypoints[95] = spawnstruct();
|
||||
/* 0:49 */waypoints[95].origin = (-664.002, -568.834, 993.587);
|
||||
/* 0:49 */waypoints[95].type = "stand";
|
||||
/* 0:49 */waypoints[95].children[0] = 68;
|
||||
/* 0:49 */waypoints[95].children[1] = 96;
|
||||
/* 0:49 */waypoints[95].children[2] = 73;
|
||||
/* 0:49 */waypoints[96] = spawnstruct();
|
||||
/* 0:49 */waypoints[96].origin = (-367.512, -564.365, 974.375);
|
||||
/* 0:49 */waypoints[96].type = "stand";
|
||||
/* 0:49 */waypoints[96].children[0] = 95;
|
||||
/* 0:49 */waypoints[96].children[1] = 97;
|
||||
/* 0:49 */waypoints[96].children[2] = 82;
|
||||
/* 0:49 */waypoints[97] = spawnstruct();
|
||||
/* 0:49 */waypoints[97].origin = (-229.303, -393.778, 979.729);
|
||||
/* 0:49 */waypoints[97].type = "stand";
|
||||
/* 0:49 */waypoints[97].children[0] = 96;
|
||||
/* 0:49 */waypoints[97].children[1] = 98;
|
||||
/* 0:49 */waypoints[98] = spawnstruct();
|
||||
/* 0:49 */waypoints[98].origin = (-47.2513, -677.014, 977.125);
|
||||
/* 0:49 */waypoints[98].type = "stand";
|
||||
/* 0:49 */waypoints[98].children[0] = 97;
|
||||
/* 0:49 */waypoints[98].children[1] = 99;
|
||||
/* 0:49 */waypoints[98].children[2] = 83;
|
||||
/* 0:49 */waypoints[99] = spawnstruct();
|
||||
/* 0:49 */waypoints[99].origin = (193.643, -789.992, 978.125);
|
||||
/* 0:49 */waypoints[99].type = "stand";
|
||||
/* 0:49 */waypoints[99].children[0] = 98;
|
||||
/* 0:49 */waypoints[99].children[1] = 84;
|
||||
/* 0:49 */waypoints[100] = spawnstruct();
|
||||
/* 0:49 */waypoints[100].origin = (-1176.37, 214.575, 917.107);
|
||||
/* 0:49 */waypoints[100].type = "stand";
|
||||
/* 0:49 */waypoints[100].children[0] = 74;
|
||||
/* 0:49 */waypoints[100].children[1] = 101;
|
||||
/* 0:49 */waypoints[101] = spawnstruct();
|
||||
/* 0:49 */waypoints[101].origin = (-1194.94, 509.363, 922.105);
|
||||
/* 0:49 */waypoints[101].type = "stand";
|
||||
/* 0:49 */waypoints[101].children[0] = 100;
|
||||
/* 0:49 */waypoints[101].children[1] = 102;
|
||||
/* 0:49 */waypoints[101].children[2] = 111;
|
||||
/* 0:49 */waypoints[101].children[3] = 108;
|
||||
/* 0:49 */waypoints[102] = spawnstruct();
|
||||
/* 0:49 */waypoints[102].origin = (-942.461, 750.356, 911.698);
|
||||
/* 0:49 */waypoints[102].type = "stand";
|
||||
/* 0:49 */waypoints[102].children[0] = 101;
|
||||
/* 0:49 */waypoints[102].children[1] = 103;
|
||||
/* 0:49 */waypoints[103] = spawnstruct();
|
||||
/* 0:49 */waypoints[103].origin = (-802.145, 829.155, 914.493);
|
||||
/* 0:49 */waypoints[103].type = "stand";
|
||||
/* 0:49 */waypoints[103].children[0] = 102;
|
||||
/* 0:49 */waypoints[103].children[1] = 104;
|
||||
/* 0:49 */waypoints[103].children[2] = 107;
|
||||
/* 0:49 */waypoints[104] = spawnstruct();
|
||||
/* 0:49 */waypoints[104].origin = (-200.402, 741.442, 929.856);
|
||||
/* 0:49 */waypoints[104].type = "stand";
|
||||
/* 0:49 */waypoints[104].children[0] = 103;
|
||||
/* 0:49 */waypoints[104].children[1] = 105;
|
||||
/* 0:49 */waypoints[105] = spawnstruct();
|
||||
/* 0:49 */waypoints[105].origin = (165.957, 716.371, 1009.74);
|
||||
/* 0:49 */waypoints[105].type = "stand";
|
||||
/* 0:49 */waypoints[105].children[0] = 104;
|
||||
/* 0:49 */waypoints[105].children[1] = 106;
|
||||
/* 0:49 */waypoints[106] = spawnstruct();
|
||||
/* 0:49 */waypoints[106].origin = (647.606, 874.518, 1123.28);
|
||||
/* 0:49 */waypoints[106].type = "stand";
|
||||
/* 0:49 */waypoints[106].children[0] = 105;
|
||||
/* 0:49 */waypoints[106].children[1] = 48;
|
||||
/* 0:49 */waypoints[106].children[2] = 49;
|
||||
/* 0:49 */waypoints[107] = spawnstruct();
|
||||
/* 0:49 */waypoints[107].origin = (-1096.12, 830.921, 918.553);
|
||||
/* 0:49 */waypoints[107].type = "stand";
|
||||
/* 0:49 */waypoints[107].children[0] = 103;
|
||||
/* 0:49 */waypoints[107].children[1] = 108;
|
||||
/* 0:49 */waypoints[108] = spawnstruct();
|
||||
/* 0:49 */waypoints[108].origin = (-1415.11, 662.171, 916.529);
|
||||
/* 0:49 */waypoints[108].type = "stand";
|
||||
/* 0:49 */waypoints[108].children[0] = 107;
|
||||
/* 0:49 */waypoints[108].children[1] = 109;
|
||||
/* 0:49 */waypoints[108].children[2] = 101;
|
||||
/* 0:49 */waypoints[109] = spawnstruct();
|
||||
/* 0:49 */waypoints[109].origin = (-1578.31, 379.587, 938.826);
|
||||
/* 0:49 */waypoints[109].type = "stand";
|
||||
/* 0:49 */waypoints[109].children[0] = 108;
|
||||
/* 0:49 */waypoints[109].children[1] = 76;
|
||||
/* 0:49 */waypoints[110] = spawnstruct();
|
||||
/* 0:49 */waypoints[110].origin = (-1598.81, 546.562, 943.197);
|
||||
/* 0:49 */waypoints[110].type = "stand";
|
||||
/* 0:49 */waypoints[110].children[0] = 76;
|
||||
/* 0:49 */waypoints[110].children[1] = 149;
|
||||
/* 0:49 */waypoints[111] = spawnstruct();
|
||||
/* 0:49 */waypoints[111].origin = (-1352.51, 380.803, 920.282);
|
||||
/* 0:49 */waypoints[111].type = "stand";
|
||||
/* 0:49 */waypoints[111].children[0] = 75;
|
||||
/* 0:49 */waypoints[111].children[1] = 101;
|
||||
/* 0:49 */waypoints[112] = spawnstruct();
|
||||
/* 0:49 */waypoints[112].origin = (298.875, -291.125, 1209.91);
|
||||
/* 0:49 */waypoints[112].type = "crouch";
|
||||
/* 0:49 */waypoints[112].children[0] = 10;
|
||||
/* 0:49 */waypoints[112].angles = (3.41125, -160.67, 0);
|
||||
/* 0:49 */waypoints[113] = spawnstruct();
|
||||
/* 0:49 */waypoints[113].origin = (768.09, -18.4282, 1147.55);
|
||||
/* 0:49 */waypoints[113].type = "stand";
|
||||
/* 0:49 */waypoints[113].children[0] = 11;
|
||||
/* 0:49 */waypoints[113].children[1] = 12;
|
||||
/* 0:49 */waypoints[114] = spawnstruct();
|
||||
/* 0:49 */waypoints[114].origin = (1011.9, 487.033, 1185.65);
|
||||
/* 0:49 */waypoints[114].type = "crouch";
|
||||
/* 0:49 */waypoints[114].children[0] = 23;
|
||||
/* 0:49 */waypoints[114].angles = (-0.351563, -176.484, 0);
|
||||
/* 0:49 */waypoints[115] = spawnstruct();
|
||||
/* 0:49 */waypoints[115].origin = (1532.25, 1039.48, 1221.13);
|
||||
/* 0:49 */waypoints[115].type = "stand";
|
||||
/* 0:49 */waypoints[115].children[0] = 47;
|
||||
/* 0:49 */waypoints[115].children[1] = 116;
|
||||
/* 0:49 */waypoints[116] = spawnstruct();
|
||||
/* 0:49 */waypoints[116].origin = (1531.73, 1138.99, 1221.13);
|
||||
/* 0:49 */waypoints[116].type = "stand";
|
||||
/* 0:49 */waypoints[116].children[0] = 115;
|
||||
/* 0:49 */waypoints[116].children[1] = 154;
|
||||
/* 0:49 */waypoints[117] = spawnstruct();
|
||||
/* 0:49 */waypoints[117].origin = (1180.87, 1087.56, 1223.13);
|
||||
/* 0:49 */waypoints[117].type = "stand";
|
||||
/* 0:49 */waypoints[117].children[0] = 118;
|
||||
/* 0:49 */waypoints[117].children[1] = 154;
|
||||
/* 0:49 */waypoints[118] = spawnstruct();
|
||||
/* 0:49 */waypoints[118].origin = (1102.87, 1074.34, 1197.33);
|
||||
/* 0:49 */waypoints[118].type = "stand";
|
||||
/* 0:49 */waypoints[118].children[0] = 117;
|
||||
/* 0:49 */waypoints[118].children[1] = 119;
|
||||
/* 0:49 */waypoints[119] = spawnstruct();
|
||||
/* 0:49 */waypoints[119].origin = (1089.12, 1074.19, 1167.13);
|
||||
/* 0:49 */waypoints[119].type = "climb";
|
||||
/* 0:49 */waypoints[119].children[0] = 118;
|
||||
/* 0:49 */waypoints[119].children[1] = 120;
|
||||
/* 0:49 */waypoints[119].angles = (4.28467, -0.675659, 0);
|
||||
/* 0:49 */waypoints[120] = spawnstruct();
|
||||
/* 0:49 */waypoints[120].origin = (961.097, 1070.89, 1167.13);
|
||||
/* 0:49 */waypoints[120].type = "stand";
|
||||
/* 0:49 */waypoints[120].children[0] = 119;
|
||||
/* 0:49 */waypoints[120].children[1] = 48;
|
||||
/* 0:49 */waypoints[121] = spawnstruct();
|
||||
/* 0:49 */waypoints[121].origin = (-789.493, -28.9127, 1180.26);
|
||||
/* 0:49 */waypoints[121].type = "grenade";
|
||||
/* 0:49 */waypoints[121].children[0] = 91;
|
||||
/* 0:49 */waypoints[121].angles = (-10.9973, 88.1818, 0.159302);
|
||||
/* 0:49 */waypoints[122] = spawnstruct();
|
||||
/* 0:49 */waypoints[122].origin = (-137.125, 243.275, 1217.23);
|
||||
/* 0:49 */waypoints[122].type = "claymore";
|
||||
/* 0:49 */waypoints[122].children[0] = 31;
|
||||
/* 0:49 */waypoints[122].angles = (-0.428467, 126.892, 0);
|
||||
/* 0:49 */waypoints[123] = spawnstruct();
|
||||
/* 0:49 */waypoints[123].origin = (454.15, 39.8837, 1208.65);
|
||||
/* 0:49 */waypoints[123].type = "claymore";
|
||||
/* 0:49 */waypoints[123].children[0] = 11;
|
||||
/* 0:49 */waypoints[123].angles = (11.4532, -36.5131, 0);
|
||||
/* 0:49 */waypoints[124] = spawnstruct();
|
||||
/* 0:49 */waypoints[124].origin = (-1441.02, 1091.83, 1168.11);
|
||||
/* 0:49 */waypoints[124].type = "crouch";
|
||||
/* 0:49 */waypoints[124].children[0] = 57;
|
||||
/* 0:49 */waypoints[124].angles = (7.54211, -73.6743, 0);
|
||||
/* 0:49 */waypoints[125] = spawnstruct();
|
||||
/* 0:49 */waypoints[125].origin = (-1462.77, 1126.25, 1165.56);
|
||||
/* 0:49 */waypoints[125].type = "claymore";
|
||||
/* 0:49 */waypoints[125].children[0] = 57;
|
||||
/* 0:49 */waypoints[125].angles = (5.9491, -72.6691, 0);
|
||||
/* 0:49 */waypoints[126] = spawnstruct();
|
||||
/* 0:49 */waypoints[126].origin = (-1655.4, 423.645, 937.038);
|
||||
/* 0:49 */waypoints[126].type = "grenade";
|
||||
/* 0:49 */waypoints[126].children[0] = 61;
|
||||
/* 0:49 */waypoints[126].angles = (-33.1018, -3.15857, 0.318604);
|
||||
/* 0:49 */waypoints[127] = spawnstruct();
|
||||
/* 0:49 */waypoints[127].origin = (-802.697, -737.925, 980.298);
|
||||
/* 0:49 */waypoints[127].type = "grenade";
|
||||
/* 0:49 */waypoints[127].children[0] = 67;
|
||||
/* 0:49 */waypoints[127].angles = (-20.6927, -1.49963, 0.444946);
|
||||
/* 0:49 */waypoints[128] = spawnstruct();
|
||||
/* 0:49 */waypoints[128].origin = (821.054, 917.467, 1140.13);
|
||||
/* 0:49 */waypoints[128].type = "grenade";
|
||||
/* 0:49 */waypoints[128].children[0] = 48;
|
||||
/* 0:49 */waypoints[128].angles = (-26.5979, -143.893, 0.422974);
|
||||
/* 0:49 */waypoints[129] = spawnstruct();
|
||||
/* 0:49 */waypoints[129].origin = (-501.692, 1195.69, 1212.04);
|
||||
/* 0:49 */waypoints[129].type = "claymore";
|
||||
/* 0:49 */waypoints[129].children[0] = 140;
|
||||
/* 0:49 */waypoints[129].angles = (7.25098, 70.1202, 0);
|
||||
/* 0:49 */waypoints[130] = spawnstruct();
|
||||
/* 0:49 */waypoints[130].origin = (-746.236, 772.529, 1212.13);
|
||||
/* 0:49 */waypoints[130].type = "grenade";
|
||||
/* 0:49 */waypoints[130].children[0] = 2;
|
||||
/* 0:49 */waypoints[130].angles = (-14.881, 0.802002, 0.450439);
|
||||
/* 0:49 */waypoints[131] = spawnstruct();
|
||||
/* 0:49 */waypoints[131].origin = (-748.938, 471.922, 1214.22);
|
||||
/* 0:49 */waypoints[131].type = "grenade";
|
||||
/* 0:49 */waypoints[131].children[0] = 3;
|
||||
/* 0:49 */waypoints[131].angles = (-14.8755, -4.61975, 0.258179);
|
||||
/* 0:49 */waypoints[132] = spawnstruct();
|
||||
/* 0:49 */waypoints[132].origin = (-1663.93, -595.349, 950.775);
|
||||
/* 0:49 */waypoints[132].type = "crouch";
|
||||
/* 0:49 */waypoints[132].children[0] = 64;
|
||||
/* 0:49 */waypoints[132].angles = (-3.90564, -0.840454, 0);
|
||||
/* 0:49 */waypoints[133] = spawnstruct();
|
||||
/* 0:49 */waypoints[133].origin = (-1968.77, 634.019, 951.776);
|
||||
/* 0:49 */waypoints[133].type = "claymore";
|
||||
/* 0:49 */waypoints[133].children[0] = 60;
|
||||
/* 0:49 */waypoints[133].angles = (-2.45544, 116.653, 0);
|
||||
/* 0:49 */waypoints[134] = spawnstruct();
|
||||
/* 0:49 */waypoints[134].origin = (-378.841, -295.628, 1225.63);
|
||||
/* 0:49 */waypoints[134].type = "crouch";
|
||||
/* 0:49 */waypoints[134].children[0] = 7;
|
||||
/* 0:49 */waypoints[134].angles = (8.99231, -33.8928, 0);
|
||||
/* 0:49 */waypoints[135] = spawnstruct();
|
||||
/* 0:49 */waypoints[135].origin = (-65.8315, -315.342, 1220.13);
|
||||
/* 0:49 */waypoints[135].type = "crouch";
|
||||
/* 0:49 */waypoints[135].children[0] = 30;
|
||||
/* 0:49 */waypoints[135].angles = (13.1946, -42.0007, 0);
|
||||
/* 0:49 */waypoints[136] = spawnstruct();
|
||||
/* 0:49 */waypoints[136].origin = (18.9584, -53.5953, 1218.4);
|
||||
/* 0:49 */waypoints[136].type = "grenade";
|
||||
/* 0:49 */waypoints[136].children[0] = 30;
|
||||
/* 0:49 */waypoints[136].angles = (-3.62122, 0.818481, 0.357056);
|
||||
/* 0:49 */waypoints[137] = spawnstruct();
|
||||
/* 0:49 */waypoints[137].origin = (918.689, -643.207, 1186.13);
|
||||
/* 0:49 */waypoints[137].type = "grenade";
|
||||
/* 0:49 */waypoints[137].children[0] = 89;
|
||||
/* 0:49 */waypoints[137].angles = (-5.97229, 178.577, 0.411987);
|
||||
/* 0:49 */waypoints[138] = spawnstruct();
|
||||
/* 0:49 */waypoints[138].origin = (1388.56, -646.785, 1169.13);
|
||||
/* 0:49 */waypoints[138].type = "stand";
|
||||
/* 0:49 */waypoints[138].children[0] = 38;
|
||||
/* 0:49 */waypoints[138].children[1] = 148;
|
||||
/* 0:49 */waypoints[139] = spawnstruct();
|
||||
/* 0:49 */waypoints[139].origin = (-768.873, 920.651, 1214.13);
|
||||
/* 0:49 */waypoints[139].type = "stand";
|
||||
/* 0:49 */waypoints[139].children[0] = 1;
|
||||
/* 0:49 */waypoints[140] = spawnstruct();
|
||||
/* 0:49 */waypoints[140].origin = (-471.478, 1298.86, 1204.16);
|
||||
/* 0:49 */waypoints[140].type = "stand";
|
||||
/* 0:49 */waypoints[140].children[0] = 129;
|
||||
/* 0:49 */waypoints[140].children[1] = 52;
|
||||
/* 0:49 */waypoints[141] = spawnstruct();
|
||||
/* 0:49 */waypoints[141].origin = (1439.61, 242.703, 1156.69);
|
||||
/* 0:49 */waypoints[141].type = "stand";
|
||||
/* 0:49 */waypoints[141].children[0] = 33;
|
||||
/* 0:49 */waypoints[141].children[1] = 46;
|
||||
/* 0:49 */waypoints[141].children[2] = 45;
|
||||
/* 0:49 */waypoints[142] = spawnstruct();
|
||||
/* 0:49 */waypoints[142].origin = (1836.01, -157.368, 1102.31);
|
||||
/* 0:49 */waypoints[142].type = "stand";
|
||||
/* 0:49 */waypoints[142].children[0] = 43;
|
||||
/* 0:49 */waypoints[142].children[1] = 35;
|
||||
/* 0:49 */waypoints[142].children[2] = 34;
|
||||
/* 0:49 */waypoints[143] = spawnstruct();
|
||||
/* 0:49 */waypoints[143].origin = (-794.287, 336.649, 1211.54);
|
||||
/* 0:49 */waypoints[143].type = "grenade";
|
||||
/* 0:49 */waypoints[143].children[0] = 70;
|
||||
/* 0:49 */waypoints[143].angles = (-11.7334, 3.26843, 0.126343);
|
||||
/* 0:49 */waypoints[144] = spawnstruct();
|
||||
/* 0:49 */waypoints[144].origin = (551.227, 427.162, 1198.4);
|
||||
/* 0:49 */waypoints[144].type = "grenade";
|
||||
/* 0:49 */waypoints[144].children[0] = 24;
|
||||
/* 0:49 */waypoints[144].angles = (-15.4083, 177.33, 0);
|
||||
/* 0:49 */waypoints[145] = spawnstruct();
|
||||
/* 0:49 */waypoints[145].origin = (1116.19, -697.678, 1092.84);
|
||||
/* 0:49 */waypoints[145].type = "stand";
|
||||
/* 0:49 */waypoints[145].children[0] = 16;
|
||||
/* 0:49 */waypoints[145].children[1] = 146;
|
||||
/* 0:49 */waypoints[146] = spawnstruct();
|
||||
/* 0:49 */waypoints[146].origin = (903.829, -659.128, 1093.97);
|
||||
/* 0:49 */waypoints[146].type = "crouch";
|
||||
/* 0:49 */waypoints[146].children[0] = 145;
|
||||
/* 0:49 */waypoints[146].angles = (6.08643, -177.33, 0);
|
||||
/* 0:49 */waypoints[147] = spawnstruct();
|
||||
/* 0:49 */waypoints[147].origin = (-1298.42, 1126.83, 1203);
|
||||
/* 0:49 */waypoints[147].type = "crouch";
|
||||
/* 0:49 */waypoints[147].children[0] = 56;
|
||||
/* 0:49 */waypoints[147].angles = (-0.142822, -82.359, 0);
|
||||
/* 0:49 */waypoints[148] = spawnstruct();
|
||||
/* 0:49 */waypoints[148].origin = (1353.13, -652.991, 1168.28);
|
||||
/* 0:49 */waypoints[148].type = "climb";
|
||||
/* 0:49 */waypoints[148].children[0] = 138;
|
||||
/* 0:49 */waypoints[148].children[1] = 17;
|
||||
/* 0:49 */waypoints[148].angles = (3.0542, -179.55, 0);
|
||||
/* 0:49 */waypoints[149] = spawnstruct();
|
||||
/* 0:49 */waypoints[149].origin = (-1567.13, 753.475, 943.492);
|
||||
/* 0:49 */waypoints[149].type = "crouch";
|
||||
/* 0:49 */waypoints[149].children[0] = 110;
|
||||
/* 0:49 */waypoints[149].angles = (0.164795, -1.23047, 0);
|
||||
/* 0:49 */waypoints[150] = spawnstruct();
|
||||
/* 0:49 */waypoints[150].origin = (915.656, 227.139, 1178.08);
|
||||
/* 0:49 */waypoints[150].type = "grenade";
|
||||
/* 0:49 */waypoints[150].children[0] = 22;
|
||||
/* 0:49 */waypoints[150].angles = (1.59302, -99.8767, 0);
|
||||
/* 0:49 */waypoints[151] = spawnstruct();
|
||||
/* 0:49 */waypoints[151].origin = (1500.34, 170.983, 1147.74);
|
||||
/* 0:49 */waypoints[151].type = "claymore";
|
||||
/* 0:49 */waypoints[151].children[0] = 45;
|
||||
/* 0:49 */waypoints[151].angles = (-9.27246, 99.5911, 0);
|
||||
/* 0:49 */waypoints[152] = spawnstruct();
|
||||
/* 0:49 */waypoints[152].origin = (1431.04, 700.485, 1212.23);
|
||||
/* 0:49 */waypoints[152].type = "grenade";
|
||||
/* 0:49 */waypoints[152].children[0] = 153;
|
||||
/* 0:49 */waypoints[152].angles = (0.6427, -94.6033, 0);
|
||||
/* 0:49 */waypoints[153] = spawnstruct();
|
||||
/* 0:49 */waypoints[153].origin = (1452.93, 724.663, 1212.23);
|
||||
/* 0:49 */waypoints[153].type = "stand";
|
||||
/* 0:49 */waypoints[153].children[0] = 47;
|
||||
/* 0:49 */waypoints[153].children[1] = 46;
|
||||
/* 0:49 */waypoints[153].children[2] = 152;
|
||||
/* 0:49 */waypoints[154] = spawnstruct();
|
||||
/* 0:49 */waypoints[154].origin = (1339.72, 1114.04, 1221.13);
|
||||
/* 0:49 */waypoints[154].type = "stand";
|
||||
/* 0:49 */waypoints[154].children[0] = 116;
|
||||
/* 0:49 */waypoints[154].children[1] = 117;
|
||||
/* 0:49 */waypoints[155] = spawnstruct();
|
||||
/* 0:49 */waypoints[155].origin = (1322.91, 989.178, 1203.42);
|
||||
/* 0:49 */waypoints[155].type = "stand";
|
||||
/* 0:49 */waypoints[155].children[0] = 47;
|
||||
/* 0:49 */waypoints[156] = spawnstruct();
|
||||
/* 0:49 */waypoints[156].origin = (1264.88, -180.87, 1127.48);
|
||||
/* 0:49 */waypoints[156].type = "grenade";
|
||||
/* 0:49 */waypoints[156].children[0] = 18;
|
||||
/* 0:49 */waypoints[156].angles = (-11.1566, 165.8, 0);
|
||||
/* 0:49 */waypoints[157] = spawnstruct();
|
||||
/* 0:49 */waypoints[157].origin = (-983.039, -729.61, 989.775);
|
||||
/* 0:49 */waypoints[157].type = "javelin";
|
||||
/* 0:49 */waypoints[157].children[0] = 67;
|
||||
/* 0:49 */waypoints[157].jav_point = (1048.76, -807.204, 1065.4);
|
||||
/* 0:49 */waypoints[158] = spawnstruct();
|
||||
/* 0:49 */waypoints[158].origin = (-856.32, 56.3792, 1206.11);
|
||||
/* 0:49 */waypoints[158].type = "javelin";
|
||||
/* 0:49 */waypoints[158].children[0] = 69;
|
||||
/* 0:49 */waypoints[158].jav_point = (-769.586, 1406.5, 1228.47);
|
||||
/* 0:49 */waypoints[159] = spawnstruct();
|
||||
/* 0:49 */waypoints[159].origin = (-810.848, 332.539, 1212.41);
|
||||
/* 0:49 */waypoints[159].type = "javelin";
|
||||
/* 0:49 */waypoints[159].children[0] = 70;
|
||||
/* 0:49 */waypoints[159].jav_point = (644.542, 387.212, 1200.89);
|
||||
/* 0:49 */waypoints[160] = spawnstruct();
|
||||
/* 0:49 */waypoints[160].origin = (1283.43, -880.818, 1090.79);
|
||||
/* 0:49 */waypoints[160].type = "javelin";
|
||||
/* 0:49 */waypoints[160].children[0] = 16;
|
||||
/* 0:49 */waypoints[160].jav_point = (-703.084, -781.097, 972.478);
|
||||
/* 0:49 */waypoints[161] = spawnstruct();
|
||||
/* 0:49 */waypoints[161].origin = (1203.13, 879.109, 1175.7);
|
||||
/* 0:49 */waypoints[161].type = "javelin";
|
||||
/* 0:49 */waypoints[161].children[0] = 47;
|
||||
/* 0:49 */waypoints[161].jav_point = (-1499.23, 658.005, 929.185);
|
||||
/* 0:49 */waypoints[162] = spawnstruct();
|
||||
/* 0:49 */waypoints[162].origin = (-1396.45, 1035.16, 1176.09);
|
||||
/* 0:49 */waypoints[162].type = "javelin";
|
||||
/* 0:49 */waypoints[162].children[0] = 57;
|
||||
/* 0:49 */waypoints[162].jav_point = (-804.183, -806.834, 977.77);
|
||||
/* 0:49 */waypoints[163] = spawnstruct();
|
||||
/* 0:49 */waypoints[163].origin = (-323.379, -1030.92, 972.125);
|
||||
/* 0:49 */waypoints[163].type = "crouch";
|
||||
/* 0:49 */waypoints[163].children[0] = 164;
|
||||
/* 0:49 */waypoints[163].angles = (-14.502, 58.3596, 0);
|
||||
/* 0:49 */waypoints[164] = spawnstruct();
|
||||
/* 0:49 */waypoints[164].origin = (-318.608, -890.548, 976.824);
|
||||
/* 0:49 */waypoints[164].type = "stand";
|
||||
/* 0:49 */waypoints[164].children[0] = 163;
|
||||
/* 0:49 */waypoints[164].children[1] = 83;
|
||||
/* 0:49 */waypoints[164].children[2] = 165;
|
||||
/* 0:49 */waypoints[165] = spawnstruct();
|
||||
/* 0:49 */waypoints[165].origin = (-363.192, -1005.86, 972.03);
|
||||
/* 0:49 */waypoints[165].type = "claymore";
|
||||
/* 0:49 */waypoints[165].children[0] = 164;
|
||||
/* 0:49 */waypoints[165].angles = (2.59277, 25.3292, 0);
|
||||
/* 0:49 */waypoints[166] = spawnstruct();
|
||||
/* 0:49 */waypoints[166].origin = (-378.197, 154.576, 1212.07);
|
||||
/* 0:49 */waypoints[166].type = "stand";
|
||||
/* 0:49 */waypoints[166].children[0] = 7;
|
||||
/* 0:49 */waypoints[166].children[1] = 6;
|
||||
/* 0:49 */waypoints[167] = spawnstruct();
|
||||
/* 0:49 */waypoints[167].origin = (-241.125, 144.29, 1216.27);
|
||||
/* 0:49 */waypoints[167].type = "stand";
|
||||
/* 0:49 */waypoints[167].children[0] = 6;
|
||||
/* 0:49 */waypoints[167].children[1] = 7;
|
||||
/* 0:49 */return waypoints;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,839 +0,0 @@
|
||||
Parish()
|
||||
{
|
||||
/* 3:49 */waypoints = [];
|
||||
/* 3:49 */waypoints[0] = spawnstruct();
|
||||
/* 3:49 */waypoints[0].origin = (83.3, -263.3, 36.7031);
|
||||
/* 3:49 */waypoints[0].type = "stand";
|
||||
/* 3:49 */waypoints[0].children[0] = 1;
|
||||
/* 3:49 */waypoints[0].children[1] = 11;
|
||||
/* 3:49 */waypoints[0].children[2] = 13;
|
||||
/* 3:49 */waypoints[0].children[3] = 19;
|
||||
/* 3:49 */waypoints[1] = spawnstruct();
|
||||
/* 3:49 */waypoints[1].origin = (6.24595, -101.338, 40.6255);
|
||||
/* 3:49 */waypoints[1].type = "stand";
|
||||
/* 3:49 */waypoints[1].children[0] = 2;
|
||||
/* 3:49 */waypoints[1].children[1] = 0;
|
||||
/* 3:49 */waypoints[1].children[2] = 4;
|
||||
/* 3:49 */waypoints[1].children[3] = 11;
|
||||
/* 3:49 */waypoints[2] = spawnstruct();
|
||||
/* 3:49 */waypoints[2].origin = (124.596, 62.1494, 55.1206);
|
||||
/* 3:49 */waypoints[2].type = "stand";
|
||||
/* 3:49 */waypoints[2].children[0] = 1;
|
||||
/* 3:49 */waypoints[2].children[1] = 3;
|
||||
/* 3:49 */waypoints[2].children[2] = 4;
|
||||
/* 3:49 */waypoints[2].children[3] = 5;
|
||||
/* 3:49 */waypoints[3] = spawnstruct();
|
||||
/* 3:49 */waypoints[3].origin = (10.0827, 277.523, 49.6711);
|
||||
/* 3:49 */waypoints[3].type = "stand";
|
||||
/* 3:49 */waypoints[3].children[0] = 2;
|
||||
/* 3:49 */waypoints[3].children[1] = 4;
|
||||
/* 3:49 */waypoints[3].children[2] = 6;
|
||||
/* 3:49 */waypoints[3].children[3] = 7;
|
||||
/* 3:49 */waypoints[4] = spawnstruct();
|
||||
/* 3:49 */waypoints[4].origin = (-26.1515, 16.6435, 38.212);
|
||||
/* 3:49 */waypoints[4].type = "grenade";
|
||||
/* 3:49 */waypoints[4].children[0] = 1;
|
||||
/* 3:49 */waypoints[4].children[1] = 2;
|
||||
/* 3:49 */waypoints[4].children[2] = 3;
|
||||
/* 3:49 */waypoints[4].children[3] = 11;
|
||||
/* 3:49 */waypoints[4].angles = (0.109863, -144.711, 0);
|
||||
/* 3:49 */waypoints[5] = spawnstruct();
|
||||
/* 3:49 */waypoints[5].origin = (190.865, 118.79, 57.125);
|
||||
/* 3:49 */waypoints[5].type = "crouch";
|
||||
/* 3:49 */waypoints[5].children[0] = 2;
|
||||
/* 3:49 */waypoints[5].angles = (16.8311, -138.416, 0);
|
||||
/* 3:49 */waypoints[6] = spawnstruct();
|
||||
/* 3:49 */waypoints[6].origin = (27.3866, 392.437, 50.9104);
|
||||
/* 3:49 */waypoints[6].type = "stand";
|
||||
/* 3:49 */waypoints[6].children[0] = 3;
|
||||
/* 3:49 */waypoints[6].children[1] = 7;
|
||||
/* 3:49 */waypoints[7] = spawnstruct();
|
||||
/* 3:49 */waypoints[7].origin = (243.173, 396.9, 46.7352);
|
||||
/* 3:49 */waypoints[7].type = "stand";
|
||||
/* 3:49 */waypoints[7].children[0] = 6;
|
||||
/* 3:49 */waypoints[7].children[1] = 3;
|
||||
/* 3:49 */waypoints[7].children[2] = 8;
|
||||
/* 3:49 */waypoints[8] = spawnstruct();
|
||||
/* 3:49 */waypoints[8].origin = (421.838, 435.529, 47.8765);
|
||||
/* 3:49 */waypoints[8].type = "stand";
|
||||
/* 3:49 */waypoints[8].children[0] = 7;
|
||||
/* 3:49 */waypoints[8].children[1] = 9;
|
||||
/* 3:49 */waypoints[8].children[2] = 113;
|
||||
/* 3:49 */waypoints[9] = spawnstruct();
|
||||
/* 3:49 */waypoints[9].origin = (423.387, 220.475, 61.5503);
|
||||
/* 3:49 */waypoints[9].type = "claymore";
|
||||
/* 3:49 */waypoints[9].children[0] = 8;
|
||||
/* 3:49 */waypoints[9].children[1] = 10;
|
||||
/* 3:49 */waypoints[9].angles = (22.0001, -101.87, 0);
|
||||
/* 3:49 */waypoints[10] = spawnstruct();
|
||||
/* 3:49 */waypoints[10].origin = (329.542, -8.28352, 53.6053);
|
||||
/* 3:49 */waypoints[10].type = "stand";
|
||||
/* 3:49 */waypoints[10].children[0] = 9;
|
||||
/* 3:49 */waypoints[10].children[1] = 12;
|
||||
/* 3:49 */waypoints[11] = spawnstruct();
|
||||
/* 3:49 */waypoints[11].origin = (-119.115, -121.358, 26.7707);
|
||||
/* 3:49 */waypoints[11].type = "tube";
|
||||
/* 3:49 */waypoints[11].children[0] = 4;
|
||||
/* 3:49 */waypoints[11].children[1] = 1;
|
||||
/* 3:49 */waypoints[11].children[2] = 0;
|
||||
/* 3:49 */waypoints[11].children[3] = 14;
|
||||
/* 3:49 */waypoints[11].children[4] = 15;
|
||||
/* 3:49 */waypoints[11].angles = (8.3606, 31.3005, 0);
|
||||
/* 3:49 */waypoints[12] = spawnstruct();
|
||||
/* 3:49 */waypoints[12].origin = (292.663, -104.652, 56.8941);
|
||||
/* 3:49 */waypoints[12].type = "stand";
|
||||
/* 3:49 */waypoints[12].children[0] = 10;
|
||||
/* 3:49 */waypoints[12].children[1] = 13;
|
||||
/* 3:49 */waypoints[13] = spawnstruct();
|
||||
/* 3:49 */waypoints[13].origin = (169.2, -311.479, 49.3212);
|
||||
/* 3:49 */waypoints[13].type = "stand";
|
||||
/* 3:49 */waypoints[13].children[0] = 0;
|
||||
/* 3:49 */waypoints[13].children[1] = 12;
|
||||
/* 3:49 */waypoints[13].children[2] = 19;
|
||||
/* 3:49 */waypoints[14] = spawnstruct();
|
||||
/* 3:49 */waypoints[14].origin = (-367.997, -203.402, 3.83201);
|
||||
/* 3:49 */waypoints[14].type = "stand";
|
||||
/* 3:49 */waypoints[14].children[0] = 11;
|
||||
/* 3:49 */waypoints[14].children[1] = 15;
|
||||
/* 3:49 */waypoints[14].children[2] = 16;
|
||||
/* 3:49 */waypoints[15] = spawnstruct();
|
||||
/* 3:49 */waypoints[15].origin = (-449.905, -67.9018, 9.97889);
|
||||
/* 3:49 */waypoints[15].type = "stand";
|
||||
/* 3:49 */waypoints[15].children[0] = 14;
|
||||
/* 3:49 */waypoints[15].children[1] = 56;
|
||||
/* 3:49 */waypoints[15].children[2] = 11;
|
||||
/* 3:49 */waypoints[16] = spawnstruct();
|
||||
/* 3:49 */waypoints[16].origin = (-502.263, -346.458, 8.125);
|
||||
/* 3:49 */waypoints[16].type = "stand";
|
||||
/* 3:49 */waypoints[16].children[0] = 14;
|
||||
/* 3:49 */waypoints[16].children[1] = 17;
|
||||
/* 3:49 */waypoints[16].children[2] = 18;
|
||||
/* 3:49 */waypoints[17] = spawnstruct();
|
||||
/* 3:49 */waypoints[17].origin = (-715.367, -364.021, 8.32248);
|
||||
/* 3:49 */waypoints[17].type = "tube";
|
||||
/* 3:49 */waypoints[17].children[0] = 16;
|
||||
/* 3:49 */waypoints[17].children[1] = 20;
|
||||
/* 3:49 */waypoints[17].children[2] = 22;
|
||||
/* 3:49 */waypoints[17].children[3] = 56;
|
||||
/* 3:49 */waypoints[17].children[4] = 119;
|
||||
/* 3:49 */waypoints[17].angles = (7.37183, 4.70262, 0);
|
||||
/* 3:49 */waypoints[18] = spawnstruct();
|
||||
/* 3:49 */waypoints[18].origin = (-313.666, -374.295, 23.3823);
|
||||
/* 3:49 */waypoints[18].type = "stand";
|
||||
/* 3:49 */waypoints[18].children[0] = 16;
|
||||
/* 3:49 */waypoints[18].children[1] = 19;
|
||||
/* 3:49 */waypoints[19] = spawnstruct();
|
||||
/* 3:49 */waypoints[19].origin = (25.9467, -405.793, 42.1329);
|
||||
/* 3:49 */waypoints[19].type = "stand";
|
||||
/* 3:49 */waypoints[19].children[0] = 18;
|
||||
/* 3:49 */waypoints[19].children[1] = 13;
|
||||
/* 3:49 */waypoints[19].children[2] = 0;
|
||||
/* 3:49 */waypoints[20] = spawnstruct();
|
||||
/* 3:49 */waypoints[20].origin = (-868.175, -488.483, 27.8561);
|
||||
/* 3:49 */waypoints[20].type = "stand";
|
||||
/* 3:49 */waypoints[20].children[0] = 17;
|
||||
/* 3:49 */waypoints[20].children[1] = 21;
|
||||
/* 3:49 */waypoints[20].children[2] = 22;
|
||||
/* 3:49 */waypoints[20].children[3] = 24;
|
||||
/* 3:49 */waypoints[20].children[4] = 119;
|
||||
/* 3:49 */waypoints[21] = spawnstruct();
|
||||
/* 3:49 */waypoints[21].origin = (-1038.82, -364.595, 64.7561);
|
||||
/* 3:49 */waypoints[21].type = "stand";
|
||||
/* 3:49 */waypoints[21].children[0] = 20;
|
||||
/* 3:49 */waypoints[21].children[1] = 23;
|
||||
/* 3:49 */waypoints[22] = spawnstruct();
|
||||
/* 3:49 */waypoints[22].origin = (-765.168, -486.43, 19.7069);
|
||||
/* 3:49 */waypoints[22].type = "grenade";
|
||||
/* 3:49 */waypoints[22].children[0] = 20;
|
||||
/* 3:49 */waypoints[22].children[1] = 17;
|
||||
/* 3:49 */waypoints[22].angles = (-2.9718, 93.3348, 0);
|
||||
/* 3:49 */waypoints[23] = spawnstruct();
|
||||
/* 3:49 */waypoints[23].origin = (-1244.93, -196.869, 51.339);
|
||||
/* 3:49 */waypoints[23].type = "stand";
|
||||
/* 3:49 */waypoints[23].children[0] = 21;
|
||||
/* 3:49 */waypoints[23].children[1] = 28;
|
||||
/* 3:49 */waypoints[24] = spawnstruct();
|
||||
/* 3:49 */waypoints[24].origin = (-1202.03, -699.139, 75.0409);
|
||||
/* 3:49 */waypoints[24].type = "stand";
|
||||
/* 3:49 */waypoints[24].children[0] = 20;
|
||||
/* 3:49 */waypoints[24].children[1] = 25;
|
||||
/* 3:49 */waypoints[24].children[2] = 126;
|
||||
/* 3:49 */waypoints[25] = spawnstruct();
|
||||
/* 3:49 */waypoints[25].origin = (-1600, -373.511, 57.0323);
|
||||
/* 3:49 */waypoints[25].type = "stand";
|
||||
/* 3:49 */waypoints[25].children[0] = 24;
|
||||
/* 3:49 */waypoints[25].children[1] = 26;
|
||||
/* 3:49 */waypoints[25].children[2] = 27;
|
||||
/* 3:49 */waypoints[26] = spawnstruct();
|
||||
/* 3:49 */waypoints[26].origin = (-1484.19, -420.577, 61.6521);
|
||||
/* 3:49 */waypoints[26].type = "claymore";
|
||||
/* 3:49 */waypoints[26].children[0] = 25;
|
||||
/* 3:49 */waypoints[26].angles = (21.8903, 146.575, 0);
|
||||
/* 3:49 */waypoints[27] = spawnstruct();
|
||||
/* 3:49 */waypoints[27].origin = (-1668.55, -317.044, 45.6896);
|
||||
/* 3:49 */waypoints[27].type = "stand";
|
||||
/* 3:49 */waypoints[27].children[0] = 25;
|
||||
/* 3:49 */waypoints[27].children[1] = 28;
|
||||
/* 3:49 */waypoints[27].children[2] = 30;
|
||||
/* 3:49 */waypoints[28] = spawnstruct();
|
||||
/* 3:49 */waypoints[28].origin = (-1446.35, -22.1785, 29.7055);
|
||||
/* 3:49 */waypoints[28].type = "stand";
|
||||
/* 3:49 */waypoints[28].children[0] = 23;
|
||||
/* 3:49 */waypoints[28].children[1] = 27;
|
||||
/* 3:49 */waypoints[28].children[2] = 29;
|
||||
/* 3:49 */waypoints[29] = spawnstruct();
|
||||
/* 3:49 */waypoints[29].origin = (-1579.77, 334.136, 24.125);
|
||||
/* 3:49 */waypoints[29].type = "stand";
|
||||
/* 3:49 */waypoints[29].children[0] = 28;
|
||||
/* 3:49 */waypoints[29].children[1] = 52;
|
||||
/* 3:49 */waypoints[30] = spawnstruct();
|
||||
/* 3:49 */waypoints[30].origin = (-1870.7, -156.763, 8.125);
|
||||
/* 3:49 */waypoints[30].type = "stand";
|
||||
/* 3:49 */waypoints[30].children[0] = 27;
|
||||
/* 3:49 */waypoints[30].children[1] = 31;
|
||||
/* 3:49 */waypoints[30].children[2] = 32;
|
||||
/* 3:49 */waypoints[30].children[3] = 127;
|
||||
/* 3:49 */waypoints[31] = spawnstruct();
|
||||
/* 3:49 */waypoints[31].origin = (-2057.61, 118.546, 12.125);
|
||||
/* 3:49 */waypoints[31].type = "stand";
|
||||
/* 3:49 */waypoints[31].children[0] = 30;
|
||||
/* 3:49 */waypoints[31].children[1] = 34;
|
||||
/* 3:49 */waypoints[31].children[2] = 35;
|
||||
/* 3:49 */waypoints[31].children[3] = 51;
|
||||
/* 3:49 */waypoints[31].children[4] = 127;
|
||||
/* 3:49 */waypoints[32] = spawnstruct();
|
||||
/* 3:49 */waypoints[32].origin = (-2125.56, -90.3413, 12.125);
|
||||
/* 3:49 */waypoints[32].type = "stand";
|
||||
/* 3:49 */waypoints[32].children[0] = 30;
|
||||
/* 3:49 */waypoints[32].children[1] = 33;
|
||||
/* 3:49 */waypoints[32].children[2] = 34;
|
||||
/* 3:49 */waypoints[32].children[3] = 127;
|
||||
/* 3:49 */waypoints[33] = spawnstruct();
|
||||
/* 3:49 */waypoints[33].origin = (-2130.16, -143.889, 8.125);
|
||||
/* 3:49 */waypoints[33].type = "tube";
|
||||
/* 3:49 */waypoints[33].children[0] = 32;
|
||||
/* 3:49 */waypoints[33].angles = (0.521851, 80.5358, 0);
|
||||
/* 3:49 */waypoints[34] = spawnstruct();
|
||||
/* 3:49 */waypoints[34].origin = (-2314.92, -15.9946, 10.125);
|
||||
/* 3:49 */waypoints[34].type = "stand";
|
||||
/* 3:49 */waypoints[34].children[0] = 32;
|
||||
/* 3:49 */waypoints[34].children[1] = 31;
|
||||
/* 3:49 */waypoints[34].children[2] = 36;
|
||||
/* 3:49 */waypoints[34].children[3] = 51;
|
||||
/* 3:49 */waypoints[34].children[4] = 127;
|
||||
/* 3:49 */waypoints[35] = spawnstruct();
|
||||
/* 3:49 */waypoints[35].origin = (-2073.07, 231.331, 17.125);
|
||||
/* 3:49 */waypoints[35].type = "crouch";
|
||||
/* 3:49 */waypoints[35].children[0] = 31;
|
||||
/* 3:49 */waypoints[35].angles = (14.0515, -84.6821, 0);
|
||||
/* 3:49 */waypoints[36] = spawnstruct();
|
||||
/* 3:49 */waypoints[36].origin = (-2563.05, 15.8922, 10.125);
|
||||
/* 3:49 */waypoints[36].type = "stand";
|
||||
/* 3:49 */waypoints[36].children[0] = 34;
|
||||
/* 3:49 */waypoints[36].children[1] = 37;
|
||||
/* 3:49 */waypoints[36].children[2] = 38;
|
||||
/* 3:49 */waypoints[37] = spawnstruct();
|
||||
/* 3:49 */waypoints[37].origin = (-2759.1, 255.974, 16.8452);
|
||||
/* 3:49 */waypoints[37].type = "stand";
|
||||
/* 3:49 */waypoints[37].children[0] = 36;
|
||||
/* 3:49 */waypoints[37].children[1] = 38;
|
||||
/* 3:49 */waypoints[37].children[2] = 39;
|
||||
/* 3:49 */waypoints[38] = spawnstruct();
|
||||
/* 3:49 */waypoints[38].origin = (-2640.77, 267.319, 17.525);
|
||||
/* 3:49 */waypoints[38].type = "stand";
|
||||
/* 3:49 */waypoints[38].children[0] = 36;
|
||||
/* 3:49 */waypoints[38].children[1] = 37;
|
||||
/* 3:49 */waypoints[38].children[2] = 40;
|
||||
/* 3:49 */waypoints[39] = spawnstruct();
|
||||
/* 3:49 */waypoints[39].origin = (-2779.02, 460.644, 24.125);
|
||||
/* 3:49 */waypoints[39].type = "stand";
|
||||
/* 3:49 */waypoints[39].children[0] = 37;
|
||||
/* 3:49 */waypoints[39].children[1] = 40;
|
||||
/* 3:49 */waypoints[39].children[2] = 41;
|
||||
/* 3:49 */waypoints[40] = spawnstruct();
|
||||
/* 3:49 */waypoints[40].origin = (-2631.81, 469.515, 24.125);
|
||||
/* 3:49 */waypoints[40].type = "stand";
|
||||
/* 3:49 */waypoints[40].children[0] = 38;
|
||||
/* 3:49 */waypoints[40].children[1] = 39;
|
||||
/* 3:49 */waypoints[40].children[2] = 43;
|
||||
/* 3:49 */waypoints[41] = spawnstruct();
|
||||
/* 3:49 */waypoints[41].origin = (-2771.38, 655.312, 24.125);
|
||||
/* 3:49 */waypoints[41].type = "stand";
|
||||
/* 3:49 */waypoints[41].children[0] = 39;
|
||||
/* 3:49 */waypoints[41].children[1] = 42;
|
||||
/* 3:49 */waypoints[42] = spawnstruct();
|
||||
/* 3:49 */waypoints[42].origin = (-2566.46, 720.732, 24.125);
|
||||
/* 3:49 */waypoints[42].type = "claymore";
|
||||
/* 3:49 */waypoints[42].children[0] = 43;
|
||||
/* 3:49 */waypoints[42].children[1] = 41;
|
||||
/* 3:49 */waypoints[42].children[2] = 44;
|
||||
/* 3:49 */waypoints[42].angles = (13.612, 88.6931, 0);
|
||||
/* 3:49 */waypoints[43] = spawnstruct();
|
||||
/* 3:49 */waypoints[43].origin = (-2512.17, 532.353, 24.125);
|
||||
/* 3:49 */waypoints[43].type = "stand";
|
||||
/* 3:49 */waypoints[43].children[0] = 40;
|
||||
/* 3:49 */waypoints[43].children[1] = 42;
|
||||
/* 3:49 */waypoints[44] = spawnstruct();
|
||||
/* 3:49 */waypoints[44].origin = (-2536.95, 1103.16, 26.125);
|
||||
/* 3:49 */waypoints[44].type = "stand";
|
||||
/* 3:49 */waypoints[44].children[0] = 42;
|
||||
/* 3:49 */waypoints[44].children[1] = 45;
|
||||
/* 3:49 */waypoints[45] = spawnstruct();
|
||||
/* 3:49 */waypoints[45].origin = (-2394.61, 1097.79, 14.1367);
|
||||
/* 3:49 */waypoints[45].type = "stand";
|
||||
/* 3:49 */waypoints[45].children[0] = 44;
|
||||
/* 3:49 */waypoints[45].children[1] = 46;
|
||||
/* 3:49 */waypoints[45].children[2] = 47;
|
||||
/* 3:49 */waypoints[45].children[3] = 61;
|
||||
/* 3:49 */waypoints[45].children[4] = 130;
|
||||
/* 3:49 */waypoints[46] = spawnstruct();
|
||||
/* 3:49 */waypoints[46].origin = (-2377.8, 860.063, 15.4265);
|
||||
/* 3:49 */waypoints[46].type = "grenade";
|
||||
/* 3:49 */waypoints[46].children[0] = 45;
|
||||
/* 3:49 */waypoints[46].children[1] = 48;
|
||||
/* 3:49 */waypoints[46].angles = (2.395, -74.8878, 0);
|
||||
/* 3:49 */waypoints[47] = spawnstruct();
|
||||
/* 3:49 */waypoints[47].origin = (-2297.82, 1304.99, 9.41654);
|
||||
/* 3:49 */waypoints[47].type = "stand";
|
||||
/* 3:49 */waypoints[47].children[0] = 45;
|
||||
/* 3:49 */waypoints[47].children[1] = 61;
|
||||
/* 3:49 */waypoints[47].children[2] = 65;
|
||||
/* 3:49 */waypoints[47].children[3] = 121;
|
||||
/* 3:49 */waypoints[47].children[4] = 130;
|
||||
/* 3:49 */waypoints[48] = spawnstruct();
|
||||
/* 3:49 */waypoints[48].origin = (-2270.5, 664.278, 9.65681);
|
||||
/* 3:49 */waypoints[48].type = "stand";
|
||||
/* 3:49 */waypoints[48].children[0] = 46;
|
||||
/* 3:49 */waypoints[48].children[1] = 49;
|
||||
/* 3:49 */waypoints[48].children[2] = 50;
|
||||
/* 3:49 */waypoints[49] = spawnstruct();
|
||||
/* 3:49 */waypoints[49].origin = (-2188.44, 434.401, 13.7564);
|
||||
/* 3:49 */waypoints[49].type = "stand";
|
||||
/* 3:49 */waypoints[49].children[0] = 48;
|
||||
/* 3:49 */waypoints[49].children[1] = 50;
|
||||
/* 3:49 */waypoints[49].children[2] = 59;
|
||||
/* 3:49 */waypoints[49].children[3] = 51;
|
||||
/* 3:49 */waypoints[50] = spawnstruct();
|
||||
/* 3:49 */waypoints[50].origin = (-2189.28, 723.513, 10.3821);
|
||||
/* 3:49 */waypoints[50].type = "stand";
|
||||
/* 3:49 */waypoints[50].children[0] = 49;
|
||||
/* 3:49 */waypoints[50].children[1] = 60;
|
||||
/* 3:49 */waypoints[50].children[2] = 48;
|
||||
/* 3:49 */waypoints[50].children[3] = 120;
|
||||
/* 3:49 */waypoints[51] = spawnstruct();
|
||||
/* 3:49 */waypoints[51].origin = (-2174.75, 164.242, 9.37678);
|
||||
/* 3:49 */waypoints[51].type = "stand";
|
||||
/* 3:49 */waypoints[51].children[0] = 31;
|
||||
/* 3:49 */waypoints[51].children[1] = 59;
|
||||
/* 3:49 */waypoints[51].children[2] = 49;
|
||||
/* 3:49 */waypoints[51].children[3] = 34;
|
||||
/* 3:49 */waypoints[52] = spawnstruct();
|
||||
/* 3:49 */waypoints[52].origin = (-1598.84, 410.525, 24.125);
|
||||
/* 3:49 */waypoints[52].type = "stand";
|
||||
/* 3:49 */waypoints[52].children[0] = 29;
|
||||
/* 3:49 */waypoints[52].children[1] = 53;
|
||||
/* 3:49 */waypoints[52].children[2] = 54;
|
||||
/* 3:49 */waypoints[52].children[3] = 118;
|
||||
/* 3:49 */waypoints[53] = spawnstruct();
|
||||
/* 3:49 */waypoints[53].origin = (-1325.26, 455.02, 24.125);
|
||||
/* 3:49 */waypoints[53].type = "stand";
|
||||
/* 3:49 */waypoints[53].children[0] = 52;
|
||||
/* 3:49 */waypoints[53].children[1] = 58;
|
||||
/* 3:49 */waypoints[53].children[2] = 118;
|
||||
/* 3:49 */waypoints[54] = spawnstruct();
|
||||
/* 3:49 */waypoints[54].origin = (-1868.45, 442.005, 24.1244);
|
||||
/* 3:49 */waypoints[54].type = "stand";
|
||||
/* 3:49 */waypoints[54].children[0] = 52;
|
||||
/* 3:49 */waypoints[54].children[1] = 55;
|
||||
/* 3:49 */waypoints[54].children[2] = 59;
|
||||
/* 3:49 */waypoints[54].children[3] = 118;
|
||||
/* 3:49 */waypoints[55] = spawnstruct();
|
||||
/* 3:49 */waypoints[55].origin = (-1894.7, 406.863, 24.122);
|
||||
/* 3:49 */waypoints[55].type = "claymore";
|
||||
/* 3:49 */waypoints[55].children[0] = 54;
|
||||
/* 3:49 */waypoints[55].angles = (18.891, -176.38, 0);
|
||||
/* 3:49 */waypoints[56] = spawnstruct();
|
||||
/* 3:49 */waypoints[56].origin = (-776.722, -11.5725, 2.15489);
|
||||
/* 3:49 */waypoints[56].type = "stand";
|
||||
/* 3:49 */waypoints[56].children[0] = 15;
|
||||
/* 3:49 */waypoints[56].children[1] = 17;
|
||||
/* 3:49 */waypoints[56].children[2] = 57;
|
||||
/* 3:49 */waypoints[56].children[3] = 119;
|
||||
/* 3:49 */waypoints[57] = spawnstruct();
|
||||
/* 3:49 */waypoints[57].origin = (-960.767, 182.267, 16.125);
|
||||
/* 3:49 */waypoints[57].type = "stand";
|
||||
/* 3:49 */waypoints[57].children[0] = 56;
|
||||
/* 3:49 */waypoints[57].children[1] = 58;
|
||||
/* 3:49 */waypoints[58] = spawnstruct();
|
||||
/* 3:49 */waypoints[58].origin = (-990.533, 424.857, 24.125);
|
||||
/* 3:49 */waypoints[58].type = "stand";
|
||||
/* 3:49 */waypoints[58].children[0] = 57;
|
||||
/* 3:49 */waypoints[58].children[1] = 53;
|
||||
/* 3:49 */waypoints[58].children[2] = 125;
|
||||
/* 3:49 */waypoints[59] = spawnstruct();
|
||||
/* 3:49 */waypoints[59].origin = (-2077.94, 442.237, 19.3528);
|
||||
/* 3:49 */waypoints[59].type = "stand";
|
||||
/* 3:49 */waypoints[59].children[0] = 54;
|
||||
/* 3:49 */waypoints[59].children[1] = 51;
|
||||
/* 3:49 */waypoints[59].children[2] = 49;
|
||||
/* 3:49 */waypoints[59].children[3] = 120;
|
||||
/* 3:49 */waypoints[60] = spawnstruct();
|
||||
/* 3:49 */waypoints[60].origin = (-2156.75, 868.114, 10.8731);
|
||||
/* 3:49 */waypoints[60].type = "stand";
|
||||
/* 3:49 */waypoints[60].children[0] = 50;
|
||||
/* 3:49 */waypoints[60].children[1] = 61;
|
||||
/* 3:49 */waypoints[61] = spawnstruct();
|
||||
/* 3:49 */waypoints[61].origin = (-2172.92, 1120.89, 9.9517);
|
||||
/* 3:49 */waypoints[61].type = "stand";
|
||||
/* 3:49 */waypoints[61].children[0] = 60;
|
||||
/* 3:49 */waypoints[61].children[1] = 45;
|
||||
/* 3:49 */waypoints[61].children[2] = 47;
|
||||
/* 3:49 */waypoints[61].children[3] = 121;
|
||||
/* 3:49 */waypoints[62] = spawnstruct();
|
||||
/* 3:49 */waypoints[62].origin = (-2181.36, 1687.2, 2.68009);
|
||||
/* 3:49 */waypoints[62].type = "stand";
|
||||
/* 3:49 */waypoints[62].children[0] = 63;
|
||||
/* 3:49 */waypoints[62].children[1] = 64;
|
||||
/* 3:49 */waypoints[62].children[2] = 65;
|
||||
/* 3:49 */waypoints[62].children[3] = 66;
|
||||
/* 3:49 */waypoints[63] = spawnstruct();
|
||||
/* 3:49 */waypoints[63].origin = (-2038, 1724.23, 17.125);
|
||||
/* 3:49 */waypoints[63].type = "stand";
|
||||
/* 3:49 */waypoints[63].children[0] = 62;
|
||||
/* 3:49 */waypoints[63].children[1] = 66;
|
||||
/* 3:49 */waypoints[63].children[2] = 67;
|
||||
/* 3:49 */waypoints[63].children[3] = 65;
|
||||
/* 3:49 */waypoints[64] = spawnstruct();
|
||||
/* 3:49 */waypoints[64].origin = (-2240.69, 1638.35, 10.125);
|
||||
/* 3:49 */waypoints[64].type = "tube";
|
||||
/* 3:49 */waypoints[64].children[0] = 62;
|
||||
/* 3:49 */waypoints[64].children[1] = 65;
|
||||
/* 3:49 */waypoints[64].angles = (6.05894, 33.5747, 0);
|
||||
/* 3:49 */waypoints[65] = spawnstruct();
|
||||
/* 3:49 */waypoints[65].origin = (-2165.08, 1499.4, 10.5981);
|
||||
/* 3:49 */waypoints[65].type = "stand";
|
||||
/* 3:49 */waypoints[65].children[0] = 62;
|
||||
/* 3:49 */waypoints[65].children[1] = 66;
|
||||
/* 3:49 */waypoints[65].children[2] = 47;
|
||||
/* 3:49 */waypoints[65].children[3] = 64;
|
||||
/* 3:49 */waypoints[65].children[4] = 121;
|
||||
/* 3:49 */waypoints[65].children[5] = 63;
|
||||
/* 3:49 */waypoints[66] = spawnstruct();
|
||||
/* 3:49 */waypoints[66].origin = (-2015.58, 1460.33, 20.1742);
|
||||
/* 3:49 */waypoints[66].type = "stand";
|
||||
/* 3:49 */waypoints[66].children[0] = 63;
|
||||
/* 3:49 */waypoints[66].children[1] = 65;
|
||||
/* 3:49 */waypoints[66].children[2] = 62;
|
||||
/* 3:49 */waypoints[66].children[3] = 71;
|
||||
/* 3:49 */waypoints[66].children[4] = 122;
|
||||
/* 3:49 */waypoints[66].children[5] = 121;
|
||||
/* 3:49 */waypoints[67] = spawnstruct();
|
||||
/* 3:49 */waypoints[67].origin = (-1953.73, 1774.59, 25.0435);
|
||||
/* 3:49 */waypoints[67].type = "stand";
|
||||
/* 3:49 */waypoints[67].children[0] = 63;
|
||||
/* 3:49 */waypoints[67].children[1] = 68;
|
||||
/* 3:49 */waypoints[68] = spawnstruct();
|
||||
/* 3:49 */waypoints[68].origin = (-1793.13, 1766.31, 32.125);
|
||||
/* 3:49 */waypoints[68].type = "stand";
|
||||
/* 3:49 */waypoints[68].children[0] = 67;
|
||||
/* 3:49 */waypoints[68].children[1] = 69;
|
||||
/* 3:49 */waypoints[69] = spawnstruct();
|
||||
/* 3:49 */waypoints[69].origin = (-1518.16, 1676.31, 32.125);
|
||||
/* 3:49 */waypoints[69].type = "claymore";
|
||||
/* 3:49 */waypoints[69].children[0] = 68;
|
||||
/* 3:49 */waypoints[69].children[1] = 70;
|
||||
/* 3:49 */waypoints[69].children[2] = 83;
|
||||
/* 3:49 */waypoints[69].angles = (18.1604, -1.12011, 0);
|
||||
/* 3:49 */waypoints[70] = spawnstruct();
|
||||
/* 3:49 */waypoints[70].origin = (-1521.07, 1451.86, 32.125);
|
||||
/* 3:49 */waypoints[70].type = "stand";
|
||||
/* 3:49 */waypoints[70].children[0] = 69;
|
||||
/* 3:49 */waypoints[70].children[1] = 71;
|
||||
/* 3:49 */waypoints[70].children[2] = 73;
|
||||
/* 3:49 */waypoints[70].children[3] = 78;
|
||||
/* 3:49 */waypoints[71] = spawnstruct();
|
||||
/* 3:49 */waypoints[71].origin = (-1813.86, 1434.56, 32.125);
|
||||
/* 3:49 */waypoints[71].type = "stand";
|
||||
/* 3:49 */waypoints[71].children[0] = 70;
|
||||
/* 3:49 */waypoints[71].children[1] = 66;
|
||||
/* 3:49 */waypoints[71].children[2] = 72;
|
||||
/* 3:49 */waypoints[71].children[3] = 122;
|
||||
/* 3:49 */waypoints[72] = spawnstruct();
|
||||
/* 3:49 */waypoints[72].origin = (-1834.03, 1518.43, 32.125);
|
||||
/* 3:49 */waypoints[72].type = "crouch";
|
||||
/* 3:49 */waypoints[72].children[0] = 71;
|
||||
/* 3:49 */waypoints[72].angles = (13.4308, -71.905, 0);
|
||||
/* 3:49 */waypoints[73] = spawnstruct();
|
||||
/* 3:49 */waypoints[73].origin = (-1459.66, 1311.41, 32.125);
|
||||
/* 3:49 */waypoints[73].type = "stand";
|
||||
/* 3:49 */waypoints[73].children[0] = 70;
|
||||
/* 3:49 */waypoints[73].children[1] = 74;
|
||||
/* 3:49 */waypoints[73].children[2] = 75;
|
||||
/* 3:49 */waypoints[73].children[3] = 78;
|
||||
/* 3:49 */waypoints[74] = spawnstruct();
|
||||
/* 3:49 */waypoints[74].origin = (-1271.87, 1258.34, 29.8429);
|
||||
/* 3:49 */waypoints[74].type = "stand";
|
||||
/* 3:49 */waypoints[74].children[0] = 73;
|
||||
/* 3:49 */waypoints[74].children[1] = 75;
|
||||
/* 3:49 */waypoints[74].children[2] = 76;
|
||||
/* 3:49 */waypoints[74].children[3] = 77;
|
||||
/* 3:49 */waypoints[75] = spawnstruct();
|
||||
/* 3:49 */waypoints[75].origin = (-1474.67, 1253.53, 32.125);
|
||||
/* 3:49 */waypoints[75].type = "grenade";
|
||||
/* 3:49 */waypoints[75].children[0] = 73;
|
||||
/* 3:49 */waypoints[75].children[1] = 74;
|
||||
/* 3:49 */waypoints[75].angles = (-0.0879121, -6.43749, 0);
|
||||
/* 3:49 */waypoints[76] = spawnstruct();
|
||||
/* 3:49 */waypoints[76].origin = (-1101.63, 1396.14, 24.125);
|
||||
/* 3:49 */waypoints[76].type = "stand";
|
||||
/* 3:49 */waypoints[76].children[0] = 74;
|
||||
/* 3:49 */waypoints[76].children[1] = 77;
|
||||
/* 3:49 */waypoints[76].children[2] = 79;
|
||||
/* 3:49 */waypoints[76].children[3] = 80;
|
||||
/* 3:49 */waypoints[76].children[4] = 86;
|
||||
/* 3:49 */waypoints[77] = spawnstruct();
|
||||
/* 3:49 */waypoints[77].origin = (-1164.26, 1140.91, 24.125);
|
||||
/* 3:49 */waypoints[77].type = "stand";
|
||||
/* 3:49 */waypoints[77].children[0] = 76;
|
||||
/* 3:49 */waypoints[77].children[1] = 74;
|
||||
/* 3:49 */waypoints[77].children[2] = 88;
|
||||
/* 3:49 */waypoints[78] = spawnstruct();
|
||||
/* 3:49 */waypoints[78].origin = (-1345.24, 1449.26, 32.125);
|
||||
/* 3:49 */waypoints[78].type = "stand";
|
||||
/* 3:49 */waypoints[78].children[0] = 70;
|
||||
/* 3:49 */waypoints[78].children[1] = 73;
|
||||
/* 3:49 */waypoints[79] = spawnstruct();
|
||||
/* 3:49 */waypoints[79].origin = (-890.337, 1342.65, 22.698);
|
||||
/* 3:49 */waypoints[79].type = "stand";
|
||||
/* 3:49 */waypoints[79].children[0] = 76;
|
||||
/* 3:49 */waypoints[79].children[1] = 86;
|
||||
/* 3:49 */waypoints[79].children[2] = 87;
|
||||
/* 3:49 */waypoints[79].children[3] = 88;
|
||||
/* 3:49 */waypoints[80] = spawnstruct();
|
||||
/* 3:49 */waypoints[80].origin = (-1116.3, 1508.13, 24.125);
|
||||
/* 3:49 */waypoints[80].type = "crouch";
|
||||
/* 3:49 */waypoints[80].children[0] = 76;
|
||||
/* 3:49 */waypoints[80].angles = (9.70091, -81.4851, 0);
|
||||
/* 3:49 */waypoints[81] = spawnstruct();
|
||||
/* 3:49 */waypoints[81].origin = (-788.382, 1722.44, 19.5563);
|
||||
/* 3:49 */waypoints[81].type = "stand";
|
||||
/* 3:49 */waypoints[81].children[0] = 82;
|
||||
/* 3:49 */waypoints[81].children[1] = 85;
|
||||
/* 3:49 */waypoints[81].children[2] = 86;
|
||||
/* 3:49 */waypoints[81].children[3] = 123;
|
||||
/* 3:49 */waypoints[82] = spawnstruct();
|
||||
/* 3:49 */waypoints[82].origin = (-937.899, 1732.8, 32.125);
|
||||
/* 3:49 */waypoints[82].type = "stand";
|
||||
/* 3:49 */waypoints[82].children[0] = 81;
|
||||
/* 3:49 */waypoints[82].children[1] = 83;
|
||||
/* 3:49 */waypoints[83] = spawnstruct();
|
||||
/* 3:49 */waypoints[83].origin = (-1218.86, 1677.45, 32.125);
|
||||
/* 3:49 */waypoints[83].type = "stand";
|
||||
/* 3:49 */waypoints[83].children[0] = 82;
|
||||
/* 3:49 */waypoints[83].children[1] = 69;
|
||||
/* 3:49 */waypoints[83].children[2] = 84;
|
||||
/* 3:49 */waypoints[84] = spawnstruct();
|
||||
/* 3:49 */waypoints[84].origin = (-1145.89, 1639.22, 32.125);
|
||||
/* 3:49 */waypoints[84].type = "prone";
|
||||
/* 3:49 */waypoints[84].children[0] = 83;
|
||||
/* 3:49 */waypoints[85] = spawnstruct();
|
||||
/* 3:49 */waypoints[85].origin = (-680.351, 1602.04, 33.773);
|
||||
/* 3:49 */waypoints[85].type = "stand";
|
||||
/* 3:49 */waypoints[85].children[0] = 81;
|
||||
/* 3:49 */waypoints[85].children[1] = 86;
|
||||
/* 3:49 */waypoints[85].children[2] = 89;
|
||||
/* 3:49 */waypoints[86] = spawnstruct();
|
||||
/* 3:49 */waypoints[86].origin = (-801.226, 1474.06, 31.6764);
|
||||
/* 3:49 */waypoints[86].type = "grenade";
|
||||
/* 3:49 */waypoints[86].children[0] = 79;
|
||||
/* 3:49 */waypoints[86].children[1] = 76;
|
||||
/* 3:49 */waypoints[86].children[2] = 81;
|
||||
/* 3:49 */waypoints[86].children[3] = 85;
|
||||
/* 3:49 */waypoints[86].children[4] = 87;
|
||||
/* 3:49 */waypoints[86].angles = (2.99376, -93.1141, 0);
|
||||
/* 3:49 */waypoints[87] = spawnstruct();
|
||||
/* 3:49 */waypoints[87].origin = (-792.406, 1171.26, 19.8827);
|
||||
/* 3:49 */waypoints[87].type = "stand";
|
||||
/* 3:49 */waypoints[87].children[0] = 79;
|
||||
/* 3:49 */waypoints[87].children[1] = 88;
|
||||
/* 3:49 */waypoints[87].children[2] = 107;
|
||||
/* 3:49 */waypoints[87].children[3] = 86;
|
||||
/* 3:49 */waypoints[88] = spawnstruct();
|
||||
/* 3:49 */waypoints[88].origin = (-959.728, 1111.85, 24.125);
|
||||
/* 3:49 */waypoints[88].type = "stand";
|
||||
/* 3:49 */waypoints[88].children[0] = 77;
|
||||
/* 3:49 */waypoints[88].children[1] = 87;
|
||||
/* 3:49 */waypoints[88].children[2] = 79;
|
||||
/* 3:49 */waypoints[89] = spawnstruct();
|
||||
/* 3:49 */waypoints[89].origin = (-426.469, 1593.08, 34.2463);
|
||||
/* 3:49 */waypoints[89].type = "stand";
|
||||
/* 3:49 */waypoints[89].children[0] = 85;
|
||||
/* 3:49 */waypoints[89].children[1] = 90;
|
||||
/* 3:49 */waypoints[89].children[2] = 91;
|
||||
/* 3:49 */waypoints[90] = spawnstruct();
|
||||
/* 3:49 */waypoints[90].origin = (-455.329, 1448.15, 35.8226);
|
||||
/* 3:49 */waypoints[90].type = "stand";
|
||||
/* 3:49 */waypoints[90].children[0] = 89;
|
||||
/* 3:49 */waypoints[90].children[1] = 92;
|
||||
/* 3:49 */waypoints[91] = spawnstruct();
|
||||
/* 3:49 */waypoints[91].origin = (-110.373, 1604.2, 28.1652);
|
||||
/* 3:49 */waypoints[91].type = "stand";
|
||||
/* 3:49 */waypoints[91].children[0] = 89;
|
||||
/* 3:49 */waypoints[91].children[1] = 92;
|
||||
/* 3:49 */waypoints[91].children[2] = 93;
|
||||
/* 3:49 */waypoints[91].children[3] = 96;
|
||||
/* 3:49 */waypoints[92] = spawnstruct();
|
||||
/* 3:49 */waypoints[92].origin = (-198.446, 1354, 28.2534);
|
||||
/* 3:49 */waypoints[92].type = "stand";
|
||||
/* 3:49 */waypoints[92].children[0] = 91;
|
||||
/* 3:49 */waypoints[92].children[1] = 90;
|
||||
/* 3:49 */waypoints[92].children[2] = 95;
|
||||
/* 3:49 */waypoints[92].children[3] = 96;
|
||||
/* 3:49 */waypoints[93] = spawnstruct();
|
||||
/* 3:49 */waypoints[93].origin = (107.875, 1447.36, 39.823);
|
||||
/* 3:49 */waypoints[93].type = "stand";
|
||||
/* 3:49 */waypoints[93].children[0] = 91;
|
||||
/* 3:49 */waypoints[93].children[1] = 94;
|
||||
/* 3:49 */waypoints[93].children[2] = 96;
|
||||
/* 3:49 */waypoints[93].children[3] = 97;
|
||||
/* 3:49 */waypoints[94] = spawnstruct();
|
||||
/* 3:49 */waypoints[94].origin = (69.8314, 1526.39, 43.9659);
|
||||
/* 3:49 */waypoints[94].type = "tube";
|
||||
/* 3:49 */waypoints[94].children[0] = 93;
|
||||
/* 3:49 */waypoints[94].angles = (9.13511, -58.0842, 0);
|
||||
/* 3:49 */waypoints[95] = spawnstruct();
|
||||
/* 3:49 */waypoints[95].origin = (-262.92, 1140.4, 37.1966);
|
||||
/* 3:49 */waypoints[95].type = "claymore";
|
||||
/* 3:49 */waypoints[95].children[0] = 92;
|
||||
/* 3:49 */waypoints[95].children[1] = 103;
|
||||
/* 3:49 */waypoints[95].angles = (10.1239, 74.6636, 0);
|
||||
/* 3:49 */waypoints[96] = spawnstruct();
|
||||
/* 3:49 */waypoints[96].origin = (8.30629, 1455.26, 28.125);
|
||||
/* 3:49 */waypoints[96].type = "stand";
|
||||
/* 3:49 */waypoints[96].children[0] = 92;
|
||||
/* 3:49 */waypoints[96].children[1] = 91;
|
||||
/* 3:49 */waypoints[96].children[2] = 93;
|
||||
/* 3:49 */waypoints[96].children[3] = 97;
|
||||
/* 3:49 */waypoints[97] = spawnstruct();
|
||||
/* 3:49 */waypoints[97].origin = (188.663, 1304.13, 28.125);
|
||||
/* 3:49 */waypoints[97].type = "stand";
|
||||
/* 3:49 */waypoints[97].children[0] = 96;
|
||||
/* 3:49 */waypoints[97].children[1] = 93;
|
||||
/* 3:49 */waypoints[97].children[2] = 98;
|
||||
/* 3:49 */waypoints[97].children[3] = 99;
|
||||
/* 3:49 */waypoints[97].children[4] = 100;
|
||||
/* 3:49 */waypoints[97].children[5] = 116;
|
||||
/* 3:49 */waypoints[97].children[6] = 117;
|
||||
/* 3:49 */waypoints[98] = spawnstruct();
|
||||
/* 3:49 */waypoints[98].origin = (204.393, 1413.52, 42.1986);
|
||||
/* 3:49 */waypoints[98].type = "crouch";
|
||||
/* 3:49 */waypoints[98].children[0] = 97;
|
||||
/* 3:49 */waypoints[98].angles = (15.7379, -102.87, 0);
|
||||
/* 3:49 */waypoints[99] = spawnstruct();
|
||||
/* 3:49 */waypoints[99].origin = (71.0536, 1104.31, 28.125);
|
||||
/* 3:49 */waypoints[99].type = "stand";
|
||||
/* 3:49 */waypoints[99].children[0] = 97;
|
||||
/* 3:49 */waypoints[99].children[1] = 100;
|
||||
/* 3:49 */waypoints[99].children[2] = 101;
|
||||
/* 3:49 */waypoints[99].children[3] = 116;
|
||||
/* 3:49 */waypoints[100] = spawnstruct();
|
||||
/* 3:49 */waypoints[100].origin = (-22.9512, 1133.85, 28.3234);
|
||||
/* 3:49 */waypoints[100].type = "stand";
|
||||
/* 3:49 */waypoints[100].children[0] = 99;
|
||||
/* 3:49 */waypoints[100].children[1] = 97;
|
||||
/* 3:49 */waypoints[100].children[2] = 101;
|
||||
/* 3:49 */waypoints[100].children[3] = 102;
|
||||
/* 3:49 */waypoints[100].children[4] = 103;
|
||||
/* 3:49 */waypoints[101] = spawnstruct();
|
||||
/* 3:49 */waypoints[101].origin = (-107.305, 935.929, 28.125);
|
||||
/* 3:49 */waypoints[101].type = "stand";
|
||||
/* 3:49 */waypoints[101].children[0] = 99;
|
||||
/* 3:49 */waypoints[101].children[1] = 100;
|
||||
/* 3:49 */waypoints[101].children[2] = 102;
|
||||
/* 3:49 */waypoints[102] = spawnstruct();
|
||||
/* 3:49 */waypoints[102].origin = (-242.599, 924.234, 28.125);
|
||||
/* 3:49 */waypoints[102].type = "grenade";
|
||||
/* 3:49 */waypoints[102].children[0] = 101;
|
||||
/* 3:49 */waypoints[102].children[1] = 103;
|
||||
/* 3:49 */waypoints[102].children[2] = 100;
|
||||
/* 3:49 */waypoints[102].children[3] = 104;
|
||||
/* 3:49 */waypoints[102].angles = (3.30687, 33.2561, 0);
|
||||
/* 3:49 */waypoints[103] = spawnstruct();
|
||||
/* 3:49 */waypoints[103].origin = (-245.092, 1022.67, 28.1059);
|
||||
/* 3:49 */waypoints[103].type = "stand";
|
||||
/* 3:49 */waypoints[103].children[0] = 95;
|
||||
/* 3:49 */waypoints[103].children[1] = 102;
|
||||
/* 3:49 */waypoints[103].children[2] = 100;
|
||||
/* 3:49 */waypoints[103].children[3] = 104;
|
||||
/* 3:49 */waypoints[104] = spawnstruct();
|
||||
/* 3:49 */waypoints[104].origin = (-422.768, 881.347, 31.16);
|
||||
/* 3:49 */waypoints[104].type = "stand";
|
||||
/* 3:49 */waypoints[104].children[0] = 102;
|
||||
/* 3:49 */waypoints[104].children[1] = 103;
|
||||
/* 3:49 */waypoints[104].children[2] = 105;
|
||||
/* 3:49 */waypoints[105] = spawnstruct();
|
||||
/* 3:49 */waypoints[105].origin = (-544.494, 726.307, 28.0167);
|
||||
/* 3:49 */waypoints[105].type = "stand";
|
||||
/* 3:49 */waypoints[105].children[0] = 104;
|
||||
/* 3:49 */waypoints[105].children[1] = 106;
|
||||
/* 3:49 */waypoints[106] = spawnstruct();
|
||||
/* 3:49 */waypoints[106].origin = (-728.822, 716.552, 16.0795);
|
||||
/* 3:49 */waypoints[106].type = "stand";
|
||||
/* 3:49 */waypoints[106].children[0] = 105;
|
||||
/* 3:49 */waypoints[106].children[1] = 108;
|
||||
/* 3:49 */waypoints[106].children[2] = 109;
|
||||
/* 3:49 */waypoints[106].children[3] = 110;
|
||||
/* 3:49 */waypoints[106].children[4] = 112;
|
||||
/* 3:49 */waypoints[107] = spawnstruct();
|
||||
/* 3:49 */waypoints[107].origin = (-762.679, 1014.43, 16.1554);
|
||||
/* 3:49 */waypoints[107].type = "stand";
|
||||
/* 3:49 */waypoints[107].children[0] = 87;
|
||||
/* 3:49 */waypoints[107].children[1] = 108;
|
||||
/* 3:49 */waypoints[107].children[2] = 112;
|
||||
/* 3:49 */waypoints[108] = spawnstruct();
|
||||
/* 3:49 */waypoints[108].origin = (-764.321, 865.312, 16.2755);
|
||||
/* 3:49 */waypoints[108].type = "stand";
|
||||
/* 3:49 */waypoints[108].children[0] = 107;
|
||||
/* 3:49 */waypoints[108].children[1] = 106;
|
||||
/* 3:49 */waypoints[108].children[2] = 109;
|
||||
/* 3:49 */waypoints[109] = spawnstruct();
|
||||
/* 3:49 */waypoints[109].origin = (-804.21, 706.949, 17.625);
|
||||
/* 3:49 */waypoints[109].type = "tube";
|
||||
/* 3:49 */waypoints[109].children[0] = 108;
|
||||
/* 3:49 */waypoints[109].children[1] = 106;
|
||||
/* 3:49 */waypoints[109].children[2] = 110;
|
||||
/* 3:49 */waypoints[109].children[3] = 111;
|
||||
/* 3:49 */waypoints[109].angles = (-10.2228, -3.7019, 0);
|
||||
/* 3:49 */waypoints[110] = spawnstruct();
|
||||
/* 3:49 */waypoints[110].origin = (-713.567, 524.083, 18.0855);
|
||||
/* 3:49 */waypoints[110].type = "grenade";
|
||||
/* 3:49 */waypoints[110].children[0] = 106;
|
||||
/* 3:49 */waypoints[110].children[1] = 109;
|
||||
/* 3:49 */waypoints[110].children[2] = 111;
|
||||
/* 3:49 */waypoints[110].children[3] = 124;
|
||||
/* 3:49 */waypoints[110].angles = (-3.73537, 94.7137, 0);
|
||||
/* 3:49 */waypoints[111] = spawnstruct();
|
||||
/* 3:49 */waypoints[111].origin = (-770.9, 508.108, 20.7305);
|
||||
/* 3:49 */waypoints[111].type = "stand";
|
||||
/* 3:49 */waypoints[111].children[0] = 109;
|
||||
/* 3:49 */waypoints[111].children[1] = 110;
|
||||
/* 3:49 */waypoints[111].children[2] = 125;
|
||||
/* 3:49 */waypoints[112] = spawnstruct();
|
||||
/* 3:49 */waypoints[112].origin = (-710.679, 962.782, 18.7637);
|
||||
/* 3:49 */waypoints[112].type = "stand";
|
||||
/* 3:49 */waypoints[112].children[0] = 106;
|
||||
/* 3:49 */waypoints[112].children[1] = 107;
|
||||
/* 3:49 */waypoints[113] = spawnstruct();
|
||||
/* 3:49 */waypoints[113].origin = (415.79, 705.235, 28.125);
|
||||
/* 3:49 */waypoints[113].type = "stand";
|
||||
/* 3:49 */waypoints[113].children[0] = 8;
|
||||
/* 3:49 */waypoints[113].children[1] = 114;
|
||||
/* 3:49 */waypoints[113].children[2] = 128;
|
||||
/* 3:49 */waypoints[113].children[3] = 129;
|
||||
/* 3:49 */waypoints[114] = spawnstruct();
|
||||
/* 3:49 */waypoints[114].origin = (453.596, 987.182, 28.125);
|
||||
/* 3:49 */waypoints[114].type = "stand";
|
||||
/* 3:49 */waypoints[114].children[0] = 113;
|
||||
/* 3:49 */waypoints[114].children[1] = 115;
|
||||
/* 3:49 */waypoints[114].children[2] = 129;
|
||||
/* 3:49 */waypoints[115] = spawnstruct();
|
||||
/* 3:49 */waypoints[115].origin = (447.192, 1137.95, 32.7349);
|
||||
/* 3:49 */waypoints[115].type = "grenade";
|
||||
/* 3:49 */waypoints[115].children[0] = 114;
|
||||
/* 3:49 */waypoints[115].children[1] = 116;
|
||||
/* 3:49 */waypoints[115].children[2] = 117;
|
||||
/* 3:49 */waypoints[115].children[3] = 128;
|
||||
/* 3:49 */waypoints[115].angles = (-0.543845, 145.322, 0);
|
||||
/* 3:49 */waypoints[116] = spawnstruct();
|
||||
/* 3:49 */waypoints[116].origin = (324.901, 1250.45, 32.9527);
|
||||
/* 3:49 */waypoints[116].type = "stand";
|
||||
/* 3:49 */waypoints[116].children[0] = 115;
|
||||
/* 3:49 */waypoints[116].children[1] = 97;
|
||||
/* 3:49 */waypoints[116].children[2] = 99;
|
||||
/* 3:49 */waypoints[116].children[3] = 117;
|
||||
/* 3:49 */waypoints[117] = spawnstruct();
|
||||
/* 3:49 */waypoints[117].origin = (445.949, 1281.66, 45.5538);
|
||||
/* 3:49 */waypoints[117].type = "stand";
|
||||
/* 3:49 */waypoints[117].children[0] = 115;
|
||||
/* 3:49 */waypoints[117].children[1] = 116;
|
||||
/* 3:49 */waypoints[117].children[2] = 97;
|
||||
/* 3:49 */waypoints[118] = spawnstruct();
|
||||
/* 3:49 */waypoints[118].origin = (-1528.62, 457.334, 25.0833);
|
||||
/* 3:49 */waypoints[118].type = "grenade";
|
||||
/* 3:49 */waypoints[118].children[0] = 52;
|
||||
/* 3:49 */waypoints[118].children[1] = 53;
|
||||
/* 3:49 */waypoints[118].children[2] = 54;
|
||||
/* 3:49 */waypoints[118].angles = (2.97728, -177.484, 0);
|
||||
/* 3:49 */waypoints[119] = spawnstruct();
|
||||
/* 3:49 */waypoints[119].origin = (-806.064, -297.614, 40.3135);
|
||||
/* 3:49 */waypoints[119].type = "stand";
|
||||
/* 3:49 */waypoints[119].children[0] = 20;
|
||||
/* 3:49 */waypoints[119].children[1] = 56;
|
||||
/* 3:49 */waypoints[119].children[2] = 17;
|
||||
/* 3:49 */waypoints[120] = spawnstruct();
|
||||
/* 3:49 */waypoints[120].origin = (-2050.52, 694.888, 17.125);
|
||||
/* 3:49 */waypoints[120].type = "stand";
|
||||
/* 3:49 */waypoints[120].children[0] = 59;
|
||||
/* 3:49 */waypoints[120].children[1] = 50;
|
||||
/* 3:49 */waypoints[121] = spawnstruct();
|
||||
/* 3:49 */waypoints[121].origin = (-2159.46, 1391.21, 10.6483);
|
||||
/* 3:49 */waypoints[121].type = "javelin";
|
||||
/* 3:49 */waypoints[121].children[0] = 61;
|
||||
/* 3:49 */waypoints[121].children[1] = 47;
|
||||
/* 3:49 */waypoints[121].children[2] = 65;
|
||||
/* 3:49 */waypoints[121].children[3] = 122;
|
||||
/* 3:49 */waypoints[121].children[4] = 66;
|
||||
/* 3:49 */waypoints[121].jav_point = (-2197.56, -52.7354, 12.204);
|
||||
/* 3:49 */waypoints[122] = spawnstruct();
|
||||
/* 3:49 */waypoints[122].origin = (-2017.84, 1396.07, 19.8135);
|
||||
/* 3:49 */waypoints[122].type = "stand";
|
||||
/* 3:49 */waypoints[122].children[0] = 121;
|
||||
/* 3:49 */waypoints[122].children[1] = 66;
|
||||
/* 3:49 */waypoints[122].children[2] = 71;
|
||||
/* 3:49 */waypoints[123] = spawnstruct();
|
||||
/* 3:49 */waypoints[123].origin = (-730.019, 1721.85, 19.3312);
|
||||
/* 3:49 */waypoints[123].type = "javelin";
|
||||
/* 3:49 */waypoints[123].children[0] = 81;
|
||||
/* 3:49 */waypoints[123].jav_point = (-775.744, 443.408, 23.8349);
|
||||
/* 3:49 */waypoints[124] = spawnstruct();
|
||||
/* 3:49 */waypoints[124].origin = (-699.328, 465.741, 20.4144);
|
||||
/* 3:49 */waypoints[124].type = "stand";
|
||||
/* 3:49 */waypoints[124].children[0] = 110;
|
||||
/* 3:49 */waypoints[124].children[1] = 125;
|
||||
/* 3:49 */waypoints[125] = spawnstruct();
|
||||
/* 3:49 */waypoints[125].origin = (-791.382, 433.91, 24.3258);
|
||||
/* 3:49 */waypoints[125].type = "stand";
|
||||
/* 3:49 */waypoints[125].children[0] = 58;
|
||||
/* 3:49 */waypoints[125].children[1] = 111;
|
||||
/* 3:49 */waypoints[125].children[2] = 124;
|
||||
/* 3:49 */waypoints[126] = spawnstruct();
|
||||
/* 3:49 */waypoints[126].origin = (-1173.52, -743.64, 62.1116);
|
||||
/* 3:49 */waypoints[126].type = "javelin";
|
||||
/* 3:49 */waypoints[126].children[0] = 24;
|
||||
/* 3:49 */waypoints[126].jav_point = (-2098.69, 34.3682, 12.0556);
|
||||
/* 3:49 */waypoints[127] = spawnstruct();
|
||||
/* 3:49 */waypoints[127].origin = (-2109.03, 0.200698, 12.125);
|
||||
/* 3:49 */waypoints[127].type = "javelin";
|
||||
/* 3:49 */waypoints[127].children[0] = 34;
|
||||
/* 3:49 */waypoints[127].children[1] = 31;
|
||||
/* 3:49 */waypoints[127].children[2] = 30;
|
||||
/* 3:49 */waypoints[127].children[3] = 32;
|
||||
/* 3:49 */waypoints[127].jav_point = (-2225.76, 1550.06, 10.0026);
|
||||
/* 3:49 */waypoints[128] = spawnstruct();
|
||||
/* 3:49 */waypoints[128].origin = (391.799, 968.829, 28.1218);
|
||||
/* 3:49 */waypoints[128].type = "stand";
|
||||
/* 3:49 */waypoints[128].children[0] = 113;
|
||||
/* 3:49 */waypoints[128].children[1] = 115;
|
||||
/* 3:49 */waypoints[129] = spawnstruct();
|
||||
/* 3:49 */waypoints[129].origin = (489.625, 863.991, 28.3435);
|
||||
/* 3:49 */waypoints[129].type = "stand";
|
||||
/* 3:49 */waypoints[129].children[0] = 114;
|
||||
/* 3:49 */waypoints[129].children[1] = 113;
|
||||
/* 3:49 */waypoints[130] = spawnstruct();
|
||||
/* 3:49 */waypoints[130].origin = (-2376.68, 1325.59, 13.0978);
|
||||
/* 3:49 */waypoints[130].type = "tube";
|
||||
/* 3:49 */waypoints[130].children[0] = 47;
|
||||
/* 3:49 */waypoints[130].children[1] = 45;
|
||||
/* 3:49 */waypoints[130].angles = (-10.1843, -13.7713, 0);
|
||||
/* 3:49 */return waypoints;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,233 +0,0 @@
|
||||
TestMap()
|
||||
{
|
||||
waypoints = [];
|
||||
waypoints[0] = spawnstruct();
|
||||
waypoints[0].origin =(-1.01495, 490.006, -63.875);
|
||||
waypoints[0].type = "stand";
|
||||
waypoints[0].childCount = 5;
|
||||
waypoints[0].children[0] = 1;
|
||||
waypoints[0].children[1] = 14;
|
||||
waypoints[0].children[2] = 15;
|
||||
waypoints[0].children[3] = 13;
|
||||
waypoints[0].children[4] = 21;
|
||||
waypoints[1] = spawnstruct();
|
||||
waypoints[1].origin =(461.337, 489.549, -63.875);
|
||||
waypoints[1].type = "stand";
|
||||
waypoints[1].childCount = 6;
|
||||
waypoints[1].children[0] = 0;
|
||||
waypoints[1].children[1] = 2;
|
||||
waypoints[1].children[2] = 18;
|
||||
waypoints[1].children[3] = 18;
|
||||
waypoints[1].children[4] = 18;
|
||||
waypoints[1].children[5] = 20;
|
||||
waypoints[2] = spawnstruct();
|
||||
waypoints[2].origin =(655.728, 493.466, -63.875);
|
||||
waypoints[2].type = "stand";
|
||||
waypoints[2].childCount = 2;
|
||||
waypoints[2].children[0] = 1;
|
||||
waypoints[2].children[1] = 3;
|
||||
waypoints[3] = spawnstruct();
|
||||
waypoints[3].origin =(685.795, -23.2244, -63.875);
|
||||
waypoints[3].type = "stand";
|
||||
waypoints[3].childCount = 3;
|
||||
waypoints[3].children[0] = 2;
|
||||
waypoints[3].children[1] = 4;
|
||||
waypoints[3].children[2] = 18;
|
||||
waypoints[4] = spawnstruct();
|
||||
waypoints[4].origin =(685.753, -490.267, -63.875);
|
||||
waypoints[4].type = "stand";
|
||||
waypoints[4].childCount = 2;
|
||||
waypoints[4].children[0] = 3;
|
||||
waypoints[4].children[1] = 5;
|
||||
waypoints[5] = spawnstruct();
|
||||
waypoints[5].origin =(697.191, -603.442, -63.875);
|
||||
waypoints[5].type = "stand";
|
||||
waypoints[5].childCount = 2;
|
||||
waypoints[5].children[0] = 4;
|
||||
waypoints[5].children[1] = 7;
|
||||
waypoints[6] = spawnstruct();
|
||||
waypoints[6].origin =(-67.4587, -590.356, -63.875);
|
||||
waypoints[6].type = "stand";
|
||||
waypoints[6].childCount = 4;
|
||||
waypoints[6].children[0] = 7;
|
||||
waypoints[6].children[1] = 8;
|
||||
waypoints[6].children[2] = 16;
|
||||
waypoints[6].children[3] = 24;
|
||||
waypoints[7] = spawnstruct();
|
||||
waypoints[7].origin =(343.56, -587.272, -63.875);
|
||||
waypoints[7].type = "stand";
|
||||
waypoints[7].childCount = 3;
|
||||
waypoints[7].children[0] = 5;
|
||||
waypoints[7].children[1] = 6;
|
||||
waypoints[7].children[2] = 19;
|
||||
waypoints[8] = spawnstruct();
|
||||
waypoints[8].origin =(-572.202, -593.835, -63.875);
|
||||
waypoints[8].type = "stand";
|
||||
waypoints[8].childCount = 3;
|
||||
waypoints[8].children[0] = 6;
|
||||
waypoints[8].children[1] = 9;
|
||||
waypoints[8].children[2] = 16;
|
||||
waypoints[9] = spawnstruct();
|
||||
waypoints[9].origin =(-752.875, -591.781, -63.875);
|
||||
waypoints[9].type = "stand";
|
||||
waypoints[9].childCount = 2;
|
||||
waypoints[9].children[0] = 8;
|
||||
waypoints[9].children[1] = 10;
|
||||
waypoints[10] = spawnstruct();
|
||||
waypoints[10].origin =(-726.027, -323.589, -63.875);
|
||||
waypoints[10].type = "stand";
|
||||
waypoints[10].childCount = 3;
|
||||
waypoints[10].children[0] = 9;
|
||||
waypoints[10].children[1] = 11;
|
||||
waypoints[10].children[2] = 16;
|
||||
waypoints[11] = spawnstruct();
|
||||
waypoints[11].origin =(-720.13, 115.657, -63.875);
|
||||
waypoints[11].type = "stand";
|
||||
waypoints[11].childCount = 4;
|
||||
waypoints[11].children[0] = 10;
|
||||
waypoints[11].children[1] = 12;
|
||||
waypoints[11].children[2] = 16;
|
||||
waypoints[11].children[3] = 15;
|
||||
waypoints[12] = spawnstruct();
|
||||
waypoints[12].origin =(-721.257, 533.811, -63.875);
|
||||
waypoints[12].type = "stand";
|
||||
waypoints[12].childCount = 3;
|
||||
waypoints[12].children[0] = 11;
|
||||
waypoints[12].children[1] = 13;
|
||||
waypoints[12].children[2] = 27;
|
||||
waypoints[13] = spawnstruct();
|
||||
waypoints[13].origin =(-220.422, 593.421, -63.875);
|
||||
waypoints[13].type = "stand";
|
||||
waypoints[13].childCount = 4;
|
||||
waypoints[13].children[0] = 12;
|
||||
waypoints[13].children[1] = 14;
|
||||
waypoints[13].children[2] = 0;
|
||||
waypoints[13].children[3] = 15;
|
||||
waypoints[14] = spawnstruct();
|
||||
waypoints[14].origin =(-28.2908, 599.348, -63.875);
|
||||
waypoints[14].type = "stand";
|
||||
waypoints[14].childCount = 2;
|
||||
waypoints[14].children[0] = 0;
|
||||
waypoints[14].children[1] = 13;
|
||||
waypoints[15] = spawnstruct();
|
||||
waypoints[15].origin =(-258.609, 6.70396, -63.875);
|
||||
waypoints[15].type = "stand";
|
||||
waypoints[15].childCount = 7;
|
||||
waypoints[15].children[0] = 0;
|
||||
waypoints[15].children[1] = 16;
|
||||
waypoints[15].children[2] = 11;
|
||||
waypoints[15].children[3] = 13;
|
||||
waypoints[15].children[4] = 17;
|
||||
waypoints[15].children[5] = 23;
|
||||
waypoints[15].children[6] = 27;
|
||||
waypoints[16] = spawnstruct();
|
||||
waypoints[16].origin =(-467.668, -343.397, -63.875);
|
||||
waypoints[16].type = "stand";
|
||||
waypoints[16].childCount = 5;
|
||||
waypoints[16].children[0] = 15;
|
||||
waypoints[16].children[1] = 8;
|
||||
waypoints[16].children[2] = 11;
|
||||
waypoints[16].children[3] = 6;
|
||||
waypoints[16].children[4] = 10;
|
||||
waypoints[17] = spawnstruct();
|
||||
waypoints[17].origin =(99.6763, -61.88, -63.875);
|
||||
waypoints[17].type = "stand";
|
||||
waypoints[17].childCount = 6;
|
||||
waypoints[17].children[0] = 15;
|
||||
waypoints[17].children[1] = 18;
|
||||
waypoints[17].children[2] = 21;
|
||||
waypoints[17].children[3] = 22;
|
||||
waypoints[17].children[4] = 25;
|
||||
waypoints[17].children[5] = 25;
|
||||
waypoints[18] = spawnstruct();
|
||||
waypoints[18].origin =(439.094, -60.3452, -63.875);
|
||||
waypoints[18].type = "stand";
|
||||
waypoints[18].childCount = 7;
|
||||
waypoints[18].children[0] = 17;
|
||||
waypoints[18].children[1] = 3;
|
||||
waypoints[18].children[2] = 1;
|
||||
waypoints[18].children[3] = 1;
|
||||
waypoints[18].children[4] = 1;
|
||||
waypoints[18].children[5] = 19;
|
||||
waypoints[18].children[6] = 20;
|
||||
waypoints[19] = spawnstruct();
|
||||
waypoints[19].origin =(426.874, -327.668, -63.875);
|
||||
waypoints[19].type = "stand";
|
||||
waypoints[19].childCount = 2;
|
||||
waypoints[19].children[0] = 18;
|
||||
waypoints[19].children[1] = 7;
|
||||
waypoints[20] = spawnstruct();
|
||||
waypoints[20].origin =(383.704, 241.401, -63.875);
|
||||
waypoints[20].type = "stand";
|
||||
waypoints[20].childCount = 3;
|
||||
waypoints[20].children[0] = 18;
|
||||
waypoints[20].children[1] = 1;
|
||||
waypoints[20].children[2] = 22;
|
||||
waypoints[21] = spawnstruct();
|
||||
waypoints[21].origin =(119.403, 231.893, -63.875);
|
||||
waypoints[21].type = "stand";
|
||||
waypoints[21].childCount = 4;
|
||||
waypoints[21].children[0] = 17;
|
||||
waypoints[21].children[1] = 0;
|
||||
waypoints[21].children[2] = 22;
|
||||
waypoints[21].children[3] = 23;
|
||||
waypoints[22] = spawnstruct();
|
||||
waypoints[22].origin =(241.672, 173.537, -63.875);
|
||||
waypoints[22].type = "stand";
|
||||
waypoints[22].childCount = 4;
|
||||
waypoints[22].children[0] = 20;
|
||||
waypoints[22].children[1] = 17;
|
||||
waypoints[22].children[2] = 21;
|
||||
waypoints[22].children[3] = 26;
|
||||
waypoints[23] = spawnstruct();
|
||||
waypoints[23].origin =(7.42357, 184.274, -63.875);
|
||||
waypoints[23].type = "stand";
|
||||
waypoints[23].childCount = 2;
|
||||
waypoints[23].children[0] = 15;
|
||||
waypoints[23].children[1] = 21;
|
||||
waypoints[24] = spawnstruct();
|
||||
waypoints[24].origin =(-90.5587, -297.083, -63.875);
|
||||
waypoints[24].type = "stand";
|
||||
waypoints[24].childCount = 2;
|
||||
waypoints[24].children[0] = 25;
|
||||
waypoints[24].children[1] = 6;
|
||||
waypoints[25] = spawnstruct();
|
||||
waypoints[25].origin =(12.887, -197.818, -63.875);
|
||||
waypoints[25].type = "stand";
|
||||
waypoints[25].childCount = 4;
|
||||
waypoints[25].children[0] = 17;
|
||||
waypoints[25].children[1] = 17;
|
||||
waypoints[25].children[2] = 24;
|
||||
waypoints[25].children[3] = 28;
|
||||
waypoints[26] = spawnstruct();
|
||||
waypoints[26].origin =(257.245, 479.599, -63.875);
|
||||
waypoints[26].type = "stand";
|
||||
waypoints[26].childCount = 1;
|
||||
waypoints[26].children[0] = 22;
|
||||
waypoints[27] = spawnstruct();
|
||||
waypoints[27].origin =(-434.592, 275.541, -63.875);
|
||||
waypoints[27].type = "stand";
|
||||
waypoints[27].childCount = 3;
|
||||
waypoints[27].children[0] = 12;
|
||||
waypoints[27].children[1] = 15;
|
||||
waypoints[27].children[2] = 30;
|
||||
waypoints[28] = spawnstruct();
|
||||
waypoints[28].origin =(-318.531, -100.442, -63.875);
|
||||
waypoints[28].type = "stand";
|
||||
waypoints[28].childCount = 2;
|
||||
waypoints[28].children[0] = 25;
|
||||
waypoints[28].children[1] = 29;
|
||||
waypoints[29] = spawnstruct();
|
||||
waypoints[29].origin =(-397, 14.8198, -63.875);
|
||||
waypoints[29].type = "stand";
|
||||
waypoints[29].childCount = 2;
|
||||
waypoints[29].children[0] = 28;
|
||||
waypoints[29].children[1] = 30;
|
||||
waypoints[30] = spawnstruct();
|
||||
waypoints[30].origin =(-404.831, 63.7778, -63.875);
|
||||
waypoints[30].type = "stand";
|
||||
waypoints[30].childCount = 2;
|
||||
waypoints[30].children[0] = 29;
|
||||
waypoints[30].children[1] = 27;
|
||||
return waypoints;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,733 +0,0 @@
|
||||
Vortex()
|
||||
{
|
||||
/* 28:04 */waypoints = [];
|
||||
/* 28:04 */waypoints[0] = spawnstruct();
|
||||
/* 28:04 */waypoints[0].origin = (-1730.81, -771.368, 194.125);
|
||||
/* 28:04 */waypoints[0].type = "stand";
|
||||
/* 28:04 */waypoints[0].children[0] = 1;
|
||||
/* 28:04 */waypoints[0].children[1] = 37;
|
||||
/* 28:04 */waypoints[1] = spawnstruct();
|
||||
/* 28:04 */waypoints[1].origin = (-1465.62, -765.605, 195.097);
|
||||
/* 28:04 */waypoints[1].type = "stand";
|
||||
/* 28:04 */waypoints[1].children[0] = 0;
|
||||
/* 28:04 */waypoints[1].children[1] = 2;
|
||||
/* 28:04 */waypoints[1].children[2] = 36;
|
||||
/* 28:04 */waypoints[2] = spawnstruct();
|
||||
/* 28:04 */waypoints[2].origin = (-1226.5, -797.268, 194.723);
|
||||
/* 28:04 */waypoints[2].type = "stand";
|
||||
/* 28:04 */waypoints[2].children[0] = 1;
|
||||
/* 28:04 */waypoints[2].children[1] = 3;
|
||||
/* 28:04 */waypoints[2].children[2] = 42;
|
||||
/* 28:04 */waypoints[2].children[3] = 83;
|
||||
/* 28:04 */waypoints[3] = spawnstruct();
|
||||
/* 28:04 */waypoints[3].origin = (-836.713, -823.165, 190.177);
|
||||
/* 28:04 */waypoints[3].type = "stand";
|
||||
/* 28:04 */waypoints[3].children[0] = 2;
|
||||
/* 28:04 */waypoints[3].children[1] = 4;
|
||||
/* 28:04 */waypoints[3].children[2] = 118;
|
||||
/* 28:04 */waypoints[4] = spawnstruct();
|
||||
/* 28:04 */waypoints[4].origin = (-489.922, -823.969, 151.995);
|
||||
/* 28:04 */waypoints[4].type = "stand";
|
||||
/* 28:04 */waypoints[4].children[0] = 3;
|
||||
/* 28:04 */waypoints[4].children[1] = 5;
|
||||
/* 28:04 */waypoints[4].children[2] = 102;
|
||||
/* 28:04 */waypoints[4].children[3] = 103;
|
||||
/* 28:04 */waypoints[4].children[4] = 119;
|
||||
/* 28:04 */waypoints[5] = spawnstruct();
|
||||
/* 28:04 */waypoints[5].origin = (-197.366, -1005.42, 175.474);
|
||||
/* 28:04 */waypoints[5].type = "stand";
|
||||
/* 28:04 */waypoints[5].children[0] = 4;
|
||||
/* 28:04 */waypoints[5].children[1] = 6;
|
||||
/* 28:04 */waypoints[5].children[2] = 102;
|
||||
/* 28:04 */waypoints[5].children[3] = 108;
|
||||
/* 28:04 */waypoints[6] = spawnstruct();
|
||||
/* 28:04 */waypoints[6].origin = (-285.914, -1434.01, 192.125);
|
||||
/* 28:04 */waypoints[6].type = "stand";
|
||||
/* 28:04 */waypoints[6].children[0] = 5;
|
||||
/* 28:04 */waypoints[6].children[1] = 7;
|
||||
/* 28:04 */waypoints[7] = spawnstruct();
|
||||
/* 28:04 */waypoints[7].origin = (-38.89, -1527.8, 190.351);
|
||||
/* 28:04 */waypoints[7].type = "stand";
|
||||
/* 28:04 */waypoints[7].children[0] = 6;
|
||||
/* 28:04 */waypoints[7].children[1] = 8;
|
||||
/* 28:04 */waypoints[8] = spawnstruct();
|
||||
/* 28:04 */waypoints[8].origin = (175.516, -1516.26, 189.357);
|
||||
/* 28:04 */waypoints[8].type = "stand";
|
||||
/* 28:04 */waypoints[8].children[0] = 7;
|
||||
/* 28:04 */waypoints[8].children[1] = 9;
|
||||
/* 28:04 */waypoints[8].children[2] = 117;
|
||||
/* 28:04 */waypoints[9] = spawnstruct();
|
||||
/* 28:04 */waypoints[9].origin = (430.269, -1479.88, 192.125);
|
||||
/* 28:04 */waypoints[9].type = "stand";
|
||||
/* 28:04 */waypoints[9].children[0] = 8;
|
||||
/* 28:04 */waypoints[9].children[1] = 10;
|
||||
/* 28:04 */waypoints[9].children[2] = 115;
|
||||
/* 28:04 */waypoints[10] = spawnstruct();
|
||||
/* 28:04 */waypoints[10].origin = (722.386, -1563.78, 186.125);
|
||||
/* 28:04 */waypoints[10].type = "stand";
|
||||
/* 28:04 */waypoints[10].children[0] = 9;
|
||||
/* 28:04 */waypoints[10].children[1] = 11;
|
||||
/* 28:04 */waypoints[11] = spawnstruct();
|
||||
/* 28:04 */waypoints[11].origin = (748.665, -1077.02, 191.793);
|
||||
/* 28:04 */waypoints[11].type = "stand";
|
||||
/* 28:04 */waypoints[11].children[0] = 10;
|
||||
/* 28:04 */waypoints[11].children[1] = 12;
|
||||
/* 28:04 */waypoints[11].children[2] = 114;
|
||||
/* 28:04 */waypoints[11].children[3] = 113;
|
||||
/* 28:04 */waypoints[12] = spawnstruct();
|
||||
/* 28:04 */waypoints[12].origin = (1132.41, -962.472, 221.661);
|
||||
/* 28:04 */waypoints[12].type = "stand";
|
||||
/* 28:04 */waypoints[12].children[0] = 11;
|
||||
/* 28:04 */waypoints[12].children[1] = 13;
|
||||
/* 28:04 */waypoints[12].children[2] = 57;
|
||||
/* 28:04 */waypoints[13] = spawnstruct();
|
||||
/* 28:04 */waypoints[13].origin = (1355.58, -669.995, 212.789);
|
||||
/* 28:04 */waypoints[13].type = "stand";
|
||||
/* 28:04 */waypoints[13].children[0] = 12;
|
||||
/* 28:04 */waypoints[13].children[1] = 14;
|
||||
/* 28:04 */waypoints[13].children[2] = 58;
|
||||
/* 28:04 */waypoints[14] = spawnstruct();
|
||||
/* 28:04 */waypoints[14].origin = (1339.67, -157.447, 216.62);
|
||||
/* 28:04 */waypoints[14].type = "stand";
|
||||
/* 28:04 */waypoints[14].children[0] = 13;
|
||||
/* 28:04 */waypoints[14].children[1] = 15;
|
||||
/* 28:04 */waypoints[14].children[2] = 60;
|
||||
/* 28:04 */waypoints[15] = spawnstruct();
|
||||
/* 28:04 */waypoints[15].origin = (1334.28, 219.811, 256.257);
|
||||
/* 28:04 */waypoints[15].type = "stand";
|
||||
/* 28:04 */waypoints[15].children[0] = 14;
|
||||
/* 28:04 */waypoints[15].children[1] = 16;
|
||||
/* 28:04 */waypoints[15].children[2] = 65;
|
||||
/* 28:04 */waypoints[16] = spawnstruct();
|
||||
/* 28:04 */waypoints[16].origin = (1332.17, 736.354, 206.719);
|
||||
/* 28:04 */waypoints[16].type = "stand";
|
||||
/* 28:04 */waypoints[16].children[0] = 15;
|
||||
/* 28:04 */waypoints[16].children[1] = 17;
|
||||
/* 28:04 */waypoints[17] = spawnstruct();
|
||||
/* 28:04 */waypoints[17].origin = (1343.56, 1175.49, 234.409);
|
||||
/* 28:04 */waypoints[17].type = "stand";
|
||||
/* 28:04 */waypoints[17].children[0] = 16;
|
||||
/* 28:04 */waypoints[17].children[1] = 18;
|
||||
/* 28:04 */waypoints[18] = spawnstruct();
|
||||
/* 28:04 */waypoints[18].origin = (1110.87, 1159.57, 236.725);
|
||||
/* 28:04 */waypoints[18].type = "stand";
|
||||
/* 28:04 */waypoints[18].children[0] = 17;
|
||||
/* 28:04 */waypoints[18].children[1] = 19;
|
||||
/* 28:04 */waypoints[19] = spawnstruct();
|
||||
/* 28:04 */waypoints[19].origin = (933.249, 1131.95, 209.12);
|
||||
/* 28:04 */waypoints[19].type = "stand";
|
||||
/* 28:04 */waypoints[19].children[0] = 18;
|
||||
/* 28:04 */waypoints[19].children[1] = 20;
|
||||
/* 28:04 */waypoints[19].children[2] = 64;
|
||||
/* 28:04 */waypoints[20] = spawnstruct();
|
||||
/* 28:04 */waypoints[20].origin = (627.137, 1199.76, 158.361);
|
||||
/* 28:04 */waypoints[20].type = "stand";
|
||||
/* 28:04 */waypoints[20].children[0] = 19;
|
||||
/* 28:04 */waypoints[20].children[1] = 21;
|
||||
/* 28:04 */waypoints[21] = spawnstruct();
|
||||
/* 28:04 */waypoints[21].origin = (435.699, 1216.78, 125.935);
|
||||
/* 28:04 */waypoints[21].type = "stand";
|
||||
/* 28:04 */waypoints[21].children[0] = 20;
|
||||
/* 28:04 */waypoints[21].children[1] = 22;
|
||||
/* 28:04 */waypoints[21].children[2] = 49;
|
||||
/* 28:04 */waypoints[21].children[3] = 50;
|
||||
/* 28:04 */waypoints[22] = spawnstruct();
|
||||
/* 28:04 */waypoints[22].origin = (91.6435, 1296.2, 90.6976);
|
||||
/* 28:04 */waypoints[22].type = "stand";
|
||||
/* 28:04 */waypoints[22].children[0] = 21;
|
||||
/* 28:04 */waypoints[22].children[1] = 23;
|
||||
/* 28:04 */waypoints[22].children[2] = 54;
|
||||
/* 28:04 */waypoints[23] = spawnstruct();
|
||||
/* 28:04 */waypoints[23].origin = (-185.476, 1082.79, 59.5487);
|
||||
/* 28:04 */waypoints[23].type = "stand";
|
||||
/* 28:04 */waypoints[23].children[0] = 22;
|
||||
/* 28:04 */waypoints[23].children[1] = 24;
|
||||
/* 28:04 */waypoints[23].children[2] = 49;
|
||||
/* 28:04 */waypoints[24] = spawnstruct();
|
||||
/* 28:04 */waypoints[24].origin = (-370.385, 1050.25, 73.8404);
|
||||
/* 28:04 */waypoints[24].type = "stand";
|
||||
/* 28:04 */waypoints[24].children[0] = 23;
|
||||
/* 28:04 */waypoints[24].children[1] = 25;
|
||||
/* 28:04 */waypoints[24].children[2] = 48;
|
||||
/* 28:04 */waypoints[25] = spawnstruct();
|
||||
/* 28:04 */waypoints[25].origin = (-414.223, 1378.33, 64.144);
|
||||
/* 28:04 */waypoints[25].type = "stand";
|
||||
/* 28:04 */waypoints[25].children[0] = 24;
|
||||
/* 28:04 */waypoints[25].children[1] = 26;
|
||||
/* 28:04 */waypoints[25].children[2] = 97;
|
||||
/* 28:04 */waypoints[26] = spawnstruct();
|
||||
/* 28:04 */waypoints[26].origin = (-462.581, 1505.78, 76.4644);
|
||||
/* 28:04 */waypoints[26].type = "stand";
|
||||
/* 28:04 */waypoints[26].children[0] = 25;
|
||||
/* 28:04 */waypoints[26].children[1] = 27;
|
||||
/* 28:04 */waypoints[27] = spawnstruct();
|
||||
/* 28:04 */waypoints[27].origin = (-1022.99, 1348.14, 164.802);
|
||||
/* 28:04 */waypoints[27].type = "stand";
|
||||
/* 28:04 */waypoints[27].children[0] = 26;
|
||||
/* 28:04 */waypoints[27].children[1] = 28;
|
||||
/* 28:04 */waypoints[27].children[2] = 93;
|
||||
/* 28:04 */waypoints[28] = spawnstruct();
|
||||
/* 28:04 */waypoints[28].origin = (-1210.3, 1240.65, 205.321);
|
||||
/* 28:04 */waypoints[28].type = "stand";
|
||||
/* 28:04 */waypoints[28].children[0] = 27;
|
||||
/* 28:04 */waypoints[28].children[1] = 29;
|
||||
/* 28:04 */waypoints[29] = spawnstruct();
|
||||
/* 28:04 */waypoints[29].origin = (-1376.22, 858.575, 209.762);
|
||||
/* 28:04 */waypoints[29].type = "stand";
|
||||
/* 28:04 */waypoints[29].children[0] = 28;
|
||||
/* 28:04 */waypoints[29].children[1] = 30;
|
||||
/* 28:04 */waypoints[29].children[2] = 92;
|
||||
/* 28:04 */waypoints[30] = spawnstruct();
|
||||
/* 28:04 */waypoints[30].origin = (-1265.2, 702.327, 207.092);
|
||||
/* 28:04 */waypoints[30].type = "stand";
|
||||
/* 28:04 */waypoints[30].children[0] = 29;
|
||||
/* 28:04 */waypoints[30].children[1] = 31;
|
||||
/* 28:04 */waypoints[30].children[2] = 90;
|
||||
/* 28:04 */waypoints[31] = spawnstruct();
|
||||
/* 28:04 */waypoints[31].origin = (-1401.56, 488.719, 206.017);
|
||||
/* 28:04 */waypoints[31].type = "stand";
|
||||
/* 28:04 */waypoints[31].children[0] = 30;
|
||||
/* 28:04 */waypoints[31].children[1] = 32;
|
||||
/* 28:04 */waypoints[31].children[2] = 41;
|
||||
/* 28:04 */waypoints[31].children[3] = 89;
|
||||
/* 28:04 */waypoints[32] = spawnstruct();
|
||||
/* 28:04 */waypoints[32].origin = (-1407.82, 294.196, 202.929);
|
||||
/* 28:04 */waypoints[32].type = "stand";
|
||||
/* 28:04 */waypoints[32].children[0] = 31;
|
||||
/* 28:04 */waypoints[32].children[1] = 33;
|
||||
/* 28:04 */waypoints[32].children[2] = 40;
|
||||
/* 28:04 */waypoints[33] = spawnstruct();
|
||||
/* 28:04 */waypoints[33].origin = (-1419.83, 108.047, 201.425);
|
||||
/* 28:04 */waypoints[33].type = "stand";
|
||||
/* 28:04 */waypoints[33].children[0] = 32;
|
||||
/* 28:04 */waypoints[33].children[1] = 34;
|
||||
/* 28:04 */waypoints[33].children[2] = 85;
|
||||
/* 28:04 */waypoints[34] = spawnstruct();
|
||||
/* 28:04 */waypoints[34].origin = (-1470.9, -199.9, 194.125);
|
||||
/* 28:04 */waypoints[34].type = "stand";
|
||||
/* 28:04 */waypoints[34].children[0] = 33;
|
||||
/* 28:04 */waypoints[34].children[1] = 35;
|
||||
/* 28:04 */waypoints[34].children[2] = 84;
|
||||
/* 28:04 */waypoints[35] = spawnstruct();
|
||||
/* 28:04 */waypoints[35].origin = (-1463.97, -407.874, 194.125);
|
||||
/* 28:04 */waypoints[35].type = "stand";
|
||||
/* 28:04 */waypoints[35].children[0] = 34;
|
||||
/* 28:04 */waypoints[35].children[1] = 36;
|
||||
/* 28:04 */waypoints[35].children[2] = 39;
|
||||
/* 28:04 */waypoints[36] = spawnstruct();
|
||||
/* 28:04 */waypoints[36].origin = (-1455.11, -619.481, 194.125);
|
||||
/* 28:04 */waypoints[36].type = "stand";
|
||||
/* 28:04 */waypoints[36].children[0] = 35;
|
||||
/* 28:04 */waypoints[36].children[1] = 1;
|
||||
/* 28:04 */waypoints[36].children[2] = 83;
|
||||
/* 28:04 */waypoints[37] = spawnstruct();
|
||||
/* 28:04 */waypoints[37].origin = (-1723.89, -614.348, 243.125);
|
||||
/* 28:04 */waypoints[37].type = "stand";
|
||||
/* 28:04 */waypoints[37].children[0] = 0;
|
||||
/* 28:04 */waypoints[37].children[1] = 38;
|
||||
/* 28:04 */waypoints[38] = spawnstruct();
|
||||
/* 28:04 */waypoints[38].origin = (-1584.16, -618.363, 243.125);
|
||||
/* 28:04 */waypoints[38].type = "stand";
|
||||
/* 28:04 */waypoints[38].children[0] = 37;
|
||||
/* 28:04 */waypoints[38].children[1] = 39;
|
||||
/* 28:04 */waypoints[39] = spawnstruct();
|
||||
/* 28:04 */waypoints[39].origin = (-1594.78, -392.368, 243.125);
|
||||
/* 28:04 */waypoints[39].type = "stand";
|
||||
/* 28:04 */waypoints[39].children[0] = 38;
|
||||
/* 28:04 */waypoints[39].children[1] = 35;
|
||||
/* 28:04 */waypoints[40] = spawnstruct();
|
||||
/* 28:04 */waypoints[40].origin = (-1615.93, 309.455, 198.246);
|
||||
/* 28:04 */waypoints[40].type = "stand";
|
||||
/* 28:04 */waypoints[40].children[0] = 32;
|
||||
/* 28:04 */waypoints[40].children[1] = 41;
|
||||
/* 28:04 */waypoints[41] = spawnstruct();
|
||||
/* 28:04 */waypoints[41].origin = (-1596.73, 508.067, 209.58);
|
||||
/* 28:04 */waypoints[41].type = "stand";
|
||||
/* 28:04 */waypoints[41].children[0] = 40;
|
||||
/* 28:04 */waypoints[41].children[1] = 31;
|
||||
/* 28:04 */waypoints[42] = spawnstruct();
|
||||
/* 28:04 */waypoints[42].origin = (-1059.95, -626.632, 190.821);
|
||||
/* 28:04 */waypoints[42].type = "stand";
|
||||
/* 28:04 */waypoints[42].children[0] = 2;
|
||||
/* 28:04 */waypoints[42].children[1] = 43;
|
||||
/* 28:04 */waypoints[42].children[2] = 49;
|
||||
/* 28:04 */waypoints[42].children[3] = 118;
|
||||
/* 28:04 */waypoints[42].children[4] = 83;
|
||||
/* 28:04 */waypoints[43] = spawnstruct();
|
||||
/* 28:04 */waypoints[43].origin = (-945.491, -537.049, 192.263);
|
||||
/* 28:04 */waypoints[43].type = "stand";
|
||||
/* 28:04 */waypoints[43].children[0] = 42;
|
||||
/* 28:04 */waypoints[43].children[1] = 44;
|
||||
/* 28:04 */waypoints[43].children[2] = 81;
|
||||
/* 28:04 */waypoints[43].children[3] = 118;
|
||||
/* 28:04 */waypoints[44] = spawnstruct();
|
||||
/* 28:04 */waypoints[44].origin = (-815.795, -307.574, 158.086);
|
||||
/* 28:04 */waypoints[44].type = "stand";
|
||||
/* 28:04 */waypoints[44].children[0] = 43;
|
||||
/* 28:04 */waypoints[44].children[1] = 45;
|
||||
/* 28:04 */waypoints[44].children[2] = 80;
|
||||
/* 28:04 */waypoints[45] = spawnstruct();
|
||||
/* 28:04 */waypoints[45].origin = (-549.969, -339.196, 95.4707);
|
||||
/* 28:04 */waypoints[45].type = "stand";
|
||||
/* 28:04 */waypoints[45].children[0] = 44;
|
||||
/* 28:04 */waypoints[45].children[1] = 46;
|
||||
/* 28:04 */waypoints[45].children[2] = 103;
|
||||
/* 28:04 */waypoints[46] = spawnstruct();
|
||||
/* 28:04 */waypoints[46].origin = (-575.371, -0.84052, 63.6581);
|
||||
/* 28:04 */waypoints[46].type = "stand";
|
||||
/* 28:04 */waypoints[46].children[0] = 45;
|
||||
/* 28:04 */waypoints[46].children[1] = 47;
|
||||
/* 28:04 */waypoints[47] = spawnstruct();
|
||||
/* 28:04 */waypoints[47].origin = (-557.684, 331.253, 63.3202);
|
||||
/* 28:04 */waypoints[47].type = "stand";
|
||||
/* 28:04 */waypoints[47].children[0] = 46;
|
||||
/* 28:04 */waypoints[47].children[1] = 48;
|
||||
/* 28:04 */waypoints[48] = spawnstruct();
|
||||
/* 28:04 */waypoints[48].origin = (-514.225, 748.482, 66.2022);
|
||||
/* 28:04 */waypoints[48].type = "stand";
|
||||
/* 28:04 */waypoints[48].children[0] = 47;
|
||||
/* 28:04 */waypoints[48].children[1] = 24;
|
||||
/* 28:04 */waypoints[48].children[2] = 95;
|
||||
/* 28:04 */waypoints[49] = spawnstruct();
|
||||
/* 28:04 */waypoints[49].origin = (141.523, 1008.39, 87.2986);
|
||||
/* 28:04 */waypoints[49].type = "stand";
|
||||
/* 28:04 */waypoints[49].children[0] = 23;
|
||||
/* 28:04 */waypoints[49].children[1] = 50;
|
||||
/* 28:04 */waypoints[49].children[2] = 21;
|
||||
/* 28:04 */waypoints[49].children[3] = 42;
|
||||
/* 28:04 */waypoints[50] = spawnstruct();
|
||||
/* 28:04 */waypoints[50].origin = (393.726, 850.082, 67.3285);
|
||||
/* 28:04 */waypoints[50].type = "stand";
|
||||
/* 28:04 */waypoints[50].children[0] = 49;
|
||||
/* 28:04 */waypoints[50].children[1] = 51;
|
||||
/* 28:04 */waypoints[50].children[2] = 21;
|
||||
/* 28:04 */waypoints[51] = spawnstruct();
|
||||
/* 28:04 */waypoints[51].origin = (502.592, 510.5, 76.5033);
|
||||
/* 28:04 */waypoints[51].type = "stand";
|
||||
/* 28:04 */waypoints[51].children[0] = 50;
|
||||
/* 28:04 */waypoints[51].children[1] = 52;
|
||||
/* 28:04 */waypoints[52] = spawnstruct();
|
||||
/* 28:04 */waypoints[52].origin = (442.419, 248.661, 90.77);
|
||||
/* 28:04 */waypoints[52].type = "stand";
|
||||
/* 28:04 */waypoints[52].children[0] = 51;
|
||||
/* 28:04 */waypoints[52].children[1] = 53;
|
||||
/* 28:04 */waypoints[52].children[2] = 112;
|
||||
/* 28:04 */waypoints[52].children[3] = 62;
|
||||
/* 28:04 */waypoints[53] = spawnstruct();
|
||||
/* 28:04 */waypoints[53].origin = (513.532, -61.5609, 86.9343);
|
||||
/* 28:04 */waypoints[53].type = "stand";
|
||||
/* 28:04 */waypoints[53].children[0] = 52;
|
||||
/* 28:04 */waypoints[53].children[1] = 54;
|
||||
/* 28:04 */waypoints[54] = spawnstruct();
|
||||
/* 28:04 */waypoints[54].origin = (535.921, -393.138, 55.8518);
|
||||
/* 28:04 */waypoints[54].type = "stand";
|
||||
/* 28:04 */waypoints[54].children[0] = 53;
|
||||
/* 28:04 */waypoints[54].children[1] = 55;
|
||||
/* 28:04 */waypoints[54].children[2] = 61;
|
||||
/* 28:04 */waypoints[54].children[3] = 22;
|
||||
/* 28:04 */waypoints[55] = spawnstruct();
|
||||
/* 28:04 */waypoints[55].origin = (510.2, -667.495, 79.5995);
|
||||
/* 28:04 */waypoints[55].type = "stand";
|
||||
/* 28:04 */waypoints[55].children[0] = 54;
|
||||
/* 28:04 */waypoints[55].children[1] = 56;
|
||||
/* 28:04 */waypoints[55].children[2] = 66;
|
||||
/* 28:04 */waypoints[55].children[3] = 113;
|
||||
/* 28:04 */waypoints[56] = spawnstruct();
|
||||
/* 28:04 */waypoints[56].origin = (826.05, -683.707, 100.242);
|
||||
/* 28:04 */waypoints[56].type = "stand";
|
||||
/* 28:04 */waypoints[56].children[0] = 55;
|
||||
/* 28:04 */waypoints[56].children[1] = 57;
|
||||
/* 28:04 */waypoints[57] = spawnstruct();
|
||||
/* 28:04 */waypoints[57].origin = (1115.79, -661.361, 163.465);
|
||||
/* 28:04 */waypoints[57].type = "stand";
|
||||
/* 28:04 */waypoints[57].children[0] = 56;
|
||||
/* 28:04 */waypoints[57].children[1] = 58;
|
||||
/* 28:04 */waypoints[57].children[2] = 59;
|
||||
/* 28:04 */waypoints[57].children[3] = 12;
|
||||
/* 28:04 */waypoints[58] = spawnstruct();
|
||||
/* 28:04 */waypoints[58].origin = (1295.07, -661.726, 206.742);
|
||||
/* 28:04 */waypoints[58].type = "stand";
|
||||
/* 28:04 */waypoints[58].children[0] = 57;
|
||||
/* 28:04 */waypoints[58].children[1] = 13;
|
||||
/* 28:04 */waypoints[58].children[2] = 59;
|
||||
/* 28:04 */waypoints[59] = spawnstruct();
|
||||
/* 28:04 */waypoints[59].origin = (1159.35, -505.068, 209.065);
|
||||
/* 28:04 */waypoints[59].type = "stand";
|
||||
/* 28:04 */waypoints[59].children[0] = 58;
|
||||
/* 28:04 */waypoints[59].children[1] = 60;
|
||||
/* 28:04 */waypoints[59].children[2] = 57;
|
||||
/* 28:04 */waypoints[60] = spawnstruct();
|
||||
/* 28:04 */waypoints[60].origin = (1025.69, -223.266, 234.618);
|
||||
/* 28:04 */waypoints[60].type = "stand";
|
||||
/* 28:04 */waypoints[60].children[0] = 59;
|
||||
/* 28:04 */waypoints[60].children[1] = 61;
|
||||
/* 28:04 */waypoints[60].children[2] = 65;
|
||||
/* 28:04 */waypoints[60].children[3] = 14;
|
||||
/* 28:04 */waypoints[61] = spawnstruct();
|
||||
/* 28:04 */waypoints[61].origin = (800.923, -97.2423, 226.177);
|
||||
/* 28:04 */waypoints[61].type = "stand";
|
||||
/* 28:04 */waypoints[61].children[0] = 60;
|
||||
/* 28:04 */waypoints[61].children[1] = 62;
|
||||
/* 28:04 */waypoints[61].children[2] = 54;
|
||||
/* 28:04 */waypoints[62] = spawnstruct();
|
||||
/* 28:04 */waypoints[62].origin = (905.151, 198.797, 241.67);
|
||||
/* 28:04 */waypoints[62].type = "stand";
|
||||
/* 28:04 */waypoints[62].children[0] = 61;
|
||||
/* 28:04 */waypoints[62].children[1] = 63;
|
||||
/* 28:04 */waypoints[62].children[2] = 65;
|
||||
/* 28:04 */waypoints[62].children[3] = 52;
|
||||
/* 28:04 */waypoints[63] = spawnstruct();
|
||||
/* 28:04 */waypoints[63].origin = (953.121, 400.916, 216.731);
|
||||
/* 28:04 */waypoints[63].type = "stand";
|
||||
/* 28:04 */waypoints[63].children[0] = 62;
|
||||
/* 28:04 */waypoints[63].children[1] = 64;
|
||||
/* 28:04 */waypoints[64] = spawnstruct();
|
||||
/* 28:04 */waypoints[64].origin = (931.513, 775.873, 181.697);
|
||||
/* 28:04 */waypoints[64].type = "stand";
|
||||
/* 28:04 */waypoints[64].children[0] = 63;
|
||||
/* 28:04 */waypoints[64].children[1] = 19;
|
||||
/* 28:04 */waypoints[65] = spawnstruct();
|
||||
/* 28:04 */waypoints[65].origin = (1161.31, 212.522, 258.887);
|
||||
/* 28:04 */waypoints[65].type = "stand";
|
||||
/* 28:04 */waypoints[65].children[0] = 62;
|
||||
/* 28:04 */waypoints[65].children[1] = 15;
|
||||
/* 28:04 */waypoints[65].children[2] = 60;
|
||||
/* 28:04 */waypoints[66] = spawnstruct();
|
||||
/* 28:04 */waypoints[66].origin = (220.215, -635.53, 163.96);
|
||||
/* 28:04 */waypoints[66].type = "stand";
|
||||
/* 28:04 */waypoints[66].children[0] = 55;
|
||||
/* 28:04 */waypoints[66].children[1] = 67;
|
||||
/* 28:04 */waypoints[66].children[2] = 101;
|
||||
/* 28:04 */waypoints[66].children[3] = 105;
|
||||
/* 28:04 */waypoints[66].children[4] = 113;
|
||||
/* 28:04 */waypoints[67] = spawnstruct();
|
||||
/* 28:04 */waypoints[67].origin = (251.326, -275.353, 187.594);
|
||||
/* 28:04 */waypoints[67].type = "stand";
|
||||
/* 28:04 */waypoints[67].children[0] = 66;
|
||||
/* 28:04 */waypoints[67].children[1] = 68;
|
||||
/* 28:04 */waypoints[67].children[2] = 98;
|
||||
/* 28:04 */waypoints[68] = spawnstruct();
|
||||
/* 28:04 */waypoints[68].origin = (222.973, -34.2557, 202.665);
|
||||
/* 28:04 */waypoints[68].type = "stand";
|
||||
/* 28:04 */waypoints[68].children[0] = 67;
|
||||
/* 28:04 */waypoints[68].children[1] = 69;
|
||||
/* 28:04 */waypoints[68].children[2] = 98;
|
||||
/* 28:04 */waypoints[68].children[3] = 112;
|
||||
/* 28:04 */waypoints[69] = spawnstruct();
|
||||
/* 28:04 */waypoints[69].origin = (177.865, 247.034, 202.833);
|
||||
/* 28:04 */waypoints[69].type = "stand";
|
||||
/* 28:04 */waypoints[69].children[0] = 68;
|
||||
/* 28:04 */waypoints[69].children[1] = 70;
|
||||
/* 28:04 */waypoints[69].children[2] = 110;
|
||||
/* 28:04 */waypoints[69].children[3] = 112;
|
||||
/* 28:04 */waypoints[70] = spawnstruct();
|
||||
/* 28:04 */waypoints[70].origin = (35.685, 417.705, 232.201);
|
||||
/* 28:04 */waypoints[70].type = "stand";
|
||||
/* 28:04 */waypoints[70].children[0] = 69;
|
||||
/* 28:04 */waypoints[70].children[1] = 71;
|
||||
/* 28:04 */waypoints[70].children[2] = 74;
|
||||
/* 28:04 */waypoints[70].children[3] = 110;
|
||||
/* 28:04 */waypoints[71] = spawnstruct();
|
||||
/* 28:04 */waypoints[71].origin = (142.337, 604.915, 207.526);
|
||||
/* 28:04 */waypoints[71].type = "stand";
|
||||
/* 28:04 */waypoints[71].children[0] = 70;
|
||||
/* 28:04 */waypoints[71].children[1] = 72;
|
||||
/* 28:04 */waypoints[71].children[2] = 111;
|
||||
/* 28:04 */waypoints[72] = spawnstruct();
|
||||
/* 28:04 */waypoints[72].origin = (-29.011, 744.275, 206.666);
|
||||
/* 28:04 */waypoints[72].type = "stand";
|
||||
/* 28:04 */waypoints[72].children[0] = 71;
|
||||
/* 28:04 */waypoints[72].children[1] = 73;
|
||||
/* 28:04 */waypoints[73] = spawnstruct();
|
||||
/* 28:04 */waypoints[73].origin = (-220.318, 676.46, 171.433);
|
||||
/* 28:04 */waypoints[73].type = "stand";
|
||||
/* 28:04 */waypoints[73].children[0] = 72;
|
||||
/* 28:04 */waypoints[73].children[1] = 74;
|
||||
/* 28:04 */waypoints[74] = spawnstruct();
|
||||
/* 28:04 */waypoints[74].origin = (-243.281, 368.306, 199.79);
|
||||
/* 28:04 */waypoints[74].type = "stand";
|
||||
/* 28:04 */waypoints[74].children[0] = 73;
|
||||
/* 28:04 */waypoints[74].children[1] = 75;
|
||||
/* 28:04 */waypoints[74].children[2] = 70;
|
||||
/* 28:04 */waypoints[74].children[3] = 109;
|
||||
/* 28:04 */waypoints[75] = spawnstruct();
|
||||
/* 28:04 */waypoints[75].origin = (-365.975, 378.263, 176.125);
|
||||
/* 28:04 */waypoints[75].type = "stand";
|
||||
/* 28:04 */waypoints[75].children[0] = 74;
|
||||
/* 28:04 */waypoints[75].children[1] = 76;
|
||||
/* 28:04 */waypoints[76] = spawnstruct();
|
||||
/* 28:04 */waypoints[76].origin = (-684.313, 412.401, 171.384);
|
||||
/* 28:04 */waypoints[76].type = "stand";
|
||||
/* 28:04 */waypoints[76].children[0] = 75;
|
||||
/* 28:04 */waypoints[76].children[1] = 77;
|
||||
/* 28:04 */waypoints[76].children[2] = 96;
|
||||
/* 28:04 */waypoints[77] = spawnstruct();
|
||||
/* 28:04 */waypoints[77].origin = (-843.299, 431.691, 171.05);
|
||||
/* 28:04 */waypoints[77].type = "stand";
|
||||
/* 28:04 */waypoints[77].children[0] = 76;
|
||||
/* 28:04 */waypoints[77].children[1] = 78;
|
||||
/* 28:04 */waypoints[77].children[2] = 96;
|
||||
/* 28:04 */waypoints[78] = spawnstruct();
|
||||
/* 28:04 */waypoints[78].origin = (-829.711, 156.264, 148.125);
|
||||
/* 28:04 */waypoints[78].type = "stand";
|
||||
/* 28:04 */waypoints[78].children[0] = 77;
|
||||
/* 28:04 */waypoints[78].children[1] = 79;
|
||||
/* 28:04 */waypoints[79] = spawnstruct();
|
||||
/* 28:04 */waypoints[79].origin = (-880.708, 73.911, 148.125);
|
||||
/* 28:04 */waypoints[79].type = "stand";
|
||||
/* 28:04 */waypoints[79].children[0] = 78;
|
||||
/* 28:04 */waypoints[79].children[1] = 80;
|
||||
/* 28:04 */waypoints[79].children[2] = 87;
|
||||
/* 28:04 */waypoints[80] = spawnstruct();
|
||||
/* 28:04 */waypoints[80].origin = (-856.563, -76.3138, 148.125);
|
||||
/* 28:04 */waypoints[80].type = "stand";
|
||||
/* 28:04 */waypoints[80].children[0] = 79;
|
||||
/* 28:04 */waypoints[80].children[1] = 44;
|
||||
/* 28:04 */waypoints[80].children[2] = 87;
|
||||
/* 28:04 */waypoints[81] = spawnstruct();
|
||||
/* 28:04 */waypoints[81].origin = (-1045.89, -405.966, 210.125);
|
||||
/* 28:04 */waypoints[81].type = "stand";
|
||||
/* 28:04 */waypoints[81].children[0] = 43;
|
||||
/* 28:04 */waypoints[81].children[1] = 82;
|
||||
/* 28:04 */waypoints[82] = spawnstruct();
|
||||
/* 28:04 */waypoints[82].origin = (-1280.35, -354.045, 194.125);
|
||||
/* 28:04 */waypoints[82].type = "stand";
|
||||
/* 28:04 */waypoints[82].children[0] = 81;
|
||||
/* 28:04 */waypoints[82].children[1] = 83;
|
||||
/* 28:04 */waypoints[82].children[2] = 84;
|
||||
/* 28:04 */waypoints[83] = spawnstruct();
|
||||
/* 28:04 */waypoints[83].origin = (-1248.64, -570.616, 194.014);
|
||||
/* 28:04 */waypoints[83].type = "stand";
|
||||
/* 28:04 */waypoints[83].children[0] = 82;
|
||||
/* 28:04 */waypoints[83].children[1] = 2;
|
||||
/* 28:04 */waypoints[83].children[2] = 36;
|
||||
/* 28:04 */waypoints[83].children[3] = 42;
|
||||
/* 28:04 */waypoints[84] = spawnstruct();
|
||||
/* 28:04 */waypoints[84].origin = (-1272.71, -185.402, 215.178);
|
||||
/* 28:04 */waypoints[84].type = "stand";
|
||||
/* 28:04 */waypoints[84].children[0] = 82;
|
||||
/* 28:04 */waypoints[84].children[1] = 34;
|
||||
/* 28:04 */waypoints[84].children[2] = 85;
|
||||
/* 28:04 */waypoints[85] = spawnstruct();
|
||||
/* 28:04 */waypoints[85].origin = (-1263.19, 26.47, 222.415);
|
||||
/* 28:04 */waypoints[85].type = "stand";
|
||||
/* 28:04 */waypoints[85].children[0] = 84;
|
||||
/* 28:04 */waypoints[85].children[1] = 86;
|
||||
/* 28:04 */waypoints[85].children[2] = 33;
|
||||
/* 28:04 */waypoints[85].children[3] = 89;
|
||||
/* 28:04 */waypoints[86] = spawnstruct();
|
||||
/* 28:04 */waypoints[86].origin = (-1038.42, 40.4649, 253.123);
|
||||
/* 28:04 */waypoints[86].type = "stand";
|
||||
/* 28:04 */waypoints[86].children[0] = 85;
|
||||
/* 28:04 */waypoints[86].children[1] = 88;
|
||||
/* 28:04 */waypoints[87] = spawnstruct();
|
||||
/* 28:04 */waypoints[87].origin = (-891.415, -6.4283, 148.025);
|
||||
/* 28:04 */waypoints[87].type = "climb";
|
||||
/* 28:04 */waypoints[87].children[0] = 88;
|
||||
/* 28:04 */waypoints[87].children[1] = 79;
|
||||
/* 28:04 */waypoints[87].children[2] = 80;
|
||||
/* 28:04 */waypoints[87].angles = (-5.17456, 177.548, 0);
|
||||
/* 28:04 */waypoints[88] = spawnstruct();
|
||||
/* 28:04 */waypoints[88].origin = (-1013.13, 3.69662, 250.779);
|
||||
/* 28:04 */waypoints[88].type = "climb";
|
||||
/* 28:04 */waypoints[88].children[0] = 86;
|
||||
/* 28:04 */waypoints[88].children[1] = 87;
|
||||
/* 28:04 */waypoints[88].angles = (9.02527, -0.408318, 0);
|
||||
/* 28:04 */waypoints[89] = spawnstruct();
|
||||
/* 28:04 */waypoints[89].origin = (-1225.62, 505.944, 225.392);
|
||||
/* 28:04 */waypoints[89].type = "stand";
|
||||
/* 28:04 */waypoints[89].children[0] = 85;
|
||||
/* 28:04 */waypoints[89].children[1] = 31;
|
||||
/* 28:04 */waypoints[89].children[2] = 90;
|
||||
/* 28:04 */waypoints[90] = spawnstruct();
|
||||
/* 28:04 */waypoints[90].origin = (-1168.38, 693.218, 209.457);
|
||||
/* 28:04 */waypoints[90].type = "stand";
|
||||
/* 28:04 */waypoints[90].children[0] = 89;
|
||||
/* 28:04 */waypoints[90].children[1] = 30;
|
||||
/* 28:04 */waypoints[90].children[2] = 91;
|
||||
/* 28:04 */waypoints[90].children[3] = 92;
|
||||
/* 28:04 */waypoints[91] = spawnstruct();
|
||||
/* 28:04 */waypoints[91].origin = (-1028.02, 687.666, 212.098);
|
||||
/* 28:04 */waypoints[91].type = "stand";
|
||||
/* 28:04 */waypoints[91].children[0] = 90;
|
||||
/* 28:04 */waypoints[91].children[1] = 92;
|
||||
/* 28:04 */waypoints[91].children[2] = 96;
|
||||
/* 28:04 */waypoints[92] = spawnstruct();
|
||||
/* 28:04 */waypoints[92].origin = (-960.063, 923.913, 223.387);
|
||||
/* 28:04 */waypoints[92].type = "stand";
|
||||
/* 28:04 */waypoints[92].children[0] = 91;
|
||||
/* 28:04 */waypoints[92].children[1] = 93;
|
||||
/* 28:04 */waypoints[92].children[2] = 95;
|
||||
/* 28:04 */waypoints[92].children[3] = 29;
|
||||
/* 28:04 */waypoints[92].children[4] = 90;
|
||||
/* 28:04 */waypoints[93] = spawnstruct();
|
||||
/* 28:04 */waypoints[93].origin = (-956.611, 1071.43, 215.773);
|
||||
/* 28:04 */waypoints[93].type = "stand";
|
||||
/* 28:04 */waypoints[93].children[0] = 92;
|
||||
/* 28:04 */waypoints[93].children[1] = 94;
|
||||
/* 28:04 */waypoints[93].children[2] = 27;
|
||||
/* 28:04 */waypoints[94] = spawnstruct();
|
||||
/* 28:04 */waypoints[94].origin = (-761.337, 1096.97, 254.881);
|
||||
/* 28:04 */waypoints[94].type = "stand";
|
||||
/* 28:04 */waypoints[94].children[0] = 93;
|
||||
/* 28:04 */waypoints[94].children[1] = 95;
|
||||
/* 28:04 */waypoints[94].children[2] = 97;
|
||||
/* 28:04 */waypoints[95] = spawnstruct();
|
||||
/* 28:04 */waypoints[95].origin = (-750.063, 813.49, 192.695);
|
||||
/* 28:04 */waypoints[95].type = "stand";
|
||||
/* 28:04 */waypoints[95].children[0] = 94;
|
||||
/* 28:04 */waypoints[95].children[1] = 96;
|
||||
/* 28:04 */waypoints[95].children[2] = 92;
|
||||
/* 28:04 */waypoints[95].children[3] = 48;
|
||||
/* 28:04 */waypoints[96] = spawnstruct();
|
||||
/* 28:04 */waypoints[96].origin = (-805.36, 544.813, 184.319);
|
||||
/* 28:04 */waypoints[96].type = "stand";
|
||||
/* 28:04 */waypoints[96].children[0] = 95;
|
||||
/* 28:04 */waypoints[96].children[1] = 77;
|
||||
/* 28:04 */waypoints[96].children[2] = 91;
|
||||
/* 28:04 */waypoints[96].children[3] = 76;
|
||||
/* 28:04 */waypoints[97] = spawnstruct();
|
||||
/* 28:04 */waypoints[97].origin = (-590.045, 1236.67, 150.948);
|
||||
/* 28:04 */waypoints[97].type = "stand";
|
||||
/* 28:04 */waypoints[97].children[0] = 25;
|
||||
/* 28:04 */waypoints[97].children[1] = 94;
|
||||
/* 28:04 */waypoints[98] = spawnstruct();
|
||||
/* 28:04 */waypoints[98].origin = (-2.31728, -146.496, 297.581);
|
||||
/* 28:04 */waypoints[98].type = "stand";
|
||||
/* 28:04 */waypoints[98].children[0] = 68;
|
||||
/* 28:04 */waypoints[98].children[1] = 99;
|
||||
/* 28:04 */waypoints[98].children[2] = 109;
|
||||
/* 28:04 */waypoints[98].children[3] = 67;
|
||||
/* 28:04 */waypoints[98].children[4] = 100;
|
||||
/* 28:04 */waypoints[99] = spawnstruct();
|
||||
/* 28:04 */waypoints[99].origin = (-248.129, -140.366, 209.557);
|
||||
/* 28:04 */waypoints[99].type = "stand";
|
||||
/* 28:04 */waypoints[99].children[0] = 98;
|
||||
/* 28:04 */waypoints[99].children[1] = 100;
|
||||
/* 28:04 */waypoints[99].children[2] = 109;
|
||||
/* 28:04 */waypoints[100] = spawnstruct();
|
||||
/* 28:04 */waypoints[100].origin = (-274.738, -366.05, 204.986);
|
||||
/* 28:04 */waypoints[100].type = "stand";
|
||||
/* 28:04 */waypoints[100].children[0] = 99;
|
||||
/* 28:04 */waypoints[100].children[1] = 101;
|
||||
/* 28:04 */waypoints[100].children[2] = 104;
|
||||
/* 28:04 */waypoints[100].children[3] = 98;
|
||||
/* 28:04 */waypoints[101] = spawnstruct();
|
||||
/* 28:04 */waypoints[101].origin = (-130.553, -570.368, 183.501);
|
||||
/* 28:04 */waypoints[101].type = "stand";
|
||||
/* 28:04 */waypoints[101].children[0] = 100;
|
||||
/* 28:04 */waypoints[101].children[1] = 102;
|
||||
/* 28:04 */waypoints[101].children[2] = 104;
|
||||
/* 28:04 */waypoints[101].children[3] = 66;
|
||||
/* 28:04 */waypoints[102] = spawnstruct();
|
||||
/* 28:04 */waypoints[102].origin = (-238.023, -822.249, 167.512);
|
||||
/* 28:04 */waypoints[102].type = "stand";
|
||||
/* 28:04 */waypoints[102].children[0] = 101;
|
||||
/* 28:04 */waypoints[102].children[1] = 5;
|
||||
/* 28:04 */waypoints[102].children[2] = 4;
|
||||
/* 28:04 */waypoints[103] = spawnstruct();
|
||||
/* 28:04 */waypoints[103].origin = (-491.798, -505.393, 104.673);
|
||||
/* 28:04 */waypoints[103].type = "stand";
|
||||
/* 28:04 */waypoints[103].children[0] = 4;
|
||||
/* 28:04 */waypoints[103].children[1] = 45;
|
||||
/* 28:04 */waypoints[103].children[2] = 104;
|
||||
/* 28:04 */waypoints[103].children[3] = 119;
|
||||
/* 28:04 */waypoints[104] = spawnstruct();
|
||||
/* 28:04 */waypoints[104].origin = (-355.35, -535.604, 181.595);
|
||||
/* 28:04 */waypoints[104].type = "stand";
|
||||
/* 28:04 */waypoints[104].children[0] = 103;
|
||||
/* 28:04 */waypoints[104].children[1] = 101;
|
||||
/* 28:04 */waypoints[104].children[2] = 100;
|
||||
/* 28:04 */waypoints[105] = spawnstruct();
|
||||
/* 28:04 */waypoints[105].origin = (211.554, -856.34, 186.307);
|
||||
/* 28:04 */waypoints[105].type = "stand";
|
||||
/* 28:04 */waypoints[105].children[0] = 66;
|
||||
/* 28:04 */waypoints[105].children[1] = 106;
|
||||
/* 28:04 */waypoints[105].children[2] = 107;
|
||||
/* 28:04 */waypoints[106] = spawnstruct();
|
||||
/* 28:04 */waypoints[106].origin = (237.131, -1000.64, 184.744);
|
||||
/* 28:04 */waypoints[106].type = "stand";
|
||||
/* 28:04 */waypoints[106].children[0] = 105;
|
||||
/* 28:04 */waypoints[106].children[1] = 107;
|
||||
/* 28:04 */waypoints[106].children[2] = 108;
|
||||
/* 28:04 */waypoints[107] = spawnstruct();
|
||||
/* 28:04 */waypoints[107].origin = (327.089, -982.132, 185.619);
|
||||
/* 28:04 */waypoints[107].type = "stand";
|
||||
/* 28:04 */waypoints[107].children[0] = 106;
|
||||
/* 28:04 */waypoints[107].children[1] = 114;
|
||||
/* 28:04 */waypoints[107].children[2] = 105;
|
||||
/* 28:04 */waypoints[107].children[3] = 116;
|
||||
/* 28:04 */waypoints[108] = spawnstruct();
|
||||
/* 28:04 */waypoints[108].origin = (129.38, -1004.98, 181.985);
|
||||
/* 28:04 */waypoints[108].type = "stand";
|
||||
/* 28:04 */waypoints[108].children[0] = 106;
|
||||
/* 28:04 */waypoints[108].children[1] = 5;
|
||||
/* 28:04 */waypoints[108].children[2] = 117;
|
||||
/* 28:04 */waypoints[109] = spawnstruct();
|
||||
/* 28:04 */waypoints[109].origin = (-160.75, 131.077, 237.848);
|
||||
/* 28:04 */waypoints[109].type = "stand";
|
||||
/* 28:04 */waypoints[109].children[0] = 99;
|
||||
/* 28:04 */waypoints[109].children[1] = 74;
|
||||
/* 28:04 */waypoints[109].children[2] = 110;
|
||||
/* 28:04 */waypoints[109].children[3] = 98;
|
||||
/* 28:04 */waypoints[110] = spawnstruct();
|
||||
/* 28:04 */waypoints[110].origin = (-13.8293, 262.525, 264.359);
|
||||
/* 28:04 */waypoints[110].type = "stand";
|
||||
/* 28:04 */waypoints[110].children[0] = 109;
|
||||
/* 28:04 */waypoints[110].children[1] = 69;
|
||||
/* 28:04 */waypoints[110].children[2] = 70;
|
||||
/* 28:04 */waypoints[111] = spawnstruct();
|
||||
/* 28:04 */waypoints[111].origin = (323.034, 384.604, 163.593);
|
||||
/* 28:04 */waypoints[111].type = "stand";
|
||||
/* 28:04 */waypoints[111].children[0] = 71;
|
||||
/* 28:04 */waypoints[111].children[1] = 112;
|
||||
/* 28:04 */waypoints[112] = spawnstruct();
|
||||
/* 28:04 */waypoints[112].origin = (281.182, 216.792, 192.899);
|
||||
/* 28:04 */waypoints[112].type = "stand";
|
||||
/* 28:04 */waypoints[112].children[0] = 111;
|
||||
/* 28:04 */waypoints[112].children[1] = 52;
|
||||
/* 28:04 */waypoints[112].children[2] = 69;
|
||||
/* 28:04 */waypoints[112].children[3] = 68;
|
||||
/* 28:04 */waypoints[113] = spawnstruct();
|
||||
/* 28:04 */waypoints[113].origin = (476.219, -853.748, 164.435);
|
||||
/* 28:04 */waypoints[113].type = "stand";
|
||||
/* 28:04 */waypoints[113].children[0] = 55;
|
||||
/* 28:04 */waypoints[113].children[1] = 114;
|
||||
/* 28:04 */waypoints[113].children[2] = 11;
|
||||
/* 28:04 */waypoints[113].children[3] = 66;
|
||||
/* 28:04 */waypoints[114] = spawnstruct();
|
||||
/* 28:04 */waypoints[114].origin = (474.63, -999.439, 188.947);
|
||||
/* 28:04 */waypoints[114].type = "stand";
|
||||
/* 28:04 */waypoints[114].children[0] = 113;
|
||||
/* 28:04 */waypoints[114].children[1] = 107;
|
||||
/* 28:04 */waypoints[114].children[2] = 11;
|
||||
/* 28:04 */waypoints[115] = spawnstruct();
|
||||
/* 28:04 */waypoints[115].origin = (410.867, -1298.86, 192.125);
|
||||
/* 28:04 */waypoints[115].type = "stand";
|
||||
/* 28:04 */waypoints[115].children[0] = 9;
|
||||
/* 28:04 */waypoints[115].children[1] = 116;
|
||||
/* 28:04 */waypoints[116] = spawnstruct();
|
||||
/* 28:04 */waypoints[116].origin = (349.358, -1259.91, 196.614);
|
||||
/* 28:04 */waypoints[116].type = "stand";
|
||||
/* 28:04 */waypoints[116].children[0] = 115;
|
||||
/* 28:04 */waypoints[116].children[1] = 107;
|
||||
/* 28:04 */waypoints[117] = spawnstruct();
|
||||
/* 28:04 */waypoints[117].origin = (151.108, -1296.94, 188.948);
|
||||
/* 28:04 */waypoints[117].type = "stand";
|
||||
/* 28:04 */waypoints[117].children[0] = 8;
|
||||
/* 28:04 */waypoints[117].children[1] = 108;
|
||||
/* 28:04 */waypoints[118] = spawnstruct();
|
||||
/* 28:04 */waypoints[118].origin = (-911.794, -666.237, 188.769);
|
||||
/* 28:04 */waypoints[118].type = "stand";
|
||||
/* 28:04 */waypoints[118].children[0] = 42;
|
||||
/* 28:04 */waypoints[118].children[1] = 43;
|
||||
/* 28:04 */waypoints[118].children[2] = 3;
|
||||
/* 28:04 */waypoints[118].children[3] = 119;
|
||||
/* 28:04 */waypoints[119] = spawnstruct();
|
||||
/* 28:04 */waypoints[119].origin = (-645.582, -736.316, 157.406);
|
||||
/* 28:04 */waypoints[119].type = "stand";
|
||||
/* 28:04 */waypoints[119].children[0] = 118;
|
||||
/* 28:04 */waypoints[119].children[1] = 4;
|
||||
/* 28:04 */waypoints[119].children[2] = 103;
|
||||
/* 28:04 */return waypoints;
|
||||
}
|
||||
Reference in New Issue
Block a user