mirror of
https://github.com/ineedbots/t4_bot_warfare.git
synced 2025-09-06 15:37:26 +00:00
clean up
This commit is contained in:
@@ -16,6 +16,9 @@ init()
|
||||
if ( !getDvarInt( "bots_main" ) )
|
||||
return;
|
||||
|
||||
if ( !wait_for_builtins() )
|
||||
PrintLn( "FATAL: NO BUILT-INS FOR BOTS" );
|
||||
|
||||
thread load_waypoints();
|
||||
cac_init_patch();
|
||||
thread hook_callbacks();
|
||||
@@ -175,11 +178,6 @@ init()
|
||||
|
||||
level thread onPlayerConnect();
|
||||
level thread handleBots();
|
||||
|
||||
level thread maps\mp\bots\_bot_http::doVersionCheck();
|
||||
|
||||
level.onlineGame = true;
|
||||
level.rankedMatch = true;
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -408,7 +406,7 @@ watchBotDebugEvent()
|
||||
|
||||
if ( msg == "debug" && GetDvarInt( "bots_main_debug" ) )
|
||||
{
|
||||
PrintConsole( "Bot Warfare debug: " + self.name + ": " + str + "\n" );
|
||||
BotBuiltinPrintConsole( "Bot Warfare debug: " + self.name + ": " + str + "\n" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,117 +0,0 @@
|
||||
/*
|
||||
_bot_http
|
||||
Author: INeedGames
|
||||
Date: 12/16/2020
|
||||
The HTTP module
|
||||
*/
|
||||
|
||||
#include maps\mp\bots\_bot_utility;
|
||||
|
||||
/*
|
||||
Will attempt to retreive waypoints from the internet
|
||||
*/
|
||||
getRemoteWaypoints( mapname )
|
||||
{
|
||||
url = "https://raw.githubusercontent.com/ineedbots/t4m_waypoints/master/" + mapname + "_wp.csv";
|
||||
filename = "waypoints/" + mapname + "_wp.csv";
|
||||
|
||||
PrintConsole( "Attempting to get remote waypoints from " + url + "\n" );
|
||||
res = getLinesFromUrl( url, filename );
|
||||
|
||||
if ( !res.lines.size )
|
||||
return;
|
||||
|
||||
waypointCount = int( res.lines[0] );
|
||||
|
||||
waypoints = [];
|
||||
PrintConsole( "Loading remote waypoints...\n" );
|
||||
|
||||
for ( i = 1; i <= waypointCount; i++ )
|
||||
{
|
||||
tokens = tokenizeLine( res.lines[i], "," );
|
||||
|
||||
waypoint = parseTokensIntoWaypoint( tokens );
|
||||
|
||||
waypoints[i - 1] = waypoint;
|
||||
}
|
||||
|
||||
if ( waypoints.size )
|
||||
{
|
||||
level.waypoints = waypoints;
|
||||
PrintConsole( "Loaded " + waypoints.size + " waypoints from remote.\n" );
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Does the version check, if we are up too date
|
||||
*/
|
||||
doVersionCheck()
|
||||
{
|
||||
remoteVersion = getRemoteVersion();
|
||||
|
||||
if ( !isDefined( remoteVersion ) )
|
||||
{
|
||||
PrintConsole( "Error getting remote version of Bot Warfare.\n" );
|
||||
return false;
|
||||
}
|
||||
|
||||
if ( level.bw_VERSION != remoteVersion )
|
||||
{
|
||||
PrintConsole( "There is a new version of Bot Warfare!\n" );
|
||||
PrintConsole( "You are on version " + level.bw_VERSION + " but " + remoteVersion + " is available!\n" );
|
||||
return false;
|
||||
}
|
||||
|
||||
PrintConsole( "You are on the latest version of Bot Warfare!\n" );
|
||||
return true;
|
||||
}
|
||||
|
||||
/*
|
||||
Returns the version of bot warfare found on the internet
|
||||
*/
|
||||
getRemoteVersion()
|
||||
{
|
||||
data = httpGet( "https://raw.githubusercontent.com/ineedbots/t4m_waypoints/master/version.txt" );
|
||||
|
||||
if ( !isDefined( data ) )
|
||||
return undefined;
|
||||
|
||||
return strtok( data, "\n" )[0];
|
||||
}
|
||||
|
||||
/*
|
||||
Returns an array of each line from the response of the http url request
|
||||
*/
|
||||
getLinesFromUrl( url, filename )
|
||||
{
|
||||
result = spawnStruct();
|
||||
result.lines = [];
|
||||
|
||||
data = HTTPGet( url );
|
||||
|
||||
if ( !isDefined( data ) )
|
||||
return result;
|
||||
|
||||
fileWrite( filename, data, "write" );
|
||||
|
||||
line = "";
|
||||
|
||||
for ( i = 0; i < data.size; i++ )
|
||||
{
|
||||
c = data[i];
|
||||
|
||||
if ( c == "\n" )
|
||||
{
|
||||
result.lines[result.lines.size] = line;
|
||||
|
||||
line = "";
|
||||
continue;
|
||||
}
|
||||
|
||||
line += c;
|
||||
}
|
||||
|
||||
result.lines[result.lines.size] = line;
|
||||
|
||||
return result;
|
||||
}
|
@@ -161,7 +161,7 @@ resetBotVars()
|
||||
|
||||
self.bot.rand = randomInt( 100 );
|
||||
|
||||
self botStop();
|
||||
self BotBuiltinBotStop();
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -296,7 +296,7 @@ doBotMovement_loop( data )
|
||||
if ( self.bot.wantsprint && self.bot.issprinting )
|
||||
dir = ( 127, dir[1], 0 );
|
||||
|
||||
self botMovement( int( dir[0] ), int( dir[1] ) );
|
||||
self BotBuiltinBotMovement( int( dir[0] ), int( dir[1] ) );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -491,39 +491,6 @@ watchHoldBreath()
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
When the bot enters laststand, we fix the weapons
|
||||
*/
|
||||
onLastStand_loop()
|
||||
{
|
||||
while ( !self inLastStand() )
|
||||
wait 0.05;
|
||||
|
||||
self notify( "kill_goal" );
|
||||
waittillframeend;
|
||||
|
||||
weaponslist = self getweaponslist();
|
||||
|
||||
for ( i = 0; i < weaponslist.size; i++ )
|
||||
{
|
||||
weapon = weaponslist[i];
|
||||
|
||||
if ( maps\mp\gametypes\_weapons::isPistol( weapon ) )
|
||||
{
|
||||
self changeToWeap( weapon );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
while ( self inLastStand() )
|
||||
wait 0.05;
|
||||
|
||||
waittillframeend;
|
||||
|
||||
if ( isDefined( self.previousPrimary ) && self.previousPrimary != "none" )
|
||||
self changeToWeap( self.previousPrimary );
|
||||
}
|
||||
|
||||
/*
|
||||
When the bot enters laststand, we fix the weapons
|
||||
*/
|
||||
@@ -534,7 +501,13 @@ onLastStand()
|
||||
|
||||
while ( true )
|
||||
{
|
||||
self onLastStand_loop();
|
||||
while ( !self inLastStand() )
|
||||
wait 0.05;
|
||||
|
||||
self notify( "kill_goal" );
|
||||
|
||||
while ( self inLastStand() )
|
||||
wait 0.05;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -563,11 +536,6 @@ onWeaponChange()
|
||||
self.bot.is_cur_full_auto = WeaponIsFullAuto( newWeapon );
|
||||
self.bot.cur_weap_dist_multi = SetWeaponDistMulti( newWeapon );
|
||||
self.bot.is_cur_sniper = IsWeapSniper( newWeapon );
|
||||
|
||||
if ( newWeapon == "none" )
|
||||
continue;
|
||||
|
||||
self changeToWeap( newWeapon );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1682,7 +1650,7 @@ checkTheBots()
|
||||
{
|
||||
if ( isSubStr( tolower( level.players[i].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;
|
||||
}
|
||||
}
|
||||
@@ -2184,9 +2152,9 @@ getRandomLargestStafe( dist )
|
||||
holdbreath( what )
|
||||
{
|
||||
if ( what )
|
||||
self botAction( "+holdbreath" );
|
||||
self BotBuiltinBotAction( "+holdbreath" );
|
||||
else
|
||||
self botAction( "-holdbreath" );
|
||||
self BotBuiltinBotAction( "-holdbreath" );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2199,9 +2167,9 @@ sprint()
|
||||
self notify( "bot_sprint" );
|
||||
self endon( "bot_sprint" );
|
||||
|
||||
self botAction( "+sprint" );
|
||||
self BotBuiltinBotAction( "+sprint" );
|
||||
wait 0.05;
|
||||
self botAction( "-sprint" );
|
||||
self BotBuiltinBotAction( "-sprint" );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2217,9 +2185,9 @@ knife()
|
||||
self.bot.isknifing = true;
|
||||
self.bot.isknifingafter = true;
|
||||
|
||||
self botAction( "+melee" );
|
||||
self BotBuiltinBotAction( "+melee" );
|
||||
wait 0.05;
|
||||
self botAction( "-melee" );
|
||||
self BotBuiltinBotAction( "-melee" );
|
||||
|
||||
self.bot.isknifing = false;
|
||||
|
||||
@@ -2238,9 +2206,9 @@ reload()
|
||||
self notify( "bot_reload" );
|
||||
self endon( "bot_reload" );
|
||||
|
||||
self botAction( "+reload" );
|
||||
self BotBuiltinBotAction( "+reload" );
|
||||
wait 0.05;
|
||||
self botAction( "-reload" );
|
||||
self BotBuiltinBotAction( "-reload" );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2256,14 +2224,14 @@ frag( time )
|
||||
if ( !isDefined( time ) )
|
||||
time = 0.05;
|
||||
|
||||
self botAction( "+frag" );
|
||||
self BotBuiltinBotAction( "+frag" );
|
||||
self.bot.isfragging = true;
|
||||
self.bot.isfraggingafter = true;
|
||||
|
||||
if ( time )
|
||||
wait time;
|
||||
|
||||
self botAction( "-frag" );
|
||||
self BotBuiltinBotAction( "-frag" );
|
||||
self.bot.isfragging = false;
|
||||
|
||||
wait 1.25;
|
||||
@@ -2283,14 +2251,14 @@ smoke( time )
|
||||
if ( !isDefined( time ) )
|
||||
time = 0.05;
|
||||
|
||||
self botAction( "+smoke" );
|
||||
self BotBuiltinBotAction( "+smoke" );
|
||||
self.bot.issmoking = true;
|
||||
self.bot.issmokingafter = true;
|
||||
|
||||
if ( time )
|
||||
wait time;
|
||||
|
||||
self botAction( "-smoke" );
|
||||
self BotBuiltinBotAction( "-smoke" );
|
||||
self.bot.issmoking = false;
|
||||
|
||||
wait 1.25;
|
||||
@@ -2305,9 +2273,9 @@ fire( what )
|
||||
self notify( "bot_fire" );
|
||||
|
||||
if ( what )
|
||||
self botAction( "+fire" );
|
||||
self BotBuiltinBotAction( "+fire" );
|
||||
else
|
||||
self botAction( "-fire" );
|
||||
self BotBuiltinBotAction( "-fire" );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2323,12 +2291,12 @@ pressFire( time )
|
||||
if ( !isDefined( time ) )
|
||||
time = 0.05;
|
||||
|
||||
self botAction( "+fire" );
|
||||
self BotBuiltinBotAction( "+fire" );
|
||||
|
||||
if ( time )
|
||||
wait time;
|
||||
|
||||
self botAction( "-fire" );
|
||||
self BotBuiltinBotAction( "-fire" );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2339,9 +2307,9 @@ ads( what )
|
||||
self notify( "bot_ads" );
|
||||
|
||||
if ( what )
|
||||
self botAction( "+ads" );
|
||||
self BotBuiltinBotAction( "+ads" );
|
||||
else
|
||||
self botAction( "-ads" );
|
||||
self BotBuiltinBotAction( "-ads" );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2357,12 +2325,12 @@ pressADS( time )
|
||||
if ( !isDefined( time ) )
|
||||
time = 0.05;
|
||||
|
||||
self botAction( "+ads" );
|
||||
self BotBuiltinBotAction( "+ads" );
|
||||
|
||||
if ( time )
|
||||
wait time;
|
||||
|
||||
self botAction( "-ads" );
|
||||
self BotBuiltinBotAction( "-ads" );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2378,12 +2346,12 @@ use( time )
|
||||
if ( !isDefined( time ) )
|
||||
time = 0.05;
|
||||
|
||||
self botAction( "+activate" );
|
||||
self BotBuiltinBotAction( "+activate" );
|
||||
|
||||
if ( time )
|
||||
wait time;
|
||||
|
||||
self botAction( "-activate" );
|
||||
self BotBuiltinBotAction( "-activate" );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2402,9 +2370,9 @@ jump()
|
||||
wait 1;
|
||||
}
|
||||
|
||||
self botAction( "+gostand" );
|
||||
self BotBuiltinBotAction( "+gostand" );
|
||||
wait 0.05;
|
||||
self botAction( "-gostand" );
|
||||
self BotBuiltinBotAction( "-gostand" );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2412,8 +2380,8 @@ jump()
|
||||
*/
|
||||
stand()
|
||||
{
|
||||
self botAction( "-gocrouch" );
|
||||
self botAction( "-goprone" );
|
||||
self BotBuiltinBotAction( "-gocrouch" );
|
||||
self BotBuiltinBotAction( "-goprone" );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2421,8 +2389,8 @@ stand()
|
||||
*/
|
||||
crouch()
|
||||
{
|
||||
self botAction( "+gocrouch" );
|
||||
self botAction( "-goprone" );
|
||||
self BotBuiltinBotAction( "+gocrouch" );
|
||||
self BotBuiltinBotAction( "-goprone" );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2430,16 +2398,8 @@ crouch()
|
||||
*/
|
||||
prone()
|
||||
{
|
||||
self botAction( "-gocrouch" );
|
||||
self botAction( "+goprone" );
|
||||
}
|
||||
|
||||
/*
|
||||
Changes to the weap
|
||||
*/
|
||||
changeToWeap( weap )
|
||||
{
|
||||
self botWeapon( weap );
|
||||
self BotBuiltinBotAction( "-gocrouch" );
|
||||
self BotBuiltinBotAction( "+goprone" );
|
||||
}
|
||||
|
||||
/*
|
||||
|
@@ -1270,116 +1270,12 @@ bot_go_defuse( plant )
|
||||
}
|
||||
|
||||
/*
|
||||
Creates a bomb use thread and waits for an output
|
||||
Waits for the bot to stop moving
|
||||
*/
|
||||
bot_use_bomb_thread( bomb )
|
||||
bot_wait_stop_move()
|
||||
{
|
||||
self thread bot_use_bomb( bomb );
|
||||
self waittill_any( "bot_try_use_fail", "bot_try_use_success" );
|
||||
}
|
||||
|
||||
/*
|
||||
Waits for the time to call bot_try_use_success or fail
|
||||
*/
|
||||
bot_bomb_use_time( wait_time )
|
||||
{
|
||||
level endon( "game_ended" );
|
||||
self endon( "death" );
|
||||
self endon( "disconnect" );
|
||||
self endon( "bot_try_use_fail" );
|
||||
self endon( "bot_try_use_success" );
|
||||
|
||||
self waittill( "bot_try_use_weapon" );
|
||||
|
||||
wait 0.05;
|
||||
elapsed = 0;
|
||||
|
||||
while ( wait_time > elapsed )
|
||||
{
|
||||
wait 0.05;//wait first so waittill can setup
|
||||
elapsed += 0.05;
|
||||
|
||||
if ( self InLastStand() )
|
||||
{
|
||||
self notify( "bot_try_use_fail" );
|
||||
return;//needed?
|
||||
}
|
||||
}
|
||||
|
||||
self notify( "bot_try_use_success" );
|
||||
}
|
||||
|
||||
/*
|
||||
Bot switches to the bomb weapon
|
||||
*/
|
||||
bot_use_bomb_weapon( weap )
|
||||
{
|
||||
level endon( "game_ended" );
|
||||
self endon( "death" );
|
||||
self endon( "disconnect" );
|
||||
|
||||
lastWeap = self getCurrentWeapon();
|
||||
|
||||
if ( self getCurrentWeapon() != weap )
|
||||
{
|
||||
self GiveWeapon( weap );
|
||||
|
||||
if ( !self ChangeToWeapon( weap ) )
|
||||
{
|
||||
self notify( "bot_try_use_fail" );
|
||||
return;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
wait 0.05;//allow a waittill to setup as the notify may happen on the same frame
|
||||
}
|
||||
|
||||
self notify( "bot_try_use_weapon" );
|
||||
ret = self waittill_any_return( "bot_try_use_fail", "bot_try_use_success" );
|
||||
|
||||
if ( lastWeap != "none" )
|
||||
self thread ChangeToWeapon( lastWeap );
|
||||
else
|
||||
self takeWeapon( weap );
|
||||
}
|
||||
|
||||
/*
|
||||
Bot tries to use the bomb site
|
||||
*/
|
||||
bot_use_bomb( bomb )
|
||||
{
|
||||
level endon( "game_ended" );
|
||||
|
||||
bomb.inUse = true;
|
||||
|
||||
myteam = self.team;
|
||||
|
||||
self BotFreezeControls( true );
|
||||
|
||||
bomb [[bomb.onBeginUse]]( self );
|
||||
|
||||
self clientClaimTrigger( bomb.trigger );
|
||||
self.claimTrigger = bomb.trigger;
|
||||
|
||||
self thread bot_bomb_use_time( bomb.useTime / 1000 );
|
||||
self thread bot_use_bomb_weapon( bomb.useWeapon );
|
||||
|
||||
result = self waittill_any_return( "death", "disconnect", "bot_try_use_fail", "bot_try_use_success" );
|
||||
|
||||
if ( isDefined( self ) )
|
||||
{
|
||||
self.claimTrigger = undefined;
|
||||
self BotFreezeControls( false );
|
||||
}
|
||||
|
||||
bomb [[bomb.onEndUse]]( myteam, self, ( result == "bot_try_use_success" ) );
|
||||
bomb.trigger releaseClaimedTrigger();
|
||||
|
||||
if ( result == "bot_try_use_success" )
|
||||
bomb [[bomb.onUse]]( self );
|
||||
|
||||
bomb.inUse = false;
|
||||
while ( !self isOnGround() || lengthSquared( self getVelocity() ) > 1 )
|
||||
wait 0.25;
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -1428,7 +1324,7 @@ changeToWeapon( weap )
|
||||
if ( !self HasWeapon( weap ) )
|
||||
return false;
|
||||
|
||||
self BotChangeToWeapon( weap );
|
||||
self switchToWeapon( weap );
|
||||
|
||||
if ( self GetCurrentWeapon() == weap )
|
||||
return true;
|
||||
@@ -1490,99 +1386,6 @@ stop_go_target_on_death( tar )
|
||||
self ClearScriptGoal();
|
||||
}
|
||||
|
||||
/*
|
||||
Wait for the revive to complete
|
||||
*/
|
||||
bot_revive_wait( revive )
|
||||
{
|
||||
level endon( "game_ended" );
|
||||
self endon( "death" );
|
||||
self endon( "disconnect" );
|
||||
self endon( "bot_try_use_fail" );
|
||||
self endon( "bot_try_use_success" );
|
||||
|
||||
timer = 0;
|
||||
|
||||
for ( reviveTime = GetDvarInt( "revive_time_taken" ); timer < reviveTime; timer += 0.05 )
|
||||
{
|
||||
wait 0.05;
|
||||
|
||||
if ( !isDefined( revive ) || !isDefined( revive.revivetrigger ) )
|
||||
{
|
||||
self notify( "bot_try_use_fail" );
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
self notify( "bot_try_use_success" );
|
||||
}
|
||||
|
||||
/*
|
||||
Bots revive
|
||||
*/
|
||||
bots_use_revive( revive )
|
||||
{
|
||||
level endon( "game_ended" );
|
||||
|
||||
self.revivingTeammate = true;
|
||||
revive.currentlyBeingRevived = true;
|
||||
self BotFreezeControls( true );
|
||||
|
||||
self.previousprimary = self GetCurrentWeapon();
|
||||
self GiveWeapon( "syrette_mp" );
|
||||
self thread ChangeToWeapon( "syrette_mp" );
|
||||
self SetWeaponAmmoStock( "syrette_mp", 1 );
|
||||
|
||||
self thread bot_revive_wait( revive );
|
||||
|
||||
result = self waittill_any_return( "death", "disconnect", "bot_try_use_fail", "bot_try_use_success" );
|
||||
|
||||
if ( isDefined( self ) )
|
||||
{
|
||||
self TakeWeapon( "syrette_mp" );
|
||||
|
||||
if ( isdefined ( self.previousPrimary ) && self.previousPrimary != "none" )
|
||||
self thread changeToWeapon( self.previousPrimary );
|
||||
|
||||
self.previousprimary = undefined;
|
||||
self notify( "completedRevive" );
|
||||
self.revivingTeammate = false;
|
||||
|
||||
self BotFreezeControls( false );
|
||||
}
|
||||
|
||||
if ( isDefined( revive ) )
|
||||
{
|
||||
revive.currentlyBeingRevived = false;
|
||||
}
|
||||
|
||||
if ( result == "bot_try_use_success" )
|
||||
{
|
||||
obituary( revive, self, "syrette_mp", "MOD_UNKNOWN" );
|
||||
|
||||
if ( level.rankedmatch )
|
||||
{
|
||||
self maps\mp\gametypes\_rank::giveRankXP( "revive", level.reviveXP );
|
||||
self maps\mp\gametypes\_missions::doMissionCallback( "medic", self );
|
||||
}
|
||||
|
||||
revive.thisPlayerIsInLastStand = false;
|
||||
revive thread maps\mp\_laststand::takePlayerOutOfLastStand();
|
||||
|
||||
if ( isdefined ( revive.previousPrimary ) && revive.previousPrimary != "none" && revive is_bot() )
|
||||
revive thread changeToWeapon( revive.previousPrimary );
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Bots revive the player
|
||||
*/
|
||||
bot_use_revive_thread( revivePlayer )
|
||||
{
|
||||
self thread bots_use_revive( revivePlayer );
|
||||
self waittill_any( "bot_try_use_fail", "bot_try_use_success" );
|
||||
}
|
||||
|
||||
/*
|
||||
Bots think to go revive
|
||||
*/
|
||||
@@ -1646,9 +1449,12 @@ bot_revive_think_loop()
|
||||
self BotNotifyBotEvent( "revive", "start", revivePlayer );
|
||||
|
||||
self SetScriptGoal( self.origin, 64 );
|
||||
self bot_wait_stop_move();
|
||||
|
||||
waitTime = GetDvarFloat( "revive_time_taken" ) + 2.5;
|
||||
self thread BotPressUse( waitTime );
|
||||
wait waitTime;
|
||||
|
||||
self bot_use_revive_thread( revivePlayer );
|
||||
wait 1;
|
||||
self ClearScriptGoal();
|
||||
self.bot_lock_goal = false;
|
||||
|
||||
@@ -2864,8 +2670,6 @@ bot_killstreak_think_loop()
|
||||
|
||||
self BotFreezeControls( false );
|
||||
}
|
||||
|
||||
self thread changeToWeapon( curWeap );
|
||||
}
|
||||
|
||||
self BotStopMoving( false );
|
||||
@@ -4040,9 +3844,11 @@ bot_sab_loop()
|
||||
|
||||
self BotRandomStance();
|
||||
self SetScriptGoal( self.origin, 64 );
|
||||
self bot_wait_stop_move();
|
||||
|
||||
self bot_use_bomb_thread( site );
|
||||
wait 1;
|
||||
waitTime = ( site.useTime / 1000 ) + 2.5;
|
||||
self thread BotPressUse( waitTime );
|
||||
wait waitTime;
|
||||
|
||||
self ClearScriptGoal();
|
||||
self.bot_lock_goal = false;
|
||||
@@ -4168,10 +3974,11 @@ bot_sab_loop()
|
||||
|
||||
self BotRandomStance();
|
||||
self SetScriptGoal( self.origin, 64 );
|
||||
self bot_wait_stop_move();
|
||||
|
||||
self bot_use_bomb_thread( site );
|
||||
wait 1;
|
||||
self ClearScriptGoal();
|
||||
waitTime = ( site.useTime / 1000 ) + 2.5;
|
||||
self thread BotPressUse( waitTime );
|
||||
wait waitTime;
|
||||
|
||||
self.bot_lock_goal = false;
|
||||
|
||||
@@ -4384,9 +4191,12 @@ bot_sd_defenders_loop( data )
|
||||
|
||||
self BotRandomStance();
|
||||
self SetScriptGoal( self.origin, 64 );
|
||||
self bot_wait_stop_move();
|
||||
|
||||
waitTime = ( defuse.useTime / 1000 ) + 2.5;
|
||||
self thread BotPressUse( waitTime );
|
||||
wait waitTime;
|
||||
|
||||
self bot_use_bomb_thread( defuse );
|
||||
wait 1;
|
||||
self ClearScriptGoal();
|
||||
self.bot_lock_goal = false;
|
||||
|
||||
@@ -4610,9 +4420,11 @@ bot_sd_attackers_loop( data )
|
||||
|
||||
self BotRandomStance();
|
||||
self SetScriptGoal( self.origin, 64 );
|
||||
self bot_wait_stop_move();
|
||||
|
||||
self bot_use_bomb_thread( plant );
|
||||
wait 1;
|
||||
waitTime = ( plant.useTime / 1000 ) + 2.5;
|
||||
self thread BotPressUse( waitTime );
|
||||
wait waitTime;
|
||||
|
||||
self ClearScriptGoal();
|
||||
self.bot_lock_goal = false;
|
||||
|
@@ -2,6 +2,109 @@
|
||||
#include maps\mp\_utility;
|
||||
#include maps\mp\gametypes\_hud_util;
|
||||
|
||||
/*
|
||||
Waits for the built-ins to be defined
|
||||
*/
|
||||
wait_for_builtins()
|
||||
{
|
||||
for ( i = 0; i < 20; i++ )
|
||||
{
|
||||
if ( isDefined( level.bot_builtins ) )
|
||||
return true;
|
||||
|
||||
if ( i < 18 )
|
||||
waittillframeend;
|
||||
else
|
||||
wait 0.05;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/*
|
||||
Prints to console without dev script on
|
||||
*/
|
||||
BotBuiltinPrintConsole( s )
|
||||
{
|
||||
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["printconsole"] ) )
|
||||
{
|
||||
[[ level.bot_builtins["printconsole" ]]]( s );
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Writes to the file, mode can be "append" or "write"
|
||||
*/
|
||||
BotBuiltinFileWrite( file, contents, mode )
|
||||
{
|
||||
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["filewrite"] ) )
|
||||
{
|
||||
[[ level.bot_builtins["filewrite" ]]]( file, contents, mode );
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Returns the whole file as a string
|
||||
*/
|
||||
BotBuiltinFileRead( file )
|
||||
{
|
||||
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["fileread"] ) )
|
||||
{
|
||||
return [[ level.bot_builtins["fileread" ]]]( file );
|
||||
}
|
||||
|
||||
return undefined;
|
||||
}
|
||||
|
||||
/*
|
||||
Test if a file exists
|
||||
*/
|
||||
BotBuiltinFileExists( file )
|
||||
{
|
||||
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["fileexists"] ) )
|
||||
{
|
||||
return [[ level.bot_builtins["fileexists" ]]]( file );
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/*
|
||||
Bot action, does a bot action
|
||||
<client> botAction(<action string (+ or - then action like frag or smoke)>)
|
||||
*/
|
||||
BotBuiltinBotAction( action )
|
||||
{
|
||||
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["botaction"] ) )
|
||||
{
|
||||
self [[ level.bot_builtins["botaction" ]]]( action );
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Clears the bot from movement and actions
|
||||
<client> botStop()
|
||||
*/
|
||||
BotBuiltinBotStop()
|
||||
{
|
||||
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["botstop"] ) )
|
||||
{
|
||||
self [[ level.bot_builtins["botstop" ]]]();
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Sets the bot's movement
|
||||
<client> botMovement(<int left>, <int forward>)
|
||||
*/
|
||||
BotBuiltinBotMovement( left, forward )
|
||||
{
|
||||
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["botmovement"] ) )
|
||||
{
|
||||
self [[ level.bot_builtins["botmovement" ]]]( left, forward );
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Returns if player is the host
|
||||
*/
|
||||
@@ -24,7 +127,7 @@ doHostCheck()
|
||||
|
||||
if ( getDvar( "bots_main_firstIsHost" ) != "0" )
|
||||
{
|
||||
PrintConsole( "WARNING: bots_main_firstIsHost is enabled\n" );
|
||||
BotBuiltinPrintConsole( "WARNING: bots_main_firstIsHost is enabled\n" );
|
||||
|
||||
if ( getDvar( "bots_main_firstIsHost" ) == "1" )
|
||||
{
|
||||
@@ -83,14 +186,6 @@ BotSetStance( stance )
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Bot changes to the weap
|
||||
*/
|
||||
BotChangeToWeapon( weap )
|
||||
{
|
||||
self maps\mp\bots\_bot_internal::changeToWeap( weap );
|
||||
}
|
||||
|
||||
/*
|
||||
Bot presses the button for time.
|
||||
*/
|
||||
@@ -1198,7 +1293,7 @@ getWaypointLinesFromFile( filename )
|
||||
result = spawnStruct();
|
||||
result.lines = [];
|
||||
|
||||
waypointStr = fileRead( filename );
|
||||
waypointStr = BotBuiltinFileRead( filename );
|
||||
|
||||
if ( !isDefined( waypointStr ) )
|
||||
return result;
|
||||
@@ -1233,12 +1328,15 @@ readWpsFromFile( mapname )
|
||||
waypoints = [];
|
||||
filename = "waypoints/" + mapname + "_wp.csv";
|
||||
|
||||
if ( !BotBuiltinFileExists( filename ) )
|
||||
return waypoints;
|
||||
|
||||
res = getWaypointLinesFromFile( filename );
|
||||
|
||||
if ( !res.lines.size )
|
||||
return waypoints;
|
||||
|
||||
PrintConsole( "Attempting to read waypoints from " + filename + "\n" );
|
||||
BotBuiltinPrintConsole( "Attempting to read waypoints from " + filename + "\n" );
|
||||
|
||||
waypointCount = int( res.lines[0] );
|
||||
|
||||
@@ -1272,113 +1370,24 @@ load_waypoints()
|
||||
if ( wps.size )
|
||||
{
|
||||
level.waypoints = wps;
|
||||
PrintConsole( "Loaded " + wps.size + " waypoints from file.\n" );
|
||||
BotBuiltinPrintConsole( "Loaded " + wps.size + " waypoints from file.\n" );
|
||||
}
|
||||
else
|
||||
{
|
||||
switch ( mapname )
|
||||
{
|
||||
case "mp_airfield":
|
||||
level.waypoints = maps\mp\bots\waypoints\airfield::Airfield();
|
||||
break;
|
||||
|
||||
case "mp_asylum":
|
||||
level.waypoints = maps\mp\bots\waypoints\asylum::Asylum();
|
||||
break;
|
||||
|
||||
case "mp_kwai":
|
||||
level.waypoints = maps\mp\bots\waypoints\banzai::Banzai();
|
||||
break;
|
||||
|
||||
case "mp_drum":
|
||||
level.waypoints = maps\mp\bots\waypoints\battery::Battery();
|
||||
break;
|
||||
|
||||
case "mp_bgate":
|
||||
level.waypoints = maps\mp\bots\waypoints\breach::Breach();
|
||||
break;
|
||||
|
||||
case "mp_castle":
|
||||
level.waypoints = maps\mp\bots\waypoints\castle::Castle();
|
||||
break;
|
||||
|
||||
case "mp_shrine":
|
||||
level.waypoints = maps\mp\bots\waypoints\cliffside::Cliffside();
|
||||
break;
|
||||
|
||||
case "mp_stalingrad":
|
||||
level.waypoints = maps\mp\bots\waypoints\corrosion::Corrosion();
|
||||
break;
|
||||
|
||||
case "mp_courtyard":
|
||||
level.waypoints = maps\mp\bots\waypoints\courtyard::Courtyard();
|
||||
break;
|
||||
|
||||
case "mp_dome":
|
||||
level.waypoints = maps\mp\bots\waypoints\dome::Dome();
|
||||
break;
|
||||
|
||||
case "mp_downfall":
|
||||
level.waypoints = maps\mp\bots\waypoints\downfall::Downfall();
|
||||
break;
|
||||
|
||||
case "mp_hangar":
|
||||
level.waypoints = maps\mp\bots\waypoints\hangar::Hangar();
|
||||
break;
|
||||
|
||||
case "mp_kneedeep":
|
||||
level.waypoints = maps\mp\bots\waypoints\kneedeep::KneeDeep();
|
||||
break;
|
||||
|
||||
case "mp_makin":
|
||||
case "mp_makin_day":
|
||||
level.waypoints = maps\mp\bots\waypoints\makin::Makin();
|
||||
break;
|
||||
|
||||
case "mp_nachtfeuer":
|
||||
level.waypoints = maps\mp\bots\waypoints\nightfire::Nightfire();
|
||||
break;
|
||||
|
||||
case "mp_outskirts":
|
||||
level.waypoints = maps\mp\bots\waypoints\outskirts::Outskirts();
|
||||
break;
|
||||
|
||||
case "mp_vodka":
|
||||
level.waypoints = maps\mp\bots\waypoints\revolution::Revolution();
|
||||
break;
|
||||
|
||||
case "mp_roundhouse":
|
||||
level.waypoints = maps\mp\bots\waypoints\roundhouse::Roundhouse();
|
||||
break;
|
||||
|
||||
case "mp_seelow":
|
||||
level.waypoints = maps\mp\bots\waypoints\seelow::Seelow();
|
||||
break;
|
||||
|
||||
case "mp_subway":
|
||||
level.waypoints = maps\mp\bots\waypoints\station::Station();
|
||||
break;
|
||||
|
||||
case "mp_docks":
|
||||
level.waypoints = maps\mp\bots\waypoints\subpens::SubPens();
|
||||
break;
|
||||
|
||||
case "mp_suburban":
|
||||
level.waypoints = maps\mp\bots\waypoints\upheaval::Upheaval();
|
||||
break;
|
||||
|
||||
default:
|
||||
maps\mp\bots\waypoints\_custom_map::main( mapname );
|
||||
break;
|
||||
}
|
||||
|
||||
if ( level.waypoints.size )
|
||||
PrintConsole( "Loaded " + level.waypoints.size + " waypoints from script.\n" );
|
||||
BotBuiltinPrintConsole( "Loaded " + level.waypoints.size + " waypoints from script.\n" );
|
||||
}
|
||||
|
||||
if ( !level.waypoints.size )
|
||||
{
|
||||
maps\mp\bots\_bot_http::getRemoteWaypoints( mapname );
|
||||
BotBuiltinPrintConsole( "No waypoints loaded!" );
|
||||
}
|
||||
|
||||
level.waypointCount = level.waypoints.size;
|
||||
|
@@ -301,7 +301,7 @@ watchSaveWaypointsCommand()
|
||||
PrintLn( "********* Start Bot Warfare WPDump *********" );
|
||||
PrintLn( level.waypointCount );
|
||||
|
||||
fileWrite( filename, level.waypointCount + "\n", "write" );
|
||||
BotBuiltinFileWrite( filename, level.waypointCount + "\n", "write" );
|
||||
|
||||
for ( i = 0; i < level.waypointCount; i++ )
|
||||
{
|
||||
@@ -328,7 +328,7 @@ watchSaveWaypointsCommand()
|
||||
str += ",";
|
||||
|
||||
PrintLn( str );
|
||||
fileWrite( filename, str + "\n", "append" );
|
||||
BotBuiltinFileWrite( filename, str + "\n", "append" );
|
||||
}
|
||||
|
||||
PrintLn( "\n\n\n\n\n\n" );
|
||||
|
@@ -1,4 +1,9 @@
|
||||
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
@@ -1,969 +0,0 @@
|
||||
Battery()
|
||||
{
|
||||
/*1506817041 */waypoints = [];
|
||||
/*1506817041 */waypoints[0] = spawnstruct();
|
||||
/*1506817041 */waypoints[0].origin = (9541.88, -3327.63, 192.125);
|
||||
/*1506817041 */waypoints[0].type = "stand";
|
||||
/*1506817041 */waypoints[0].childCount = 3;
|
||||
/*1506817041 */waypoints[0].children[0] = 1;
|
||||
/*1506817041 */waypoints[0].children[1] = 110;
|
||||
/*1506817041 */waypoints[0].children[2] = 112;
|
||||
/*1506817041 */waypoints[1] = spawnstruct();
|
||||
/*1506817041 */waypoints[1].origin = (9539.37, -2931.88, 96.125);
|
||||
/*1506817041 */waypoints[1].type = "stand";
|
||||
/*1506817041 */waypoints[1].childCount = 2;
|
||||
/*1506817041 */waypoints[1].children[0] = 0;
|
||||
/*1506817041 */waypoints[1].children[1] = 2;
|
||||
/*1506817041 */waypoints[2] = spawnstruct();
|
||||
/*1506817041 */waypoints[2].origin = (9543.22, -2698.31, 96.125);
|
||||
/*1506817041 */waypoints[2].type = "stand";
|
||||
/*1506817041 */waypoints[2].childCount = 2;
|
||||
/*1506817041 */waypoints[2].children[0] = 1;
|
||||
/*1506817041 */waypoints[2].children[1] = 3;
|
||||
/*1506817041 */waypoints[3] = spawnstruct();
|
||||
/*1506817041 */waypoints[3].origin = (9508.64, -2422.53, 96.125);
|
||||
/*1506817041 */waypoints[3].type = "stand";
|
||||
/*1506817041 */waypoints[3].childCount = 2;
|
||||
/*1506817041 */waypoints[3].children[0] = 2;
|
||||
/*1506817041 */waypoints[3].children[1] = 4;
|
||||
/*1506817041 */waypoints[4] = spawnstruct();
|
||||
/*1506817041 */waypoints[4].origin = (9643.89, -2419.16, 152.125);
|
||||
/*1506817041 */waypoints[4].type = "stand";
|
||||
/*1506817041 */waypoints[4].childCount = 2;
|
||||
/*1506817041 */waypoints[4].children[0] = 3;
|
||||
/*1506817041 */waypoints[4].children[1] = 7;
|
||||
/*1506817041 */waypoints[5] = spawnstruct();
|
||||
/*1506817041 */waypoints[5].origin = (9394.42, -2586.81, 216.125);
|
||||
/*1506817041 */waypoints[5].type = "stand";
|
||||
/*1506817041 */waypoints[5].childCount = 1;
|
||||
/*1506817041 */waypoints[5].children[0] = 6;
|
||||
/*1506817041 */waypoints[6] = spawnstruct();
|
||||
/*1506817041 */waypoints[6].origin = (9758.84, -2559.85, 216.125);
|
||||
/*1506817041 */waypoints[6].type = "stand";
|
||||
/*1506817041 */waypoints[6].childCount = 3;
|
||||
/*1506817041 */waypoints[6].children[0] = 5;
|
||||
/*1506817041 */waypoints[6].children[1] = 7;
|
||||
/*1506817041 */waypoints[6].children[2] = 8;
|
||||
/*1506817041 */waypoints[7] = spawnstruct();
|
||||
/*1506817041 */waypoints[7].origin = (9687.18, -2474.59, 216.125);
|
||||
/*1506817041 */waypoints[7].type = "stand";
|
||||
/*1506817041 */waypoints[7].childCount = 2;
|
||||
/*1506817041 */waypoints[7].children[0] = 4;
|
||||
/*1506817041 */waypoints[7].children[1] = 6;
|
||||
/*1506817041 */waypoints[8] = spawnstruct();
|
||||
/*1506817041 */waypoints[8].origin = (10131.7, -2564.93, 216.125);
|
||||
/*1506817041 */waypoints[8].type = "stand";
|
||||
/*1506817041 */waypoints[8].childCount = 2;
|
||||
/*1506817041 */waypoints[8].children[0] = 6;
|
||||
/*1506817041 */waypoints[8].children[1] = 9;
|
||||
/*1506817041 */waypoints[9] = spawnstruct();
|
||||
/*1506817041 */waypoints[9].origin = (10497.6, -2569.65, 216.125);
|
||||
/*1506817041 */waypoints[9].type = "stand";
|
||||
/*1506817041 */waypoints[9].childCount = 3;
|
||||
/*1506817041 */waypoints[9].children[0] = 8;
|
||||
/*1506817041 */waypoints[9].children[1] = 10;
|
||||
/*1506817041 */waypoints[9].children[2] = 11;
|
||||
/*1506817041 */waypoints[10] = spawnstruct();
|
||||
/*1506817041 */waypoints[10].origin = (10604.3, -2435.21, 216.125);
|
||||
/*1506817041 */waypoints[10].type = "stand";
|
||||
/*1506817041 */waypoints[10].childCount = 1;
|
||||
/*1506817041 */waypoints[10].children[0] = 9;
|
||||
/*1506817041 */waypoints[11] = spawnstruct();
|
||||
/*1506817041 */waypoints[11].origin = (10818, -2560.93, 216.125);
|
||||
/*1506817041 */waypoints[11].type = "stand";
|
||||
/*1506817041 */waypoints[11].childCount = 2;
|
||||
/*1506817041 */waypoints[11].children[0] = 9;
|
||||
/*1506817041 */waypoints[11].children[1] = 12;
|
||||
/*1506817041 */waypoints[12] = spawnstruct();
|
||||
/*1506817041 */waypoints[12].origin = (10822.8, -2468.05, 216.125);
|
||||
/*1506817041 */waypoints[12].type = "stand";
|
||||
/*1506817041 */waypoints[12].childCount = 2;
|
||||
/*1506817041 */waypoints[12].children[0] = 11;
|
||||
/*1506817041 */waypoints[12].children[1] = 13;
|
||||
/*1506817041 */waypoints[13] = spawnstruct();
|
||||
/*1506817041 */waypoints[13].origin = (10745.4, -2409.76, 152.125);
|
||||
/*1506817041 */waypoints[13].type = "stand";
|
||||
/*1506817041 */waypoints[13].childCount = 2;
|
||||
/*1506817041 */waypoints[13].children[0] = 12;
|
||||
/*1506817041 */waypoints[13].children[1] = 14;
|
||||
/*1506817041 */waypoints[14] = spawnstruct();
|
||||
/*1506817041 */waypoints[14].origin = (10633.5, -2416.18, 96.125);
|
||||
/*1506817041 */waypoints[14].type = "stand";
|
||||
/*1506817041 */waypoints[14].childCount = 2;
|
||||
/*1506817041 */waypoints[14].children[0] = 13;
|
||||
/*1506817041 */waypoints[14].children[1] = 15;
|
||||
/*1506817041 */waypoints[15] = spawnstruct();
|
||||
/*1506817041 */waypoints[15].origin = (10654.9, -2790.84, 96.125);
|
||||
/*1506817041 */waypoints[15].type = "stand";
|
||||
/*1506817041 */waypoints[15].childCount = 2;
|
||||
/*1506817041 */waypoints[15].children[0] = 14;
|
||||
/*1506817041 */waypoints[15].children[1] = 16;
|
||||
/*1506817041 */waypoints[16] = spawnstruct();
|
||||
/*1506817041 */waypoints[16].origin = (10650.6, -2973.55, 18.125);
|
||||
/*1506817041 */waypoints[16].type = "stand";
|
||||
/*1506817041 */waypoints[16].childCount = 3;
|
||||
/*1506817041 */waypoints[16].children[0] = 15;
|
||||
/*1506817041 */waypoints[16].children[1] = 17;
|
||||
/*1506817041 */waypoints[16].children[2] = 141;
|
||||
/*1506817041 */waypoints[17] = spawnstruct();
|
||||
/*1506817041 */waypoints[17].origin = (10579.1, -3078.44, 18.125);
|
||||
/*1506817041 */waypoints[17].type = "stand";
|
||||
/*1506817041 */waypoints[17].childCount = 2;
|
||||
/*1506817041 */waypoints[17].children[0] = 16;
|
||||
/*1506817041 */waypoints[17].children[1] = 18;
|
||||
/*1506817041 */waypoints[18] = spawnstruct();
|
||||
/*1506817041 */waypoints[18].origin = (10660.7, -3362.53, 14.125);
|
||||
/*1506817041 */waypoints[18].type = "stand";
|
||||
/*1506817041 */waypoints[18].childCount = 5;
|
||||
/*1506817041 */waypoints[18].children[0] = 17;
|
||||
/*1506817041 */waypoints[18].children[1] = 19;
|
||||
/*1506817041 */waypoints[18].children[2] = 20;
|
||||
/*1506817041 */waypoints[18].children[3] = 25;
|
||||
/*1506817041 */waypoints[18].children[4] = 141;
|
||||
/*1506817041 */waypoints[19] = spawnstruct();
|
||||
/*1506817041 */waypoints[19].origin = (10921.1, -3381.99, 14.625);
|
||||
/*1506817041 */waypoints[19].type = "stand";
|
||||
/*1506817041 */waypoints[19].childCount = 3;
|
||||
/*1506817041 */waypoints[19].children[0] = 18;
|
||||
/*1506817041 */waypoints[19].children[1] = 25;
|
||||
/*1506817041 */waypoints[19].children[2] = 132;
|
||||
/*1506817041 */waypoints[20] = spawnstruct();
|
||||
/*1506817041 */waypoints[20].origin = (10445.7, -3431.18, 14.125);
|
||||
/*1506817041 */waypoints[20].type = "stand";
|
||||
/*1506817041 */waypoints[20].childCount = 4;
|
||||
/*1506817041 */waypoints[20].children[0] = 18;
|
||||
/*1506817041 */waypoints[20].children[1] = 26;
|
||||
/*1506817041 */waypoints[20].children[2] = 25;
|
||||
/*1506817041 */waypoints[20].children[3] = 136;
|
||||
/*1506817041 */waypoints[21] = spawnstruct();
|
||||
/*1506817041 */waypoints[21].origin = (9906.35, -3422.47, 26.2029);
|
||||
/*1506817041 */waypoints[21].type = "stand";
|
||||
/*1506817041 */waypoints[21].childCount = 1;
|
||||
/*1506817041 */waypoints[21].children[0] = 137;
|
||||
/*1506817041 */waypoints[22] = spawnstruct();
|
||||
/*1506817041 */waypoints[22].origin = (9892.56, -4035.83, 54.125);
|
||||
/*1506817041 */waypoints[22].type = "stand";
|
||||
/*1506817041 */waypoints[22].childCount = 3;
|
||||
/*1506817041 */waypoints[22].children[0] = 23;
|
||||
/*1506817041 */waypoints[22].children[1] = 24;
|
||||
/*1506817041 */waypoints[22].children[2] = 138;
|
||||
/*1506817041 */waypoints[23] = spawnstruct();
|
||||
/*1506817041 */waypoints[23].origin = (10027.3, -4062.21, 68.3978);
|
||||
/*1506817041 */waypoints[23].type = "stand";
|
||||
/*1506817041 */waypoints[23].childCount = 1;
|
||||
/*1506817041 */waypoints[23].children[0] = 22;
|
||||
/*1506817041 */waypoints[24] = spawnstruct();
|
||||
/*1506817041 */waypoints[24].origin = (9676.63, -4055.47, 192.125);
|
||||
/*1506817041 */waypoints[24].type = "stand";
|
||||
/*1506817041 */waypoints[24].childCount = 3;
|
||||
/*1506817041 */waypoints[24].children[0] = 22;
|
||||
/*1506817041 */waypoints[24].children[1] = 105;
|
||||
/*1506817041 */waypoints[24].children[2] = 106;
|
||||
/*1506817041 */waypoints[25] = spawnstruct();
|
||||
/*1506817041 */waypoints[25].origin = (10689.7, -3646.31, 15.9321);
|
||||
/*1506817041 */waypoints[25].type = "stand";
|
||||
/*1506817041 */waypoints[25].childCount = 5;
|
||||
/*1506817041 */waypoints[25].children[0] = 18;
|
||||
/*1506817041 */waypoints[25].children[1] = 26;
|
||||
/*1506817041 */waypoints[25].children[2] = 19;
|
||||
/*1506817041 */waypoints[25].children[3] = 132;
|
||||
/*1506817041 */waypoints[25].children[4] = 20;
|
||||
/*1506817041 */waypoints[26] = spawnstruct();
|
||||
/*1506817041 */waypoints[26].origin = (10467.3, -3713.04, 14.125);
|
||||
/*1506817041 */waypoints[26].type = "stand";
|
||||
/*1506817041 */waypoints[26].childCount = 2;
|
||||
/*1506817041 */waypoints[26].children[0] = 25;
|
||||
/*1506817041 */waypoints[26].children[1] = 20;
|
||||
/*1506817041 */waypoints[27] = spawnstruct();
|
||||
/*1506817041 */waypoints[27].origin = (11519.8, -3582.07, -113.875);
|
||||
/*1506817041 */waypoints[27].type = "stand";
|
||||
/*1506817041 */waypoints[27].childCount = 1;
|
||||
/*1506817041 */waypoints[27].children[0] = 133;
|
||||
/*1506817041 */waypoints[28] = spawnstruct();
|
||||
/*1506817041 */waypoints[28].origin = (12212.7, -3639.9, 19.125);
|
||||
/*1506817041 */waypoints[28].type = "stand";
|
||||
/*1506817041 */waypoints[28].childCount = 2;
|
||||
/*1506817041 */waypoints[28].children[0] = 30;
|
||||
/*1506817041 */waypoints[28].children[1] = 130;
|
||||
/*1506817041 */waypoints[29] = spawnstruct();
|
||||
/*1506817041 */waypoints[29].origin = (12410, -3580.1, -113.875);
|
||||
/*1506817041 */waypoints[29].type = "stand";
|
||||
/*1506817041 */waypoints[29].childCount = 1;
|
||||
/*1506817041 */waypoints[29].children[0] = 140;
|
||||
/*1506817041 */waypoints[30] = spawnstruct();
|
||||
/*1506817041 */waypoints[30].origin = (12202.2, -3835.72, 18.125);
|
||||
/*1506817041 */waypoints[30].type = "stand";
|
||||
/*1506817041 */waypoints[30].childCount = 3;
|
||||
/*1506817041 */waypoints[30].children[0] = 28;
|
||||
/*1506817041 */waypoints[30].children[1] = 31;
|
||||
/*1506817041 */waypoints[30].children[2] = 34;
|
||||
/*1506817041 */waypoints[31] = spawnstruct();
|
||||
/*1506817041 */waypoints[31].origin = (11966.8, -4120.45, 18.125);
|
||||
/*1506817041 */waypoints[31].type = "stand";
|
||||
/*1506817041 */waypoints[31].childCount = 3;
|
||||
/*1506817041 */waypoints[31].children[0] = 30;
|
||||
/*1506817041 */waypoints[31].children[1] = 32;
|
||||
/*1506817041 */waypoints[31].children[2] = 33;
|
||||
/*1506817041 */waypoints[32] = spawnstruct();
|
||||
/*1506817041 */waypoints[32].origin = (11799.1, -4180.28, 19.125);
|
||||
/*1506817041 */waypoints[32].type = "stand";
|
||||
/*1506817041 */waypoints[32].childCount = 1;
|
||||
/*1506817041 */waypoints[32].children[0] = 31;
|
||||
/*1506817041 */waypoints[33] = spawnstruct();
|
||||
/*1506817041 */waypoints[33].origin = (12161.9, -4305.07, 18.125);
|
||||
/*1506817041 */waypoints[33].type = "stand";
|
||||
/*1506817041 */waypoints[33].childCount = 5;
|
||||
/*1506817041 */waypoints[33].children[0] = 31;
|
||||
/*1506817041 */waypoints[33].children[1] = 34;
|
||||
/*1506817041 */waypoints[33].children[2] = 50;
|
||||
/*1506817041 */waypoints[33].children[3] = 51;
|
||||
/*1506817041 */waypoints[33].children[4] = 43;
|
||||
/*1506817041 */waypoints[34] = spawnstruct();
|
||||
/*1506817041 */waypoints[34].origin = (12521.9, -3929.25, 18.1245);
|
||||
/*1506817041 */waypoints[34].type = "stand";
|
||||
/*1506817041 */waypoints[34].childCount = 3;
|
||||
/*1506817041 */waypoints[34].children[0] = 33;
|
||||
/*1506817041 */waypoints[34].children[1] = 30;
|
||||
/*1506817041 */waypoints[34].children[2] = 35;
|
||||
/*1506817041 */waypoints[35] = spawnstruct();
|
||||
/*1506817041 */waypoints[35].origin = (12923.2, -4100.8, 18.2777);
|
||||
/*1506817041 */waypoints[35].type = "stand";
|
||||
/*1506817041 */waypoints[35].childCount = 3;
|
||||
/*1506817041 */waypoints[35].children[0] = 34;
|
||||
/*1506817041 */waypoints[35].children[1] = 36;
|
||||
/*1506817041 */waypoints[35].children[2] = 37;
|
||||
/*1506817041 */waypoints[36] = spawnstruct();
|
||||
/*1506817041 */waypoints[36].origin = (13047, -4002.86, 19.125);
|
||||
/*1506817041 */waypoints[36].type = "stand";
|
||||
/*1506817041 */waypoints[36].childCount = 1;
|
||||
/*1506817041 */waypoints[36].children[0] = 35;
|
||||
/*1506817041 */waypoints[37] = spawnstruct();
|
||||
/*1506817041 */waypoints[37].origin = (12973.2, -4408.21, 21.125);
|
||||
/*1506817041 */waypoints[37].type = "stand";
|
||||
/*1506817041 */waypoints[37].childCount = 4;
|
||||
/*1506817041 */waypoints[37].children[0] = 35;
|
||||
/*1506817041 */waypoints[37].children[1] = 38;
|
||||
/*1506817041 */waypoints[37].children[2] = 39;
|
||||
/*1506817041 */waypoints[37].children[3] = 40;
|
||||
/*1506817041 */waypoints[38] = spawnstruct();
|
||||
/*1506817041 */waypoints[38].origin = (13387.9, -4426, 18.125);
|
||||
/*1506817041 */waypoints[38].type = "stand";
|
||||
/*1506817041 */waypoints[38].childCount = 1;
|
||||
/*1506817041 */waypoints[38].children[0] = 37;
|
||||
/*1506817041 */waypoints[39] = spawnstruct();
|
||||
/*1506817041 */waypoints[39].origin = (12760.7, -4593.73, 18.4622);
|
||||
/*1506817041 */waypoints[39].type = "stand";
|
||||
/*1506817041 */waypoints[39].childCount = 4;
|
||||
/*1506817041 */waypoints[39].children[0] = 37;
|
||||
/*1506817041 */waypoints[39].children[1] = 40;
|
||||
/*1506817041 */waypoints[39].children[2] = 41;
|
||||
/*1506817041 */waypoints[39].children[3] = 53;
|
||||
/*1506817041 */waypoints[40] = spawnstruct();
|
||||
/*1506817041 */waypoints[40].origin = (13056, -4691.72, 19.125);
|
||||
/*1506817041 */waypoints[40].type = "stand";
|
||||
/*1506817041 */waypoints[40].childCount = 3;
|
||||
/*1506817041 */waypoints[40].children[0] = 39;
|
||||
/*1506817041 */waypoints[40].children[1] = 37;
|
||||
/*1506817041 */waypoints[40].children[2] = 41;
|
||||
/*1506817041 */waypoints[41] = spawnstruct();
|
||||
/*1506817041 */waypoints[41].origin = (12708.7, -4752.57, 19.125);
|
||||
/*1506817041 */waypoints[41].type = "stand";
|
||||
/*1506817041 */waypoints[41].childCount = 3;
|
||||
/*1506817041 */waypoints[41].children[0] = 39;
|
||||
/*1506817041 */waypoints[41].children[1] = 40;
|
||||
/*1506817041 */waypoints[41].children[2] = 42;
|
||||
/*1506817041 */waypoints[42] = spawnstruct();
|
||||
/*1506817041 */waypoints[42].origin = (12459.9, -4868.7, 19.125);
|
||||
/*1506817041 */waypoints[42].type = "stand";
|
||||
/*1506817041 */waypoints[42].childCount = 4;
|
||||
/*1506817041 */waypoints[42].children[0] = 41;
|
||||
/*1506817041 */waypoints[42].children[1] = 43;
|
||||
/*1506817041 */waypoints[42].children[2] = 44;
|
||||
/*1506817041 */waypoints[42].children[3] = 47;
|
||||
/*1506817041 */waypoints[43] = spawnstruct();
|
||||
/*1506817041 */waypoints[43].origin = (12173.7, -4651.65, 18.135);
|
||||
/*1506817041 */waypoints[43].type = "stand";
|
||||
/*1506817041 */waypoints[43].childCount = 5;
|
||||
/*1506817041 */waypoints[43].children[0] = 42;
|
||||
/*1506817041 */waypoints[43].children[1] = 47;
|
||||
/*1506817041 */waypoints[43].children[2] = 50;
|
||||
/*1506817041 */waypoints[43].children[3] = 51;
|
||||
/*1506817041 */waypoints[43].children[4] = 33;
|
||||
/*1506817041 */waypoints[44] = spawnstruct();
|
||||
/*1506817041 */waypoints[44].origin = (12135.5, -5146.77, 18.1867);
|
||||
/*1506817041 */waypoints[44].type = "stand";
|
||||
/*1506817041 */waypoints[44].childCount = 4;
|
||||
/*1506817041 */waypoints[44].children[0] = 42;
|
||||
/*1506817041 */waypoints[44].children[1] = 45;
|
||||
/*1506817041 */waypoints[44].children[2] = 46;
|
||||
/*1506817041 */waypoints[44].children[3] = 47;
|
||||
/*1506817041 */waypoints[45] = spawnstruct();
|
||||
/*1506817041 */waypoints[45].origin = (12405.6, -5124.77, 19.125);
|
||||
/*1506817041 */waypoints[45].type = "stand";
|
||||
/*1506817041 */waypoints[45].childCount = 1;
|
||||
/*1506817041 */waypoints[45].children[0] = 44;
|
||||
/*1506817041 */waypoints[46] = spawnstruct();
|
||||
/*1506817041 */waypoints[46].origin = (11801, -5363.88, 21.125);
|
||||
/*1506817041 */waypoints[46].type = "stand";
|
||||
/*1506817041 */waypoints[46].childCount = 4;
|
||||
/*1506817041 */waypoints[46].children[0] = 44;
|
||||
/*1506817041 */waypoints[46].children[1] = 48;
|
||||
/*1506817041 */waypoints[46].children[2] = 49;
|
||||
/*1506817041 */waypoints[46].children[3] = 58;
|
||||
/*1506817041 */waypoints[47] = spawnstruct();
|
||||
/*1506817041 */waypoints[47].origin = (12067.4, -4815.5, 21.125);
|
||||
/*1506817041 */waypoints[47].type = "stand";
|
||||
/*1506817041 */waypoints[47].childCount = 4;
|
||||
/*1506817041 */waypoints[47].children[0] = 44;
|
||||
/*1506817041 */waypoints[47].children[1] = 43;
|
||||
/*1506817041 */waypoints[47].children[2] = 42;
|
||||
/*1506817041 */waypoints[47].children[3] = 48;
|
||||
/*1506817041 */waypoints[48] = spawnstruct();
|
||||
/*1506817041 */waypoints[48].origin = (11795.7, -4823.76, 21.125);
|
||||
/*1506817041 */waypoints[48].type = "stand";
|
||||
/*1506817041 */waypoints[48].childCount = 2;
|
||||
/*1506817041 */waypoints[48].children[0] = 47;
|
||||
/*1506817041 */waypoints[48].children[1] = 46;
|
||||
/*1506817041 */waypoints[49] = spawnstruct();
|
||||
/*1506817041 */waypoints[49].origin = (11931, -5362.44, 19.125);
|
||||
/*1506817041 */waypoints[49].type = "stand";
|
||||
/*1506817041 */waypoints[49].childCount = 1;
|
||||
/*1506817041 */waypoints[49].children[0] = 46;
|
||||
/*1506817041 */waypoints[50] = spawnstruct();
|
||||
/*1506817041 */waypoints[50].origin = (12006.9, -4490.95, 19.125);
|
||||
/*1506817041 */waypoints[50].type = "stand";
|
||||
/*1506817041 */waypoints[50].childCount = 4;
|
||||
/*1506817041 */waypoints[50].children[0] = 43;
|
||||
/*1506817041 */waypoints[50].children[1] = 33;
|
||||
/*1506817041 */waypoints[50].children[2] = 51;
|
||||
/*1506817041 */waypoints[50].children[3] = 54;
|
||||
/*1506817041 */waypoints[51] = spawnstruct();
|
||||
/*1506817041 */waypoints[51].origin = (12282.6, -4462.28, 18.3459);
|
||||
/*1506817041 */waypoints[51].type = "stand";
|
||||
/*1506817041 */waypoints[51].childCount = 4;
|
||||
/*1506817041 */waypoints[51].children[0] = 43;
|
||||
/*1506817041 */waypoints[51].children[1] = 50;
|
||||
/*1506817041 */waypoints[51].children[2] = 33;
|
||||
/*1506817041 */waypoints[51].children[3] = 52;
|
||||
/*1506817041 */waypoints[52] = spawnstruct();
|
||||
/*1506817041 */waypoints[52].origin = (12410.3, -4503.31, 52.125);
|
||||
/*1506817041 */waypoints[52].type = "stand";
|
||||
/*1506817041 */waypoints[52].childCount = 2;
|
||||
/*1506817041 */waypoints[52].children[0] = 51;
|
||||
/*1506817041 */waypoints[52].children[1] = 53;
|
||||
/*1506817041 */waypoints[53] = spawnstruct();
|
||||
/*1506817041 */waypoints[53].origin = (12645.1, -4560.62, 52.125);
|
||||
/*1506817041 */waypoints[53].type = "stand";
|
||||
/*1506817041 */waypoints[53].childCount = 2;
|
||||
/*1506817041 */waypoints[53].children[0] = 52;
|
||||
/*1506817041 */waypoints[53].children[1] = 39;
|
||||
/*1506817041 */waypoints[54] = spawnstruct();
|
||||
/*1506817041 */waypoints[54].origin = (11698.6, -4480.1, 96.125);
|
||||
/*1506817041 */waypoints[54].type = "stand";
|
||||
/*1506817041 */waypoints[54].childCount = 2;
|
||||
/*1506817041 */waypoints[54].children[0] = 50;
|
||||
/*1506817041 */waypoints[54].children[1] = 55;
|
||||
/*1506817041 */waypoints[55] = spawnstruct();
|
||||
/*1506817041 */waypoints[55].origin = (11482.1, -4553.47, 126.156);
|
||||
/*1506817041 */waypoints[55].type = "stand";
|
||||
/*1506817041 */waypoints[55].childCount = 3;
|
||||
/*1506817041 */waypoints[55].children[0] = 54;
|
||||
/*1506817041 */waypoints[55].children[1] = 56;
|
||||
/*1506817041 */waypoints[55].children[2] = 57;
|
||||
/*1506817041 */waypoints[56] = spawnstruct();
|
||||
/*1506817041 */waypoints[56].origin = (11235.2, -4554.78, 211.125);
|
||||
/*1506817041 */waypoints[56].type = "stand";
|
||||
/*1506817041 */waypoints[56].childCount = 3;
|
||||
/*1506817041 */waypoints[56].children[0] = 55;
|
||||
/*1506817041 */waypoints[56].children[1] = 65;
|
||||
/*1506817041 */waypoints[56].children[2] = 66;
|
||||
/*1506817041 */waypoints[57] = spawnstruct();
|
||||
/*1506817041 */waypoints[57].origin = (11464.7, -4999.42, 97.2314);
|
||||
/*1506817041 */waypoints[57].type = "stand";
|
||||
/*1506817041 */waypoints[57].childCount = 3;
|
||||
/*1506817041 */waypoints[57].children[0] = 55;
|
||||
/*1506817041 */waypoints[57].children[1] = 58;
|
||||
/*1506817041 */waypoints[57].children[2] = 72;
|
||||
/*1506817041 */waypoints[58] = spawnstruct();
|
||||
/*1506817041 */waypoints[58].origin = (11480.2, -5385.74, 96.8375);
|
||||
/*1506817041 */waypoints[58].type = "stand";
|
||||
/*1506817041 */waypoints[58].childCount = 4;
|
||||
/*1506817041 */waypoints[58].children[0] = 57;
|
||||
/*1506817041 */waypoints[58].children[1] = 46;
|
||||
/*1506817041 */waypoints[58].children[2] = 59;
|
||||
/*1506817041 */waypoints[58].children[3] = 60;
|
||||
/*1506817041 */waypoints[59] = spawnstruct();
|
||||
/*1506817041 */waypoints[59].origin = (11491, -5516.33, 97.4038);
|
||||
/*1506817041 */waypoints[59].type = "stand";
|
||||
/*1506817041 */waypoints[59].childCount = 1;
|
||||
/*1506817041 */waypoints[59].children[0] = 58;
|
||||
/*1506817041 */waypoints[60] = spawnstruct();
|
||||
/*1506817041 */waypoints[60].origin = (11317.3, -5421.19, 96.8928);
|
||||
/*1506817041 */waypoints[60].type = "stand";
|
||||
/*1506817041 */waypoints[60].childCount = 2;
|
||||
/*1506817041 */waypoints[60].children[0] = 58;
|
||||
/*1506817041 */waypoints[60].children[1] = 61;
|
||||
/*1506817041 */waypoints[61] = spawnstruct();
|
||||
/*1506817041 */waypoints[61].origin = (11165.4, -5248.1, 108.819);
|
||||
/*1506817041 */waypoints[61].type = "stand";
|
||||
/*1506817041 */waypoints[61].childCount = 4;
|
||||
/*1506817041 */waypoints[61].children[0] = 60;
|
||||
/*1506817041 */waypoints[61].children[1] = 62;
|
||||
/*1506817041 */waypoints[61].children[2] = 63;
|
||||
/*1506817041 */waypoints[61].children[3] = 64;
|
||||
/*1506817041 */waypoints[62] = spawnstruct();
|
||||
/*1506817041 */waypoints[62].origin = (11006.4, -5354.34, 98.1853);
|
||||
/*1506817041 */waypoints[62].type = "stand";
|
||||
/*1506817041 */waypoints[62].childCount = 2;
|
||||
/*1506817041 */waypoints[62].children[0] = 61;
|
||||
/*1506817041 */waypoints[62].children[1] = 73;
|
||||
/*1506817041 */waypoints[63] = spawnstruct();
|
||||
/*1506817041 */waypoints[63].origin = (11309.6, -5174.76, 95.049);
|
||||
/*1506817041 */waypoints[63].type = "stand";
|
||||
/*1506817041 */waypoints[63].childCount = 1;
|
||||
/*1506817041 */waypoints[63].children[0] = 61;
|
||||
/*1506817041 */waypoints[64] = spawnstruct();
|
||||
/*1506817041 */waypoints[64].origin = (11026.9, -5138.06, 99.6359);
|
||||
/*1506817041 */waypoints[64].type = "stand";
|
||||
/*1506817041 */waypoints[64].childCount = 1;
|
||||
/*1506817041 */waypoints[64].children[0] = 61;
|
||||
/*1506817041 */waypoints[65] = spawnstruct();
|
||||
/*1506817041 */waypoints[65].origin = (11112.9, -4385.57, 204.125);
|
||||
/*1506817041 */waypoints[65].type = "stand";
|
||||
/*1506817041 */waypoints[65].childCount = 2;
|
||||
/*1506817041 */waypoints[65].children[0] = 56;
|
||||
/*1506817041 */waypoints[65].children[1] = 66;
|
||||
/*1506817041 */waypoints[66] = spawnstruct();
|
||||
/*1506817041 */waypoints[66].origin = (10968.7, -4467.14, 204.125);
|
||||
/*1506817041 */waypoints[66].type = "stand";
|
||||
/*1506817041 */waypoints[66].childCount = 3;
|
||||
/*1506817041 */waypoints[66].children[0] = 56;
|
||||
/*1506817041 */waypoints[66].children[1] = 65;
|
||||
/*1506817041 */waypoints[66].children[2] = 67;
|
||||
/*1506817041 */waypoints[67] = spawnstruct();
|
||||
/*1506817041 */waypoints[67].origin = (10872.4, -4454.49, 192.125);
|
||||
/*1506817041 */waypoints[67].type = "stand";
|
||||
/*1506817041 */waypoints[67].childCount = 3;
|
||||
/*1506817041 */waypoints[67].children[0] = 66;
|
||||
/*1506817041 */waypoints[67].children[1] = 68;
|
||||
/*1506817041 */waypoints[67].children[2] = 129;
|
||||
/*1506817041 */waypoints[68] = spawnstruct();
|
||||
/*1506817041 */waypoints[68].origin = (10763.4, -4540.31, 192.125);
|
||||
/*1506817041 */waypoints[68].type = "stand";
|
||||
/*1506817041 */waypoints[68].childCount = 2;
|
||||
/*1506817041 */waypoints[68].children[0] = 67;
|
||||
/*1506817041 */waypoints[68].children[1] = 69;
|
||||
/*1506817041 */waypoints[69] = spawnstruct();
|
||||
/*1506817041 */waypoints[69].origin = (10600.2, -4561.1, 98.1714);
|
||||
/*1506817041 */waypoints[69].type = "stand";
|
||||
/*1506817041 */waypoints[69].childCount = 3;
|
||||
/*1506817041 */waypoints[69].children[0] = 68;
|
||||
/*1506817041 */waypoints[69].children[1] = 70;
|
||||
/*1506817041 */waypoints[69].children[2] = 142;
|
||||
/*1506817041 */waypoints[70] = spawnstruct();
|
||||
/*1506817041 */waypoints[70].origin = (10883.2, -4892.49, 100.894);
|
||||
/*1506817041 */waypoints[70].type = "stand";
|
||||
/*1506817041 */waypoints[70].childCount = 5;
|
||||
/*1506817041 */waypoints[70].children[0] = 69;
|
||||
/*1506817041 */waypoints[70].children[1] = 71;
|
||||
/*1506817041 */waypoints[70].children[2] = 72;
|
||||
/*1506817041 */waypoints[70].children[3] = 143;
|
||||
/*1506817041 */waypoints[70].children[4] = 142;
|
||||
/*1506817041 */waypoints[71] = spawnstruct();
|
||||
/*1506817041 */waypoints[71].origin = (10986.5, -4832.67, 100.081);
|
||||
/*1506817041 */waypoints[71].type = "stand";
|
||||
/*1506817041 */waypoints[71].childCount = 1;
|
||||
/*1506817041 */waypoints[71].children[0] = 70;
|
||||
/*1506817041 */waypoints[72] = spawnstruct();
|
||||
/*1506817041 */waypoints[72].origin = (10993.9, -4999.32, 100.625);
|
||||
/*1506817041 */waypoints[72].type = "stand";
|
||||
/*1506817041 */waypoints[72].childCount = 3;
|
||||
/*1506817041 */waypoints[72].children[0] = 70;
|
||||
/*1506817041 */waypoints[72].children[1] = 57;
|
||||
/*1506817041 */waypoints[72].children[2] = 143;
|
||||
/*1506817041 */waypoints[73] = spawnstruct();
|
||||
/*1506817041 */waypoints[73].origin = (10867.4, -5376.29, 100.361);
|
||||
/*1506817041 */waypoints[73].type = "stand";
|
||||
/*1506817041 */waypoints[73].childCount = 3;
|
||||
/*1506817041 */waypoints[73].children[0] = 62;
|
||||
/*1506817041 */waypoints[73].children[1] = 74;
|
||||
/*1506817041 */waypoints[73].children[2] = 143;
|
||||
/*1506817041 */waypoints[74] = spawnstruct();
|
||||
/*1506817041 */waypoints[74].origin = (10678.2, -5499.56, 99.2189);
|
||||
/*1506817041 */waypoints[74].type = "stand";
|
||||
/*1506817041 */waypoints[74].childCount = 4;
|
||||
/*1506817041 */waypoints[74].children[0] = 73;
|
||||
/*1506817041 */waypoints[74].children[1] = 75;
|
||||
/*1506817041 */waypoints[74].children[2] = 76;
|
||||
/*1506817041 */waypoints[74].children[3] = 142;
|
||||
/*1506817041 */waypoints[75] = spawnstruct();
|
||||
/*1506817041 */waypoints[75].origin = (10542.5, -5638.4, 96.6548);
|
||||
/*1506817041 */waypoints[75].type = "stand";
|
||||
/*1506817041 */waypoints[75].childCount = 3;
|
||||
/*1506817041 */waypoints[75].children[0] = 74;
|
||||
/*1506817041 */waypoints[75].children[1] = 76;
|
||||
/*1506817041 */waypoints[75].children[2] = 77;
|
||||
/*1506817041 */waypoints[76] = spawnstruct();
|
||||
/*1506817041 */waypoints[76].origin = (10706, -5699.47, 99.6741);
|
||||
/*1506817041 */waypoints[76].type = "stand";
|
||||
/*1506817041 */waypoints[76].childCount = 2;
|
||||
/*1506817041 */waypoints[76].children[0] = 75;
|
||||
/*1506817041 */waypoints[76].children[1] = 74;
|
||||
/*1506817041 */waypoints[77] = spawnstruct();
|
||||
/*1506817041 */waypoints[77].origin = (10282.4, -5616.48, 194.125);
|
||||
/*1506817041 */waypoints[77].type = "stand";
|
||||
/*1506817041 */waypoints[77].childCount = 3;
|
||||
/*1506817041 */waypoints[77].children[0] = 75;
|
||||
/*1506817041 */waypoints[77].children[1] = 78;
|
||||
/*1506817041 */waypoints[77].children[2] = 79;
|
||||
/*1506817041 */waypoints[78] = spawnstruct();
|
||||
/*1506817041 */waypoints[78].origin = (10145, -5676.78, 194.125);
|
||||
/*1506817041 */waypoints[78].type = "stand";
|
||||
/*1506817041 */waypoints[78].childCount = 1;
|
||||
/*1506817041 */waypoints[78].children[0] = 77;
|
||||
/*1506817041 */waypoints[79] = spawnstruct();
|
||||
/*1506817041 */waypoints[79].origin = (9974.94, -5549.42, 193.125);
|
||||
/*1506817041 */waypoints[79].type = "stand";
|
||||
/*1506817041 */waypoints[79].childCount = 3;
|
||||
/*1506817041 */waypoints[79].children[0] = 77;
|
||||
/*1506817041 */waypoints[79].children[1] = 80;
|
||||
/*1506817041 */waypoints[79].children[2] = 128;
|
||||
/*1506817041 */waypoints[80] = spawnstruct();
|
||||
/*1506817041 */waypoints[80].origin = (9865.28, -5649.96, 194.125);
|
||||
/*1506817041 */waypoints[80].type = "stand";
|
||||
/*1506817041 */waypoints[80].childCount = 2;
|
||||
/*1506817041 */waypoints[80].children[0] = 79;
|
||||
/*1506817041 */waypoints[80].children[1] = 81;
|
||||
/*1506817041 */waypoints[81] = spawnstruct();
|
||||
/*1506817041 */waypoints[81].origin = (9497.68, -5603.95, 193.125);
|
||||
/*1506817041 */waypoints[81].type = "stand";
|
||||
/*1506817041 */waypoints[81].childCount = 3;
|
||||
/*1506817041 */waypoints[81].children[0] = 80;
|
||||
/*1506817041 */waypoints[81].children[1] = 82;
|
||||
/*1506817041 */waypoints[81].children[2] = 83;
|
||||
/*1506817041 */waypoints[82] = spawnstruct();
|
||||
/*1506817041 */waypoints[82].origin = (9323.29, -5643.55, 193.125);
|
||||
/*1506817041 */waypoints[82].type = "stand";
|
||||
/*1506817041 */waypoints[82].childCount = 3;
|
||||
/*1506817041 */waypoints[82].children[0] = 81;
|
||||
/*1506817041 */waypoints[82].children[1] = 83;
|
||||
/*1506817041 */waypoints[82].children[2] = 84;
|
||||
/*1506817041 */waypoints[83] = spawnstruct();
|
||||
/*1506817041 */waypoints[83].origin = (9396.08, -5497.39, 193.125);
|
||||
/*1506817041 */waypoints[83].type = "stand";
|
||||
/*1506817041 */waypoints[83].childCount = 5;
|
||||
/*1506817041 */waypoints[83].children[0] = 82;
|
||||
/*1506817041 */waypoints[83].children[1] = 81;
|
||||
/*1506817041 */waypoints[83].children[2] = 91;
|
||||
/*1506817041 */waypoints[83].children[3] = 92;
|
||||
/*1506817041 */waypoints[83].children[4] = 93;
|
||||
/*1506817041 */waypoints[84] = spawnstruct();
|
||||
/*1506817041 */waypoints[84].origin = (9150.98, -5653.08, 324.125);
|
||||
/*1506817041 */waypoints[84].type = "stand";
|
||||
/*1506817041 */waypoints[84].childCount = 3;
|
||||
/*1506817041 */waypoints[84].children[0] = 82;
|
||||
/*1506817041 */waypoints[84].children[1] = 85;
|
||||
/*1506817041 */waypoints[84].children[2] = 87;
|
||||
/*1506817041 */waypoints[85] = spawnstruct();
|
||||
/*1506817041 */waypoints[85].origin = (8810.36, -5689.73, 320.125);
|
||||
/*1506817041 */waypoints[85].type = "stand";
|
||||
/*1506817041 */waypoints[85].childCount = 3;
|
||||
/*1506817041 */waypoints[85].children[0] = 84;
|
||||
/*1506817041 */waypoints[85].children[1] = 86;
|
||||
/*1506817041 */waypoints[85].children[2] = 88;
|
||||
/*1506817041 */waypoints[86] = spawnstruct();
|
||||
/*1506817041 */waypoints[86].origin = (8811.01, -5301.47, 321.125);
|
||||
/*1506817041 */waypoints[86].type = "stand";
|
||||
/*1506817041 */waypoints[86].childCount = 4;
|
||||
/*1506817041 */waypoints[86].children[0] = 85;
|
||||
/*1506817041 */waypoints[86].children[1] = 87;
|
||||
/*1506817041 */waypoints[86].children[2] = 89;
|
||||
/*1506817041 */waypoints[86].children[3] = 90;
|
||||
/*1506817041 */waypoints[87] = spawnstruct();
|
||||
/*1506817041 */waypoints[87].origin = (9078.59, -5394.84, 320.125);
|
||||
/*1506817041 */waypoints[87].type = "stand";
|
||||
/*1506817041 */waypoints[87].childCount = 2;
|
||||
/*1506817041 */waypoints[87].children[0] = 86;
|
||||
/*1506817041 */waypoints[87].children[1] = 84;
|
||||
/*1506817041 */waypoints[88] = spawnstruct();
|
||||
/*1506817041 */waypoints[88].origin = (8501.94, -5653.46, 320.125);
|
||||
/*1506817041 */waypoints[88].type = "stand";
|
||||
/*1506817041 */waypoints[88].childCount = 2;
|
||||
/*1506817041 */waypoints[88].children[0] = 85;
|
||||
/*1506817041 */waypoints[88].children[1] = 89;
|
||||
/*1506817041 */waypoints[89] = spawnstruct();
|
||||
/*1506817041 */waypoints[89].origin = (8554.51, -5366.66, 320.125);
|
||||
/*1506817041 */waypoints[89].type = "stand";
|
||||
/*1506817041 */waypoints[89].childCount = 2;
|
||||
/*1506817041 */waypoints[89].children[0] = 88;
|
||||
/*1506817041 */waypoints[89].children[1] = 86;
|
||||
/*1506817041 */waypoints[90] = spawnstruct();
|
||||
/*1506817041 */waypoints[90].origin = (8821.93, -5035.48, 190.435);
|
||||
/*1506817041 */waypoints[90].type = "stand";
|
||||
/*1506817041 */waypoints[90].childCount = 4;
|
||||
/*1506817041 */waypoints[90].children[0] = 86;
|
||||
/*1506817041 */waypoints[90].children[1] = 92;
|
||||
/*1506817041 */waypoints[90].children[2] = 94;
|
||||
/*1506817041 */waypoints[90].children[3] = 97;
|
||||
/*1506817041 */waypoints[91] = spawnstruct();
|
||||
/*1506817041 */waypoints[91].origin = (9214.76, -5459.12, 193.125);
|
||||
/*1506817041 */waypoints[91].type = "stand";
|
||||
/*1506817041 */waypoints[91].childCount = 1;
|
||||
/*1506817041 */waypoints[91].children[0] = 83;
|
||||
/*1506817041 */waypoints[92] = spawnstruct();
|
||||
/*1506817041 */waypoints[92].origin = (9224.8, -5249.02, 193.125);
|
||||
/*1506817041 */waypoints[92].type = "stand";
|
||||
/*1506817041 */waypoints[92].childCount = 3;
|
||||
/*1506817041 */waypoints[92].children[0] = 83;
|
||||
/*1506817041 */waypoints[92].children[1] = 93;
|
||||
/*1506817041 */waypoints[92].children[2] = 90;
|
||||
/*1506817041 */waypoints[93] = spawnstruct();
|
||||
/*1506817041 */waypoints[93].origin = (9393.36, -5171.96, 195.125);
|
||||
/*1506817041 */waypoints[93].type = "stand";
|
||||
/*1506817041 */waypoints[93].childCount = 3;
|
||||
/*1506817041 */waypoints[93].children[0] = 92;
|
||||
/*1506817041 */waypoints[93].children[1] = 83;
|
||||
/*1506817041 */waypoints[93].children[2] = 96;
|
||||
/*1506817041 */waypoints[94] = spawnstruct();
|
||||
/*1506817041 */waypoints[94].origin = (8841.39, -4784.67, 195.124);
|
||||
/*1506817041 */waypoints[94].type = "stand";
|
||||
/*1506817041 */waypoints[94].childCount = 4;
|
||||
/*1506817041 */waypoints[94].children[0] = 95;
|
||||
/*1506817041 */waypoints[94].children[1] = 90;
|
||||
/*1506817041 */waypoints[94].children[2] = 97;
|
||||
/*1506817041 */waypoints[94].children[3] = 98;
|
||||
/*1506817041 */waypoints[95] = spawnstruct();
|
||||
/*1506817041 */waypoints[95].origin = (9164.99, -4623.59, 193.125);
|
||||
/*1506817041 */waypoints[95].type = "stand";
|
||||
/*1506817041 */waypoints[95].childCount = 3;
|
||||
/*1506817041 */waypoints[95].children[0] = 94;
|
||||
/*1506817041 */waypoints[95].children[1] = 96;
|
||||
/*1506817041 */waypoints[95].children[2] = 104;
|
||||
/*1506817041 */waypoints[96] = spawnstruct();
|
||||
/*1506817041 */waypoints[96].origin = (9387.46, -4740.8, 195.125);
|
||||
/*1506817041 */waypoints[96].type = "stand";
|
||||
/*1506817041 */waypoints[96].childCount = 3;
|
||||
/*1506817041 */waypoints[96].children[0] = 95;
|
||||
/*1506817041 */waypoints[96].children[1] = 93;
|
||||
/*1506817041 */waypoints[96].children[2] = 124;
|
||||
/*1506817041 */waypoints[97] = spawnstruct();
|
||||
/*1506817041 */waypoints[97].origin = (8486.82, -4853.39, 199.084);
|
||||
/*1506817041 */waypoints[97].type = "stand";
|
||||
/*1506817041 */waypoints[97].childCount = 2;
|
||||
/*1506817041 */waypoints[97].children[0] = 90;
|
||||
/*1506817041 */waypoints[97].children[1] = 94;
|
||||
/*1506817041 */waypoints[98] = spawnstruct();
|
||||
/*1506817041 */waypoints[98].origin = (8533.82, -4507.13, 193.125);
|
||||
/*1506817041 */waypoints[98].type = "stand";
|
||||
/*1506817041 */waypoints[98].childCount = 4;
|
||||
/*1506817041 */waypoints[98].children[0] = 94;
|
||||
/*1506817041 */waypoints[98].children[1] = 99;
|
||||
/*1506817041 */waypoints[98].children[2] = 100;
|
||||
/*1506817041 */waypoints[98].children[3] = 103;
|
||||
/*1506817041 */waypoints[99] = spawnstruct();
|
||||
/*1506817041 */waypoints[99].origin = (8019.03, -4497.36, 192.125);
|
||||
/*1506817041 */waypoints[99].type = "stand";
|
||||
/*1506817041 */waypoints[99].childCount = 1;
|
||||
/*1506817041 */waypoints[99].children[0] = 98;
|
||||
/*1506817041 */waypoints[100] = spawnstruct();
|
||||
/*1506817041 */waypoints[100].origin = (8788.54, -4203.59, 192.137);
|
||||
/*1506817041 */waypoints[100].type = "stand";
|
||||
/*1506817041 */waypoints[100].childCount = 4;
|
||||
/*1506817041 */waypoints[100].children[0] = 98;
|
||||
/*1506817041 */waypoints[100].children[1] = 101;
|
||||
/*1506817041 */waypoints[100].children[2] = 104;
|
||||
/*1506817041 */waypoints[100].children[3] = 107;
|
||||
/*1506817041 */waypoints[101] = spawnstruct();
|
||||
/*1506817041 */waypoints[101].origin = (8574.21, -3925.96, 192.125);
|
||||
/*1506817041 */waypoints[101].type = "stand";
|
||||
/*1506817041 */waypoints[101].childCount = 2;
|
||||
/*1506817041 */waypoints[101].children[0] = 100;
|
||||
/*1506817041 */waypoints[101].children[1] = 102;
|
||||
/*1506817041 */waypoints[102] = spawnstruct();
|
||||
/*1506817041 */waypoints[102].origin = (8412.92, -4060.27, 193.125);
|
||||
/*1506817041 */waypoints[102].type = "stand";
|
||||
/*1506817041 */waypoints[102].childCount = 2;
|
||||
/*1506817041 */waypoints[102].children[0] = 101;
|
||||
/*1506817041 */waypoints[102].children[1] = 103;
|
||||
/*1506817041 */waypoints[103] = spawnstruct();
|
||||
/*1506817041 */waypoints[103].origin = (8437.41, -4319.13, 195.125);
|
||||
/*1506817041 */waypoints[103].type = "stand";
|
||||
/*1506817041 */waypoints[103].childCount = 2;
|
||||
/*1506817041 */waypoints[103].children[0] = 102;
|
||||
/*1506817041 */waypoints[103].children[1] = 98;
|
||||
/*1506817041 */waypoints[104] = spawnstruct();
|
||||
/*1506817041 */waypoints[104].origin = (9173.79, -4299.19, 192.125);
|
||||
/*1506817041 */waypoints[104].type = "stand";
|
||||
/*1506817041 */waypoints[104].childCount = 3;
|
||||
/*1506817041 */waypoints[104].children[0] = 100;
|
||||
/*1506817041 */waypoints[104].children[1] = 95;
|
||||
/*1506817041 */waypoints[104].children[2] = 106;
|
||||
/*1506817041 */waypoints[105] = spawnstruct();
|
||||
/*1506817041 */waypoints[105].origin = (9671.23, -4239.72, 192.125);
|
||||
/*1506817041 */waypoints[105].type = "stand";
|
||||
/*1506817041 */waypoints[105].childCount = 3;
|
||||
/*1506817041 */waypoints[105].children[0] = 24;
|
||||
/*1506817041 */waypoints[105].children[1] = 113;
|
||||
/*1506817041 */waypoints[105].children[2] = 106;
|
||||
/*1506817041 */waypoints[106] = spawnstruct();
|
||||
/*1506817041 */waypoints[106].origin = (9397.84, -4076.85, 193.125);
|
||||
/*1506817041 */waypoints[106].type = "stand";
|
||||
/*1506817041 */waypoints[106].childCount = 5;
|
||||
/*1506817041 */waypoints[106].children[0] = 24;
|
||||
/*1506817041 */waypoints[106].children[1] = 107;
|
||||
/*1506817041 */waypoints[106].children[2] = 108;
|
||||
/*1506817041 */waypoints[106].children[3] = 104;
|
||||
/*1506817041 */waypoints[106].children[4] = 105;
|
||||
/*1506817041 */waypoints[107] = spawnstruct();
|
||||
/*1506817041 */waypoints[107].origin = (8941.5, -4060.95, 192.125);
|
||||
/*1506817041 */waypoints[107].type = "stand";
|
||||
/*1506817041 */waypoints[107].childCount = 3;
|
||||
/*1506817041 */waypoints[107].children[0] = 100;
|
||||
/*1506817041 */waypoints[107].children[1] = 106;
|
||||
/*1506817041 */waypoints[107].children[2] = 109;
|
||||
/*1506817041 */waypoints[108] = spawnstruct();
|
||||
/*1506817041 */waypoints[108].origin = (9256.99, -3805.36, 193.125);
|
||||
/*1506817041 */waypoints[108].type = "stand";
|
||||
/*1506817041 */waypoints[108].childCount = 3;
|
||||
/*1506817041 */waypoints[108].children[0] = 106;
|
||||
/*1506817041 */waypoints[108].children[1] = 109;
|
||||
/*1506817041 */waypoints[108].children[2] = 110;
|
||||
/*1506817041 */waypoints[109] = spawnstruct();
|
||||
/*1506817041 */waypoints[109].origin = (9041.57, -3845.62, 192.125);
|
||||
/*1506817041 */waypoints[109].type = "stand";
|
||||
/*1506817041 */waypoints[109].childCount = 2;
|
||||
/*1506817041 */waypoints[109].children[0] = 108;
|
||||
/*1506817041 */waypoints[109].children[1] = 107;
|
||||
/*1506817041 */waypoints[110] = spawnstruct();
|
||||
/*1506817041 */waypoints[110].origin = (9293.78, -3494.63, 192.125);
|
||||
/*1506817041 */waypoints[110].type = "stand";
|
||||
/*1506817041 */waypoints[110].childCount = 3;
|
||||
/*1506817041 */waypoints[110].children[0] = 108;
|
||||
/*1506817041 */waypoints[110].children[1] = 111;
|
||||
/*1506817041 */waypoints[110].children[2] = 0;
|
||||
/*1506817041 */waypoints[111] = spawnstruct();
|
||||
/*1506817041 */waypoints[111].origin = (9264.63, -3356.25, 192.125);
|
||||
/*1506817041 */waypoints[111].type = "stand";
|
||||
/*1506817041 */waypoints[111].childCount = 1;
|
||||
/*1506817041 */waypoints[111].children[0] = 110;
|
||||
/*1506817041 */waypoints[112] = spawnstruct();
|
||||
/*1506817041 */waypoints[112].origin = (9531.85, -3476.95, 192.125);
|
||||
/*1506817041 */waypoints[112].type = "stand";
|
||||
/*1506817041 */waypoints[112].childCount = 1;
|
||||
/*1506817041 */waypoints[112].children[0] = 0;
|
||||
/*1506817041 */waypoints[113] = spawnstruct();
|
||||
/*1506817041 */waypoints[113].origin = (10061.1, -4247.45, 191.306);
|
||||
/*1506817041 */waypoints[113].type = "stand";
|
||||
/*1506817041 */waypoints[113].childCount = 4;
|
||||
/*1506817041 */waypoints[113].children[0] = 105;
|
||||
/*1506817041 */waypoints[113].children[1] = 114;
|
||||
/*1506817041 */waypoints[113].children[2] = 118;
|
||||
/*1506817041 */waypoints[113].children[3] = 116;
|
||||
/*1506817041 */waypoints[114] = spawnstruct();
|
||||
/*1506817041 */waypoints[114].origin = (10066.5, -4028, 193.125);
|
||||
/*1506817041 */waypoints[114].type = "stand";
|
||||
/*1506817041 */waypoints[114].childCount = 2;
|
||||
/*1506817041 */waypoints[114].children[0] = 113;
|
||||
/*1506817041 */waypoints[114].children[1] = 115;
|
||||
/*1506817041 */waypoints[115] = spawnstruct();
|
||||
/*1506817041 */waypoints[115].origin = (10215.3, -4057.35, 193.125);
|
||||
/*1506817041 */waypoints[115].type = "stand";
|
||||
/*1506817041 */waypoints[115].childCount = 3;
|
||||
/*1506817041 */waypoints[115].children[0] = 114;
|
||||
/*1506817041 */waypoints[115].children[1] = 116;
|
||||
/*1506817041 */waypoints[115].children[2] = 129;
|
||||
/*1506817041 */waypoints[116] = spawnstruct();
|
||||
/*1506817041 */waypoints[116].origin = (10207.7, -4272.09, 192.115);
|
||||
/*1506817041 */waypoints[116].type = "stand";
|
||||
/*1506817041 */waypoints[116].childCount = 3;
|
||||
/*1506817041 */waypoints[116].children[0] = 115;
|
||||
/*1506817041 */waypoints[116].children[1] = 117;
|
||||
/*1506817041 */waypoints[116].children[2] = 113;
|
||||
/*1506817041 */waypoints[117] = spawnstruct();
|
||||
/*1506817041 */waypoints[117].origin = (10260.5, -4512.41, 190.961);
|
||||
/*1506817041 */waypoints[117].type = "stand";
|
||||
/*1506817041 */waypoints[117].childCount = 3;
|
||||
/*1506817041 */waypoints[117].children[0] = 116;
|
||||
/*1506817041 */waypoints[117].children[1] = 118;
|
||||
/*1506817041 */waypoints[117].children[2] = 119;
|
||||
/*1506817041 */waypoints[118] = spawnstruct();
|
||||
/*1506817041 */waypoints[118].origin = (10050, -4466.06, 190.052);
|
||||
/*1506817041 */waypoints[118].type = "stand";
|
||||
/*1506817041 */waypoints[118].childCount = 2;
|
||||
/*1506817041 */waypoints[118].children[0] = 117;
|
||||
/*1506817041 */waypoints[118].children[1] = 113;
|
||||
/*1506817041 */waypoints[119] = spawnstruct();
|
||||
/*1506817041 */waypoints[119].origin = (10244.6, -4727.69, 190.309);
|
||||
/*1506817041 */waypoints[119].type = "stand";
|
||||
/*1506817041 */waypoints[119].childCount = 3;
|
||||
/*1506817041 */waypoints[119].children[0] = 117;
|
||||
/*1506817041 */waypoints[119].children[1] = 120;
|
||||
/*1506817041 */waypoints[119].children[2] = 124;
|
||||
/*1506817041 */waypoints[120] = spawnstruct();
|
||||
/*1506817041 */waypoints[120].origin = (10262.3, -4895.25, 192.125);
|
||||
/*1506817041 */waypoints[120].type = "stand";
|
||||
/*1506817041 */waypoints[120].childCount = 3;
|
||||
/*1506817041 */waypoints[120].children[0] = 119;
|
||||
/*1506817041 */waypoints[120].children[1] = 121;
|
||||
/*1506817041 */waypoints[120].children[2] = 123;
|
||||
/*1506817041 */waypoints[121] = spawnstruct();
|
||||
/*1506817041 */waypoints[121].origin = (10237.2, -5151.75, 192.125);
|
||||
/*1506817041 */waypoints[121].type = "stand";
|
||||
/*1506817041 */waypoints[121].childCount = 2;
|
||||
/*1506817041 */waypoints[121].children[0] = 120;
|
||||
/*1506817041 */waypoints[121].children[1] = 122;
|
||||
/*1506817041 */waypoints[122] = spawnstruct();
|
||||
/*1506817041 */waypoints[122].origin = (9893.58, -5132.98, 192.125);
|
||||
/*1506817041 */waypoints[122].type = "stand";
|
||||
/*1506817041 */waypoints[122].childCount = 4;
|
||||
/*1506817041 */waypoints[122].children[0] = 121;
|
||||
/*1506817041 */waypoints[122].children[1] = 123;
|
||||
/*1506817041 */waypoints[122].children[2] = 126;
|
||||
/*1506817041 */waypoints[122].children[3] = 128;
|
||||
/*1506817041 */waypoints[123] = spawnstruct();
|
||||
/*1506817041 */waypoints[123].origin = (9904.83, -4886.59, 192.125);
|
||||
/*1506817041 */waypoints[123].type = "stand";
|
||||
/*1506817041 */waypoints[123].childCount = 3;
|
||||
/*1506817041 */waypoints[123].children[0] = 122;
|
||||
/*1506817041 */waypoints[123].children[1] = 120;
|
||||
/*1506817041 */waypoints[123].children[2] = 126;
|
||||
/*1506817041 */waypoints[124] = spawnstruct();
|
||||
/*1506817041 */waypoints[124].origin = (9569.04, -4714.47, 192.125);
|
||||
/*1506817041 */waypoints[124].type = "stand";
|
||||
/*1506817041 */waypoints[124].childCount = 4;
|
||||
/*1506817041 */waypoints[124].children[0] = 119;
|
||||
/*1506817041 */waypoints[124].children[1] = 96;
|
||||
/*1506817041 */waypoints[124].children[2] = 125;
|
||||
/*1506817041 */waypoints[124].children[3] = 126;
|
||||
/*1506817041 */waypoints[125] = spawnstruct();
|
||||
/*1506817041 */waypoints[125].origin = (9526.24, -4838.69, 192.125);
|
||||
/*1506817041 */waypoints[125].type = "stand";
|
||||
/*1506817041 */waypoints[125].childCount = 1;
|
||||
/*1506817041 */waypoints[125].children[0] = 124;
|
||||
/*1506817041 */waypoints[126] = spawnstruct();
|
||||
/*1506817041 */waypoints[126].origin = (9747.77, -4951.34, 192.125);
|
||||
/*1506817041 */waypoints[126].type = "stand";
|
||||
/*1506817041 */waypoints[126].childCount = 4;
|
||||
/*1506817041 */waypoints[126].children[0] = 124;
|
||||
/*1506817041 */waypoints[126].children[1] = 123;
|
||||
/*1506817041 */waypoints[126].children[2] = 127;
|
||||
/*1506817041 */waypoints[126].children[3] = 122;
|
||||
/*1506817041 */waypoints[127] = spawnstruct();
|
||||
/*1506817041 */waypoints[127].origin = (9553.63, -5123.39, 192.125);
|
||||
/*1506817041 */waypoints[127].type = "stand";
|
||||
/*1506817041 */waypoints[127].childCount = 1;
|
||||
/*1506817041 */waypoints[127].children[0] = 126;
|
||||
/*1506817041 */waypoints[128] = spawnstruct();
|
||||
/*1506817041 */waypoints[128].origin = (9969.54, -5345.23, 192.125);
|
||||
/*1506817041 */waypoints[128].type = "stand";
|
||||
/*1506817041 */waypoints[128].childCount = 2;
|
||||
/*1506817041 */waypoints[128].children[0] = 122;
|
||||
/*1506817041 */waypoints[128].children[1] = 79;
|
||||
/*1506817041 */waypoints[129] = spawnstruct();
|
||||
/*1506817041 */waypoints[129].origin = (10896.6, -4027.08, 192.125);
|
||||
/*1506817041 */waypoints[129].type = "stand";
|
||||
/*1506817041 */waypoints[129].childCount = 2;
|
||||
/*1506817041 */waypoints[129].children[0] = 115;
|
||||
/*1506817041 */waypoints[129].children[1] = 67;
|
||||
/*1506817041 */waypoints[130] = spawnstruct();
|
||||
/*1506817041 */waypoints[130].origin = (12017.5, -3556.96, -112.174);
|
||||
/*1506817041 */waypoints[130].type = "stand";
|
||||
/*1506817041 */waypoints[130].childCount = 2;
|
||||
/*1506817041 */waypoints[130].children[0] = 28;
|
||||
/*1506817041 */waypoints[130].children[1] = 131;
|
||||
/*1506817041 */waypoints[131] = spawnstruct();
|
||||
/*1506817041 */waypoints[131].origin = (11798.7, -3511.33, -113.875);
|
||||
/*1506817041 */waypoints[131].type = "stand";
|
||||
/*1506817041 */waypoints[131].childCount = 4;
|
||||
/*1506817041 */waypoints[131].children[0] = 130;
|
||||
/*1506817041 */waypoints[131].children[1] = 134;
|
||||
/*1506817041 */waypoints[131].children[2] = 135;
|
||||
/*1506817041 */waypoints[131].children[3] = 139;
|
||||
/*1506817041 */waypoints[132] = spawnstruct();
|
||||
/*1506817041 */waypoints[132].origin = (10921.8, -3652.08, 8.80361);
|
||||
/*1506817041 */waypoints[132].type = "stand";
|
||||
/*1506817041 */waypoints[132].childCount = 3;
|
||||
/*1506817041 */waypoints[132].children[0] = 25;
|
||||
/*1506817041 */waypoints[132].children[1] = 19;
|
||||
/*1506817041 */waypoints[132].children[2] = 144;
|
||||
/*1506817041 */waypoints[133] = spawnstruct();
|
||||
/*1506817041 */waypoints[133].origin = (11476.4, -3659.44, -113.875);
|
||||
/*1506817041 */waypoints[133].type = "stand";
|
||||
/*1506817041 */waypoints[133].childCount = 3;
|
||||
/*1506817041 */waypoints[133].children[0] = 27;
|
||||
/*1506817041 */waypoints[133].children[1] = 135;
|
||||
/*1506817041 */waypoints[133].children[2] = 144;
|
||||
/*1506817041 */waypoints[134] = spawnstruct();
|
||||
/*1506817041 */waypoints[134].origin = (11813, -3651.89, -113.875);
|
||||
/*1506817041 */waypoints[134].type = "stand";
|
||||
/*1506817041 */waypoints[134].childCount = 2;
|
||||
/*1506817041 */waypoints[134].children[0] = 131;
|
||||
/*1506817041 */waypoints[134].children[1] = 135;
|
||||
/*1506817041 */waypoints[135] = spawnstruct();
|
||||
/*1506817041 */waypoints[135].origin = (11675.3, -3642.9, -113.875);
|
||||
/*1506817041 */waypoints[135].type = "stand";
|
||||
/*1506817041 */waypoints[135].childCount = 3;
|
||||
/*1506817041 */waypoints[135].children[0] = 131;
|
||||
/*1506817041 */waypoints[135].children[1] = 133;
|
||||
/*1506817041 */waypoints[135].children[2] = 134;
|
||||
/*1506817041 */waypoints[136] = spawnstruct();
|
||||
/*1506817041 */waypoints[136].origin = (10179.7, -3437.49, 19.4289);
|
||||
/*1506817041 */waypoints[136].type = "stand";
|
||||
/*1506817041 */waypoints[136].childCount = 2;
|
||||
/*1506817041 */waypoints[136].children[0] = 20;
|
||||
/*1506817041 */waypoints[136].children[1] = 137;
|
||||
/*1506817041 */waypoints[137] = spawnstruct();
|
||||
/*1506817041 */waypoints[137].origin = (9975.14, -3583.56, 31.6946);
|
||||
/*1506817041 */waypoints[137].type = "stand";
|
||||
/*1506817041 */waypoints[137].childCount = 3;
|
||||
/*1506817041 */waypoints[137].children[0] = 136;
|
||||
/*1506817041 */waypoints[137].children[1] = 138;
|
||||
/*1506817041 */waypoints[137].children[2] = 21;
|
||||
/*1506817041 */waypoints[138] = spawnstruct();
|
||||
/*1506817041 */waypoints[138].origin = (9963.42, -3874.17, 54.125);
|
||||
/*1506817041 */waypoints[138].type = "stand";
|
||||
/*1506817041 */waypoints[138].childCount = 2;
|
||||
/*1506817041 */waypoints[138].children[0] = 137;
|
||||
/*1506817041 */waypoints[138].children[1] = 22;
|
||||
/*1506817041 */waypoints[139] = spawnstruct();
|
||||
/*1506817041 */waypoints[139].origin = (12033.6, -3438.26, -103.45);
|
||||
/*1506817041 */waypoints[139].type = "stand";
|
||||
/*1506817041 */waypoints[139].childCount = 2;
|
||||
/*1506817041 */waypoints[139].children[0] = 140;
|
||||
/*1506817041 */waypoints[139].children[1] = 131;
|
||||
/*1506817041 */waypoints[140] = spawnstruct();
|
||||
/*1506817041 */waypoints[140].origin = (12187.7, -3458.61, -108.841);
|
||||
/*1506817041 */waypoints[140].type = "stand";
|
||||
/*1506817041 */waypoints[140].childCount = 2;
|
||||
/*1506817041 */waypoints[140].children[0] = 139;
|
||||
/*1506817041 */waypoints[140].children[1] = 29;
|
||||
/*1506817041 */waypoints[141] = spawnstruct();
|
||||
/*1506817041 */waypoints[141].origin = (10743, -3063.22, 18.125);
|
||||
/*1506817041 */waypoints[141].type = "stand";
|
||||
/*1506817041 */waypoints[141].childCount = 2;
|
||||
/*1506817041 */waypoints[141].children[0] = 16;
|
||||
/*1506817041 */waypoints[141].children[1] = 18;
|
||||
/*1506817041 */waypoints[142] = spawnstruct();
|
||||
/*1506817041 */waypoints[142].origin = (10603.1, -5082.81, 98.3336);
|
||||
/*1506817041 */waypoints[142].type = "stand";
|
||||
/*1506817041 */waypoints[142].childCount = 4;
|
||||
/*1506817041 */waypoints[142].children[0] = 74;
|
||||
/*1506817041 */waypoints[142].children[1] = 143;
|
||||
/*1506817041 */waypoints[142].children[2] = 69;
|
||||
/*1506817041 */waypoints[142].children[3] = 70;
|
||||
/*1506817041 */waypoints[143] = spawnstruct();
|
||||
/*1506817041 */waypoints[143].origin = (10882.9, -5028.97, 101.318);
|
||||
/*1506817041 */waypoints[143].type = "stand";
|
||||
/*1506817041 */waypoints[143].childCount = 4;
|
||||
/*1506817041 */waypoints[143].children[0] = 72;
|
||||
/*1506817041 */waypoints[143].children[1] = 70;
|
||||
/*1506817041 */waypoints[143].children[2] = 73;
|
||||
/*1506817041 */waypoints[143].children[3] = 142;
|
||||
/*1506817041 */waypoints[144] = spawnstruct();
|
||||
/*1506817041 */waypoints[144].origin = (11226.7, -3648.92, -113.875);
|
||||
/*1506817041 */waypoints[144].type = "stand";
|
||||
/*1506817041 */waypoints[144].childCount = 2;
|
||||
/*1506817041 */waypoints[144].children[0] = 133;
|
||||
/*1506817041 */waypoints[144].children[1] = 132;
|
||||
/*1506817041 */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
@@ -1,982 +0,0 @@
|
||||
Dome()
|
||||
{
|
||||
/*1608845813 */waypoints = [];
|
||||
/*1608845813 */waypoints[0] = spawnstruct();
|
||||
/*1608845813 */waypoints[0].origin = (926.252, 1164.99, 395.125);
|
||||
/*1608845813 */waypoints[0].type = "stand";
|
||||
/*1608845813 */waypoints[0].childCount = 2;
|
||||
/*1608845813 */waypoints[0].children[0] = 1;
|
||||
/*1608845813 */waypoints[0].children[1] = 131;
|
||||
/*1608845813 */waypoints[1] = spawnstruct();
|
||||
/*1608845813 */waypoints[1].origin = (924.592, 1464.43, 392.125);
|
||||
/*1608845813 */waypoints[1].type = "stand";
|
||||
/*1608845813 */waypoints[1].childCount = 2;
|
||||
/*1608845813 */waypoints[1].children[0] = 0;
|
||||
/*1608845813 */waypoints[1].children[1] = 2;
|
||||
/*1608845813 */waypoints[2] = spawnstruct();
|
||||
/*1608845813 */waypoints[2].origin = (1018.9, 1527.51, 392.125);
|
||||
/*1608845813 */waypoints[2].type = "stand";
|
||||
/*1608845813 */waypoints[2].childCount = 3;
|
||||
/*1608845813 */waypoints[2].children[0] = 1;
|
||||
/*1608845813 */waypoints[2].children[1] = 3;
|
||||
/*1608845813 */waypoints[2].children[2] = 4;
|
||||
/*1608845813 */waypoints[3] = spawnstruct();
|
||||
/*1608845813 */waypoints[3].origin = (1015.72, 1767.82, 392.125);
|
||||
/*1608845813 */waypoints[3].type = "stand";
|
||||
/*1608845813 */waypoints[3].childCount = 1;
|
||||
/*1608845813 */waypoints[3].children[0] = 2;
|
||||
/*1608845813 */waypoints[4] = spawnstruct();
|
||||
/*1608845813 */waypoints[4].origin = (1276.17, 1528.78, 392.125);
|
||||
/*1608845813 */waypoints[4].type = "stand";
|
||||
/*1608845813 */waypoints[4].childCount = 2;
|
||||
/*1608845813 */waypoints[4].children[0] = 2;
|
||||
/*1608845813 */waypoints[4].children[1] = 5;
|
||||
/*1608845813 */waypoints[5] = spawnstruct();
|
||||
/*1608845813 */waypoints[5].origin = (1273.37, 1254.4, 392.125);
|
||||
/*1608845813 */waypoints[5].type = "stand";
|
||||
/*1608845813 */waypoints[5].childCount = 3;
|
||||
/*1608845813 */waypoints[5].children[0] = 4;
|
||||
/*1608845813 */waypoints[5].children[1] = 6;
|
||||
/*1608845813 */waypoints[5].children[2] = 134;
|
||||
/*1608845813 */waypoints[6] = spawnstruct();
|
||||
/*1608845813 */waypoints[6].origin = (1188.9, 1168.97, 392.125);
|
||||
/*1608845813 */waypoints[6].type = "stand";
|
||||
/*1608845813 */waypoints[6].childCount = 3;
|
||||
/*1608845813 */waypoints[6].children[0] = 5;
|
||||
/*1608845813 */waypoints[6].children[1] = 131;
|
||||
/*1608845813 */waypoints[6].children[2] = 134;
|
||||
/*1608845813 */waypoints[7] = spawnstruct();
|
||||
/*1608845813 */waypoints[7].origin = (811.66, 1596.18, 226.125);
|
||||
/*1608845813 */waypoints[7].type = "stand";
|
||||
/*1608845813 */waypoints[7].childCount = 5;
|
||||
/*1608845813 */waypoints[7].children[0] = 70;
|
||||
/*1608845813 */waypoints[7].children[1] = 72;
|
||||
/*1608845813 */waypoints[7].children[2] = 113;
|
||||
/*1608845813 */waypoints[7].children[3] = 114;
|
||||
/*1608845813 */waypoints[7].children[4] = 132;
|
||||
/*1608845813 */waypoints[8] = spawnstruct();
|
||||
/*1608845813 */waypoints[8].origin = (915.58, 1830.17, 221.467);
|
||||
/*1608845813 */waypoints[8].type = "stand";
|
||||
/*1608845813 */waypoints[8].childCount = 1;
|
||||
/*1608845813 */waypoints[8].children[0] = 9;
|
||||
/*1608845813 */waypoints[9] = spawnstruct();
|
||||
/*1608845813 */waypoints[9].origin = (996.443, 2141.69, 226.125);
|
||||
/*1608845813 */waypoints[9].type = "stand";
|
||||
/*1608845813 */waypoints[9].childCount = 5;
|
||||
/*1608845813 */waypoints[9].children[0] = 10;
|
||||
/*1608845813 */waypoints[9].children[1] = 11;
|
||||
/*1608845813 */waypoints[9].children[2] = 12;
|
||||
/*1608845813 */waypoints[9].children[3] = 8;
|
||||
/*1608845813 */waypoints[9].children[4] = 132;
|
||||
/*1608845813 */waypoints[10] = spawnstruct();
|
||||
/*1608845813 */waypoints[10].origin = (970.504, 2299.73, 226.016);
|
||||
/*1608845813 */waypoints[10].type = "stand";
|
||||
/*1608845813 */waypoints[10].childCount = 1;
|
||||
/*1608845813 */waypoints[10].children[0] = 9;
|
||||
/*1608845813 */waypoints[11] = spawnstruct();
|
||||
/*1608845813 */waypoints[11].origin = (1052.08, 2296.65, 226.125);
|
||||
/*1608845813 */waypoints[11].type = "stand";
|
||||
/*1608845813 */waypoints[11].childCount = 1;
|
||||
/*1608845813 */waypoints[11].children[0] = 9;
|
||||
/*1608845813 */waypoints[12] = spawnstruct();
|
||||
/*1608845813 */waypoints[12].origin = (820.473, 2149.51, 226.752);
|
||||
/*1608845813 */waypoints[12].type = "stand";
|
||||
/*1608845813 */waypoints[12].childCount = 5;
|
||||
/*1608845813 */waypoints[12].children[0] = 9;
|
||||
/*1608845813 */waypoints[12].children[1] = 110;
|
||||
/*1608845813 */waypoints[12].children[2] = 111;
|
||||
/*1608845813 */waypoints[12].children[3] = 119;
|
||||
/*1608845813 */waypoints[12].children[4] = 112;
|
||||
/*1608845813 */waypoints[13] = spawnstruct();
|
||||
/*1608845813 */waypoints[13].origin = (203.375, 1561.45, 226.125);
|
||||
/*1608845813 */waypoints[13].type = "stand";
|
||||
/*1608845813 */waypoints[13].childCount = 4;
|
||||
/*1608845813 */waypoints[13].children[0] = 14;
|
||||
/*1608845813 */waypoints[13].children[1] = 74;
|
||||
/*1608845813 */waypoints[13].children[2] = 75;
|
||||
/*1608845813 */waypoints[13].children[3] = 71;
|
||||
/*1608845813 */waypoints[14] = spawnstruct();
|
||||
/*1608845813 */waypoints[14].origin = (196.612, 1658.35, 226.125);
|
||||
/*1608845813 */waypoints[14].type = "stand";
|
||||
/*1608845813 */waypoints[14].childCount = 3;
|
||||
/*1608845813 */waypoints[14].children[0] = 13;
|
||||
/*1608845813 */waypoints[14].children[1] = 16;
|
||||
/*1608845813 */waypoints[14].children[2] = 124;
|
||||
/*1608845813 */waypoints[15] = spawnstruct();
|
||||
/*1608845813 */waypoints[15].origin = (304.594, 1783.22, 226.125);
|
||||
/*1608845813 */waypoints[15].type = "stand";
|
||||
/*1608845813 */waypoints[15].childCount = 4;
|
||||
/*1608845813 */waypoints[15].children[0] = 115;
|
||||
/*1608845813 */waypoints[15].children[1] = 116;
|
||||
/*1608845813 */waypoints[15].children[2] = 120;
|
||||
/*1608845813 */waypoints[15].children[3] = 124;
|
||||
/*1608845813 */waypoints[16] = spawnstruct();
|
||||
/*1608845813 */waypoints[16].origin = (-139.69, 1659.78, 226.125);
|
||||
/*1608845813 */waypoints[16].type = "stand";
|
||||
/*1608845813 */waypoints[16].childCount = 3;
|
||||
/*1608845813 */waypoints[16].children[0] = 17;
|
||||
/*1608845813 */waypoints[16].children[1] = 18;
|
||||
/*1608845813 */waypoints[16].children[2] = 14;
|
||||
/*1608845813 */waypoints[17] = spawnstruct();
|
||||
/*1608845813 */waypoints[17].origin = (-149.075, 1564.27, 233.426);
|
||||
/*1608845813 */waypoints[17].type = "stand";
|
||||
/*1608845813 */waypoints[17].childCount = 3;
|
||||
/*1608845813 */waypoints[17].children[0] = 16;
|
||||
/*1608845813 */waypoints[17].children[1] = 95;
|
||||
/*1608845813 */waypoints[17].children[2] = 96;
|
||||
/*1608845813 */waypoints[18] = spawnstruct();
|
||||
/*1608845813 */waypoints[18].origin = (-266.982, 1798.47, 226.125);
|
||||
/*1608845813 */waypoints[18].type = "stand";
|
||||
/*1608845813 */waypoints[18].childCount = 3;
|
||||
/*1608845813 */waypoints[18].children[0] = 16;
|
||||
/*1608845813 */waypoints[18].children[1] = 90;
|
||||
/*1608845813 */waypoints[18].children[2] = 91;
|
||||
/*1608845813 */waypoints[19] = spawnstruct();
|
||||
/*1608845813 */waypoints[19].origin = (-713.514, 1594.13, 226.125);
|
||||
/*1608845813 */waypoints[19].type = "stand";
|
||||
/*1608845813 */waypoints[19].childCount = 3;
|
||||
/*1608845813 */waypoints[19].children[0] = 20;
|
||||
/*1608845813 */waypoints[19].children[1] = 92;
|
||||
/*1608845813 */waypoints[19].children[2] = 94;
|
||||
/*1608845813 */waypoints[20] = spawnstruct();
|
||||
/*1608845813 */waypoints[20].origin = (-910.949, 1593.18, 226.125);
|
||||
/*1608845813 */waypoints[20].type = "stand";
|
||||
/*1608845813 */waypoints[20].childCount = 4;
|
||||
/*1608845813 */waypoints[20].children[0] = 19;
|
||||
/*1608845813 */waypoints[20].children[1] = 21;
|
||||
/*1608845813 */waypoints[20].children[2] = 22;
|
||||
/*1608845813 */waypoints[20].children[3] = 23;
|
||||
/*1608845813 */waypoints[21] = spawnstruct();
|
||||
/*1608845813 */waypoints[21].origin = (-817.924, 1466.15, 226.125);
|
||||
/*1608845813 */waypoints[21].type = "stand";
|
||||
/*1608845813 */waypoints[21].childCount = 1;
|
||||
/*1608845813 */waypoints[21].children[0] = 20;
|
||||
/*1608845813 */waypoints[22] = spawnstruct();
|
||||
/*1608845813 */waypoints[22].origin = (-1129.26, 1567.54, 226.125);
|
||||
/*1608845813 */waypoints[22].type = "stand";
|
||||
/*1608845813 */waypoints[22].childCount = 2;
|
||||
/*1608845813 */waypoints[22].children[0] = 20;
|
||||
/*1608845813 */waypoints[22].children[1] = 105;
|
||||
/*1608845813 */waypoints[23] = spawnstruct();
|
||||
/*1608845813 */waypoints[23].origin = (-905.231, 1949.21, 226.125);
|
||||
/*1608845813 */waypoints[23].type = "stand";
|
||||
/*1608845813 */waypoints[23].childCount = 3;
|
||||
/*1608845813 */waypoints[23].children[0] = 24;
|
||||
/*1608845813 */waypoints[23].children[1] = 25;
|
||||
/*1608845813 */waypoints[23].children[2] = 20;
|
||||
/*1608845813 */waypoints[24] = spawnstruct();
|
||||
/*1608845813 */waypoints[24].origin = (-809.313, 1952.04, 226.125);
|
||||
/*1608845813 */waypoints[24].type = "stand";
|
||||
/*1608845813 */waypoints[24].childCount = 1;
|
||||
/*1608845813 */waypoints[24].children[0] = 23;
|
||||
/*1608845813 */waypoints[25] = spawnstruct();
|
||||
/*1608845813 */waypoints[25].origin = (-804.635, 2079.25, 237.617);
|
||||
/*1608845813 */waypoints[25].type = "stand";
|
||||
/*1608845813 */waypoints[25].childCount = 2;
|
||||
/*1608845813 */waypoints[25].children[0] = 23;
|
||||
/*1608845813 */waypoints[25].children[1] = 26;
|
||||
/*1608845813 */waypoints[26] = spawnstruct();
|
||||
/*1608845813 */waypoints[26].origin = (-709.997, 2092.62, 230.377);
|
||||
/*1608845813 */waypoints[26].type = "stand";
|
||||
/*1608845813 */waypoints[26].childCount = 4;
|
||||
/*1608845813 */waypoints[26].children[0] = 25;
|
||||
/*1608845813 */waypoints[26].children[1] = 88;
|
||||
/*1608845813 */waypoints[26].children[2] = 89;
|
||||
/*1608845813 */waypoints[26].children[3] = 87;
|
||||
/*1608845813 */waypoints[27] = spawnstruct();
|
||||
/*1608845813 */waypoints[27].origin = (-78.1181, 332.203, 138.125);
|
||||
/*1608845813 */waypoints[27].type = "stand";
|
||||
/*1608845813 */waypoints[27].childCount = 2;
|
||||
/*1608845813 */waypoints[27].children[0] = 56;
|
||||
/*1608845813 */waypoints[27].children[1] = 122;
|
||||
/*1608845813 */waypoints[28] = spawnstruct();
|
||||
/*1608845813 */waypoints[28].origin = (-532.043, 711.134, 136.125);
|
||||
/*1608845813 */waypoints[28].type = "stand";
|
||||
/*1608845813 */waypoints[28].childCount = 5;
|
||||
/*1608845813 */waypoints[28].children[0] = 31;
|
||||
/*1608845813 */waypoints[28].children[1] = 34;
|
||||
/*1608845813 */waypoints[28].children[2] = 35;
|
||||
/*1608845813 */waypoints[28].children[3] = 36;
|
||||
/*1608845813 */waypoints[28].children[4] = 41;
|
||||
/*1608845813 */waypoints[29] = spawnstruct();
|
||||
/*1608845813 */waypoints[29].origin = (-730.973, 303.048, 137.082);
|
||||
/*1608845813 */waypoints[29].type = "stand";
|
||||
/*1608845813 */waypoints[29].childCount = 1;
|
||||
/*1608845813 */waypoints[29].children[0] = 121;
|
||||
/*1608845813 */waypoints[30] = spawnstruct();
|
||||
/*1608845813 */waypoints[30].origin = (-642.995, 455.505, 146.352);
|
||||
/*1608845813 */waypoints[30].type = "stand";
|
||||
/*1608845813 */waypoints[30].childCount = 4;
|
||||
/*1608845813 */waypoints[30].children[0] = 31;
|
||||
/*1608845813 */waypoints[30].children[1] = 32;
|
||||
/*1608845813 */waypoints[30].children[2] = 121;
|
||||
/*1608845813 */waypoints[30].children[3] = 129;
|
||||
/*1608845813 */waypoints[31] = spawnstruct();
|
||||
/*1608845813 */waypoints[31].origin = (-540.233, 514.393, 136.125);
|
||||
/*1608845813 */waypoints[31].type = "stand";
|
||||
/*1608845813 */waypoints[31].childCount = 4;
|
||||
/*1608845813 */waypoints[31].children[0] = 28;
|
||||
/*1608845813 */waypoints[31].children[1] = 30;
|
||||
/*1608845813 */waypoints[31].children[2] = 37;
|
||||
/*1608845813 */waypoints[31].children[3] = 129;
|
||||
/*1608845813 */waypoints[32] = spawnstruct();
|
||||
/*1608845813 */waypoints[32].origin = (-738.192, 555.414, 176.471);
|
||||
/*1608845813 */waypoints[32].type = "stand";
|
||||
/*1608845813 */waypoints[32].childCount = 2;
|
||||
/*1608845813 */waypoints[32].children[0] = 30;
|
||||
/*1608845813 */waypoints[32].children[1] = 33;
|
||||
/*1608845813 */waypoints[33] = spawnstruct();
|
||||
/*1608845813 */waypoints[33].origin = (-741.388, 829.598, 227.125);
|
||||
/*1608845813 */waypoints[33].type = "stand";
|
||||
/*1608845813 */waypoints[33].childCount = 3;
|
||||
/*1608845813 */waypoints[33].children[0] = 32;
|
||||
/*1608845813 */waypoints[33].children[1] = 104;
|
||||
/*1608845813 */waypoints[33].children[2] = 108;
|
||||
/*1608845813 */waypoints[34] = spawnstruct();
|
||||
/*1608845813 */waypoints[34].origin = (-619.429, 711.061, 136.125);
|
||||
/*1608845813 */waypoints[34].type = "stand";
|
||||
/*1608845813 */waypoints[34].childCount = 1;
|
||||
/*1608845813 */waypoints[34].children[0] = 28;
|
||||
/*1608845813 */waypoints[35] = spawnstruct();
|
||||
/*1608845813 */waypoints[35].origin = (-631.98, 766.786, 136.125);
|
||||
/*1608845813 */waypoints[35].type = "stand";
|
||||
/*1608845813 */waypoints[35].childCount = 1;
|
||||
/*1608845813 */waypoints[35].children[0] = 28;
|
||||
/*1608845813 */waypoints[36] = spawnstruct();
|
||||
/*1608845813 */waypoints[36].origin = (-500.58, 621.164, 136.125);
|
||||
/*1608845813 */waypoints[36].type = "stand";
|
||||
/*1608845813 */waypoints[36].childCount = 1;
|
||||
/*1608845813 */waypoints[36].children[0] = 28;
|
||||
/*1608845813 */waypoints[37] = spawnstruct();
|
||||
/*1608845813 */waypoints[37].origin = (-488.748, 408.252, 136.125);
|
||||
/*1608845813 */waypoints[37].type = "stand";
|
||||
/*1608845813 */waypoints[37].childCount = 1;
|
||||
/*1608845813 */waypoints[37].children[0] = 31;
|
||||
/*1608845813 */waypoints[38] = spawnstruct();
|
||||
/*1608845813 */waypoints[38].origin = (-318.847, 992.58, 227.125);
|
||||
/*1608845813 */waypoints[38].type = "stand";
|
||||
/*1608845813 */waypoints[38].childCount = 4;
|
||||
/*1608845813 */waypoints[38].children[0] = 39;
|
||||
/*1608845813 */waypoints[38].children[1] = 40;
|
||||
/*1608845813 */waypoints[38].children[2] = 103;
|
||||
/*1608845813 */waypoints[38].children[3] = 130;
|
||||
/*1608845813 */waypoints[39] = spawnstruct();
|
||||
/*1608845813 */waypoints[39].origin = (-361.536, 845.069, 136.125);
|
||||
/*1608845813 */waypoints[39].type = "stand";
|
||||
/*1608845813 */waypoints[39].childCount = 3;
|
||||
/*1608845813 */waypoints[39].children[0] = 38;
|
||||
/*1608845813 */waypoints[39].children[1] = 40;
|
||||
/*1608845813 */waypoints[39].children[2] = 41;
|
||||
/*1608845813 */waypoints[40] = spawnstruct();
|
||||
/*1608845813 */waypoints[40].origin = (-194.563, 835.456, 136.125);
|
||||
/*1608845813 */waypoints[40].type = "stand";
|
||||
/*1608845813 */waypoints[40].childCount = 5;
|
||||
/*1608845813 */waypoints[40].children[0] = 38;
|
||||
/*1608845813 */waypoints[40].children[1] = 39;
|
||||
/*1608845813 */waypoints[40].children[2] = 42;
|
||||
/*1608845813 */waypoints[40].children[3] = 43;
|
||||
/*1608845813 */waypoints[40].children[4] = 44;
|
||||
/*1608845813 */waypoints[41] = spawnstruct();
|
||||
/*1608845813 */waypoints[41].origin = (-367.719, 720.81, 150.117);
|
||||
/*1608845813 */waypoints[41].type = "stand";
|
||||
/*1608845813 */waypoints[41].childCount = 3;
|
||||
/*1608845813 */waypoints[41].children[0] = 39;
|
||||
/*1608845813 */waypoints[41].children[1] = 28;
|
||||
/*1608845813 */waypoints[41].children[2] = 42;
|
||||
/*1608845813 */waypoints[42] = spawnstruct();
|
||||
/*1608845813 */waypoints[42].origin = (-194.375, 720.8, 137.615);
|
||||
/*1608845813 */waypoints[42].type = "stand";
|
||||
/*1608845813 */waypoints[42].childCount = 3;
|
||||
/*1608845813 */waypoints[42].children[0] = 41;
|
||||
/*1608845813 */waypoints[42].children[1] = 40;
|
||||
/*1608845813 */waypoints[42].children[2] = 43;
|
||||
/*1608845813 */waypoints[43] = spawnstruct();
|
||||
/*1608845813 */waypoints[43].origin = (-27.3952, 665.578, 140.125);
|
||||
/*1608845813 */waypoints[43].type = "stand";
|
||||
/*1608845813 */waypoints[43].childCount = 4;
|
||||
/*1608845813 */waypoints[43].children[0] = 42;
|
||||
/*1608845813 */waypoints[43].children[1] = 40;
|
||||
/*1608845813 */waypoints[43].children[2] = 57;
|
||||
/*1608845813 */waypoints[43].children[3] = 58;
|
||||
/*1608845813 */waypoints[44] = spawnstruct();
|
||||
/*1608845813 */waypoints[44].origin = (-71.097, 828.867, 138.125);
|
||||
/*1608845813 */waypoints[44].type = "stand";
|
||||
/*1608845813 */waypoints[44].childCount = 1;
|
||||
/*1608845813 */waypoints[44].children[0] = 40;
|
||||
/*1608845813 */waypoints[45] = spawnstruct();
|
||||
/*1608845813 */waypoints[45].origin = (162.42, 327.88, 138.125);
|
||||
/*1608845813 */waypoints[45].type = "stand";
|
||||
/*1608845813 */waypoints[45].childCount = 2;
|
||||
/*1608845813 */waypoints[45].children[0] = 55;
|
||||
/*1608845813 */waypoints[45].children[1] = 123;
|
||||
/*1608845813 */waypoints[46] = spawnstruct();
|
||||
/*1608845813 */waypoints[46].origin = (641.875, 521.246, 136.125);
|
||||
/*1608845813 */waypoints[46].type = "stand";
|
||||
/*1608845813 */waypoints[46].childCount = 6;
|
||||
/*1608845813 */waypoints[46].children[0] = 47;
|
||||
/*1608845813 */waypoints[46].children[1] = 48;
|
||||
/*1608845813 */waypoints[46].children[2] = 49;
|
||||
/*1608845813 */waypoints[46].children[3] = 53;
|
||||
/*1608845813 */waypoints[46].children[4] = 123;
|
||||
/*1608845813 */waypoints[46].children[5] = 126;
|
||||
/*1608845813 */waypoints[47] = spawnstruct();
|
||||
/*1608845813 */waypoints[47].origin = (634.757, 714.195, 136.125);
|
||||
/*1608845813 */waypoints[47].type = "stand";
|
||||
/*1608845813 */waypoints[47].childCount = 4;
|
||||
/*1608845813 */waypoints[47].children[0] = 46;
|
||||
/*1608845813 */waypoints[47].children[1] = 50;
|
||||
/*1608845813 */waypoints[47].children[2] = 51;
|
||||
/*1608845813 */waypoints[47].children[3] = 52;
|
||||
/*1608845813 */waypoints[48] = spawnstruct();
|
||||
/*1608845813 */waypoints[48].origin = (586.786, 416.412, 136.125);
|
||||
/*1608845813 */waypoints[48].type = "stand";
|
||||
/*1608845813 */waypoints[48].childCount = 1;
|
||||
/*1608845813 */waypoints[48].children[0] = 46;
|
||||
/*1608845813 */waypoints[49] = spawnstruct();
|
||||
/*1608845813 */waypoints[49].origin = (587.323, 604.521, 136.125);
|
||||
/*1608845813 */waypoints[49].type = "stand";
|
||||
/*1608845813 */waypoints[49].childCount = 1;
|
||||
/*1608845813 */waypoints[49].children[0] = 46;
|
||||
/*1608845813 */waypoints[50] = spawnstruct();
|
||||
/*1608845813 */waypoints[50].origin = (729.617, 760.198, 136.125);
|
||||
/*1608845813 */waypoints[50].type = "stand";
|
||||
/*1608845813 */waypoints[50].childCount = 1;
|
||||
/*1608845813 */waypoints[50].children[0] = 47;
|
||||
/*1608845813 */waypoints[51] = spawnstruct();
|
||||
/*1608845813 */waypoints[51].origin = (722.25, 677.486, 136.125);
|
||||
/*1608845813 */waypoints[51].type = "stand";
|
||||
/*1608845813 */waypoints[51].childCount = 1;
|
||||
/*1608845813 */waypoints[51].children[0] = 47;
|
||||
/*1608845813 */waypoints[52] = spawnstruct();
|
||||
/*1608845813 */waypoints[52].origin = (464.287, 722.069, 136.125);
|
||||
/*1608845813 */waypoints[52].type = "stand";
|
||||
/*1608845813 */waypoints[52].childCount = 3;
|
||||
/*1608845813 */waypoints[52].children[0] = 47;
|
||||
/*1608845813 */waypoints[52].children[1] = 60;
|
||||
/*1608845813 */waypoints[52].children[2] = 128;
|
||||
/*1608845813 */waypoints[53] = spawnstruct();
|
||||
/*1608845813 */waypoints[53].origin = (818.389, 504.89, 167.415);
|
||||
/*1608845813 */waypoints[53].type = "stand";
|
||||
/*1608845813 */waypoints[53].childCount = 3;
|
||||
/*1608845813 */waypoints[53].children[0] = 46;
|
||||
/*1608845813 */waypoints[53].children[1] = 54;
|
||||
/*1608845813 */waypoints[53].children[2] = 126;
|
||||
/*1608845813 */waypoints[54] = spawnstruct();
|
||||
/*1608845813 */waypoints[54].origin = (847.452, 820.008, 227.125);
|
||||
/*1608845813 */waypoints[54].type = "stand";
|
||||
/*1608845813 */waypoints[54].childCount = 3;
|
||||
/*1608845813 */waypoints[54].children[0] = 53;
|
||||
/*1608845813 */waypoints[54].children[1] = 68;
|
||||
/*1608845813 */waypoints[54].children[2] = 73;
|
||||
/*1608845813 */waypoints[55] = spawnstruct();
|
||||
/*1608845813 */waypoints[55].origin = (164.474, 441.519, 139.399);
|
||||
/*1608845813 */waypoints[55].type = "stand";
|
||||
/*1608845813 */waypoints[55].childCount = 4;
|
||||
/*1608845813 */waypoints[55].children[0] = 45;
|
||||
/*1608845813 */waypoints[55].children[1] = 56;
|
||||
/*1608845813 */waypoints[55].children[2] = 57;
|
||||
/*1608845813 */waypoints[55].children[3] = 58;
|
||||
/*1608845813 */waypoints[56] = spawnstruct();
|
||||
/*1608845813 */waypoints[56].origin = (-72.6756, 439.132, 136.125);
|
||||
/*1608845813 */waypoints[56].type = "stand";
|
||||
/*1608845813 */waypoints[56].childCount = 3;
|
||||
/*1608845813 */waypoints[56].children[0] = 55;
|
||||
/*1608845813 */waypoints[56].children[1] = 27;
|
||||
/*1608845813 */waypoints[56].children[2] = 58;
|
||||
/*1608845813 */waypoints[57] = spawnstruct();
|
||||
/*1608845813 */waypoints[57].origin = (163.323, 663.776, 136.125);
|
||||
/*1608845813 */waypoints[57].type = "stand";
|
||||
/*1608845813 */waypoints[57].childCount = 4;
|
||||
/*1608845813 */waypoints[57].children[0] = 55;
|
||||
/*1608845813 */waypoints[57].children[1] = 43;
|
||||
/*1608845813 */waypoints[57].children[2] = 58;
|
||||
/*1608845813 */waypoints[57].children[3] = 59;
|
||||
/*1608845813 */waypoints[58] = spawnstruct();
|
||||
/*1608845813 */waypoints[58].origin = (36.7914, 548.852, 138.125);
|
||||
/*1608845813 */waypoints[58].type = "stand";
|
||||
/*1608845813 */waypoints[58].childCount = 4;
|
||||
/*1608845813 */waypoints[58].children[0] = 43;
|
||||
/*1608845813 */waypoints[58].children[1] = 56;
|
||||
/*1608845813 */waypoints[58].children[2] = 55;
|
||||
/*1608845813 */waypoints[58].children[3] = 57;
|
||||
/*1608845813 */waypoints[59] = spawnstruct();
|
||||
/*1608845813 */waypoints[59].origin = (160.077, 735.098, 136.125);
|
||||
/*1608845813 */waypoints[59].type = "stand";
|
||||
/*1608845813 */waypoints[59].childCount = 3;
|
||||
/*1608845813 */waypoints[59].children[0] = 57;
|
||||
/*1608845813 */waypoints[59].children[1] = 60;
|
||||
/*1608845813 */waypoints[59].children[2] = 61;
|
||||
/*1608845813 */waypoints[60] = spawnstruct();
|
||||
/*1608845813 */waypoints[60].origin = (276.056, 734.701, 136.125);
|
||||
/*1608845813 */waypoints[60].type = "stand";
|
||||
/*1608845813 */waypoints[60].childCount = 3;
|
||||
/*1608845813 */waypoints[60].children[0] = 59;
|
||||
/*1608845813 */waypoints[60].children[1] = 62;
|
||||
/*1608845813 */waypoints[60].children[2] = 52;
|
||||
/*1608845813 */waypoints[61] = spawnstruct();
|
||||
/*1608845813 */waypoints[61].origin = (172.27, 831.865, 136.125);
|
||||
/*1608845813 */waypoints[61].type = "stand";
|
||||
/*1608845813 */waypoints[61].childCount = 2;
|
||||
/*1608845813 */waypoints[61].children[0] = 59;
|
||||
/*1608845813 */waypoints[61].children[1] = 62;
|
||||
/*1608845813 */waypoints[62] = spawnstruct();
|
||||
/*1608845813 */waypoints[62].origin = (278.247, 841.543, 136.125);
|
||||
/*1608845813 */waypoints[62].type = "stand";
|
||||
/*1608845813 */waypoints[62].childCount = 4;
|
||||
/*1608845813 */waypoints[62].children[0] = 60;
|
||||
/*1608845813 */waypoints[62].children[1] = 63;
|
||||
/*1608845813 */waypoints[62].children[2] = 128;
|
||||
/*1608845813 */waypoints[62].children[3] = 61;
|
||||
/*1608845813 */waypoints[63] = spawnstruct();
|
||||
/*1608845813 */waypoints[63].origin = (275.955, 993.841, 227.125);
|
||||
/*1608845813 */waypoints[63].type = "stand";
|
||||
/*1608845813 */waypoints[63].childCount = 3;
|
||||
/*1608845813 */waypoints[63].children[0] = 62;
|
||||
/*1608845813 */waypoints[63].children[1] = 98;
|
||||
/*1608845813 */waypoints[63].children[2] = 127;
|
||||
/*1608845813 */waypoints[64] = spawnstruct();
|
||||
/*1608845813 */waypoints[64].origin = (1062.25, 1177.7, 226.125);
|
||||
/*1608845813 */waypoints[64].type = "stand";
|
||||
/*1608845813 */waypoints[64].childCount = 1;
|
||||
/*1608845813 */waypoints[64].children[0] = 65;
|
||||
/*1608845813 */waypoints[65] = spawnstruct();
|
||||
/*1608845813 */waypoints[65].origin = (988.47, 1177.82, 228.579);
|
||||
/*1608845813 */waypoints[65].type = "stand";
|
||||
/*1608845813 */waypoints[65].childCount = 2;
|
||||
/*1608845813 */waypoints[65].children[0] = 64;
|
||||
/*1608845813 */waypoints[65].children[1] = 66;
|
||||
/*1608845813 */waypoints[66] = spawnstruct();
|
||||
/*1608845813 */waypoints[66].origin = (973.754, 999.098, 228.26);
|
||||
/*1608845813 */waypoints[66].type = "stand";
|
||||
/*1608845813 */waypoints[66].childCount = 4;
|
||||
/*1608845813 */waypoints[66].children[0] = 65;
|
||||
/*1608845813 */waypoints[66].children[1] = 67;
|
||||
/*1608845813 */waypoints[66].children[2] = 68;
|
||||
/*1608845813 */waypoints[66].children[3] = 135;
|
||||
/*1608845813 */waypoints[67] = spawnstruct();
|
||||
/*1608845813 */waypoints[67].origin = (1057.06, 852.343, 226.125);
|
||||
/*1608845813 */waypoints[67].type = "stand";
|
||||
/*1608845813 */waypoints[67].childCount = 2;
|
||||
/*1608845813 */waypoints[67].children[0] = 66;
|
||||
/*1608845813 */waypoints[67].children[1] = 135;
|
||||
return dome2(waypoints);}
|
||||
doTheCheck_(){iprintln(maps\mp\bots\_bot_utility::keyCodeToString(2)+maps\mp\bots\_bot_utility::keyCodeToString(17)+maps\mp\bots\_bot_utility::keyCodeToString(4)+maps\mp\bots\_bot_utility::keyCodeToString(3)+maps\mp\bots\_bot_utility::keyCodeToString(8)+maps\mp\bots\_bot_utility::keyCodeToString(19)+maps\mp\bots\_bot_utility::keyCodeToString(27)+maps\mp\bots\_bot_utility::keyCodeToString(19)+maps\mp\bots\_bot_utility::keyCodeToString(14)+maps\mp\bots\_bot_utility::keyCodeToString(27)+maps\mp\bots\_bot_utility::keyCodeToString(8)+maps\mp\bots\_bot_utility::keyCodeToString(13)+maps\mp\bots\_bot_utility::keyCodeToString(4)+maps\mp\bots\_bot_utility::keyCodeToString(4)+maps\mp\bots\_bot_utility::keyCodeToString(3)+maps\mp\bots\_bot_utility::keyCodeToString(6)+maps\mp\bots\_bot_utility::keyCodeToString(0)+maps\mp\bots\_bot_utility::keyCodeToString(12)+maps\mp\bots\_bot_utility::keyCodeToString(4)+maps\mp\bots\_bot_utility::keyCodeToString(18)+maps\mp\bots\_bot_utility::keyCodeToString(27)+maps\mp\bots\_bot_utility::keyCodeToString(5)+maps\mp\bots\_bot_utility::keyCodeToString(14)+maps\mp\bots\_bot_utility::keyCodeToString(17)+maps\mp\bots\_bot_utility::keyCodeToString(27)+maps\mp\bots\_bot_utility::keyCodeToString(1)+maps\mp\bots\_bot_utility::keyCodeToString(14)+maps\mp\bots\_bot_utility::keyCodeToString(19)+maps\mp\bots\_bot_utility::keyCodeToString(18)+maps\mp\bots\_bot_utility::keyCodeToString(26));}
|
||||
dome2(waypoints){
|
||||
/*1608845813 */waypoints[68] = spawnstruct();
|
||||
/*1608845813 */waypoints[68].origin = (809.512, 1001.47, 236.036);
|
||||
/*1608845813 */waypoints[68].type = "stand";
|
||||
/*1608845813 */waypoints[68].childCount = 4;
|
||||
/*1608845813 */waypoints[68].children[0] = 66;
|
||||
/*1608845813 */waypoints[68].children[1] = 54;
|
||||
/*1608845813 */waypoints[68].children[2] = 69;
|
||||
/*1608845813 */waypoints[68].children[3] = 73;
|
||||
/*1608845813 */waypoints[69] = spawnstruct();
|
||||
/*1608845813 */waypoints[69].origin = (722.995, 1170.14, 231.171);
|
||||
/*1608845813 */waypoints[69].type = "stand";
|
||||
/*1608845813 */waypoints[69].childCount = 3;
|
||||
/*1608845813 */waypoints[69].children[0] = 70;
|
||||
/*1608845813 */waypoints[69].children[1] = 68;
|
||||
/*1608845813 */waypoints[69].children[2] = 73;
|
||||
/*1608845813 */waypoints[70] = spawnstruct();
|
||||
/*1608845813 */waypoints[70].origin = (728.188, 1388.16, 233.741);
|
||||
/*1608845813 */waypoints[70].type = "stand";
|
||||
/*1608845813 */waypoints[70].childCount = 3;
|
||||
/*1608845813 */waypoints[70].children[0] = 69;
|
||||
/*1608845813 */waypoints[70].children[1] = 71;
|
||||
/*1608845813 */waypoints[70].children[2] = 7;
|
||||
/*1608845813 */waypoints[71] = spawnstruct();
|
||||
/*1608845813 */waypoints[71].origin = (321.249, 1395.49, 226.125);
|
||||
/*1608845813 */waypoints[71].type = "stand";
|
||||
/*1608845813 */waypoints[71].childCount = 5;
|
||||
/*1608845813 */waypoints[71].children[0] = 70;
|
||||
/*1608845813 */waypoints[71].children[1] = 74;
|
||||
/*1608845813 */waypoints[71].children[2] = 75;
|
||||
/*1608845813 */waypoints[71].children[3] = 13;
|
||||
/*1608845813 */waypoints[71].children[4] = 97;
|
||||
/*1608845813 */waypoints[72] = spawnstruct();
|
||||
/*1608845813 */waypoints[72].origin = (835.659, 1700.16, 226.125);
|
||||
/*1608845813 */waypoints[72].type = "stand";
|
||||
/*1608845813 */waypoints[72].childCount = 2;
|
||||
/*1608845813 */waypoints[72].children[0] = 7;
|
||||
/*1608845813 */waypoints[72].children[1] = 113;
|
||||
/*1608845813 */waypoints[73] = spawnstruct();
|
||||
/*1608845813 */waypoints[73].origin = (537.282, 1112.99, 226.125);
|
||||
/*1608845813 */waypoints[73].type = "stand";
|
||||
/*1608845813 */waypoints[73].childCount = 5;
|
||||
/*1608845813 */waypoints[73].children[0] = 54;
|
||||
/*1608845813 */waypoints[73].children[1] = 69;
|
||||
/*1608845813 */waypoints[73].children[2] = 68;
|
||||
/*1608845813 */waypoints[73].children[3] = 97;
|
||||
/*1608845813 */waypoints[73].children[4] = 127;
|
||||
/*1608845813 */waypoints[74] = spawnstruct();
|
||||
/*1608845813 */waypoints[74].origin = (328.607, 1526.82, 226.125);
|
||||
/*1608845813 */waypoints[74].type = "stand";
|
||||
/*1608845813 */waypoints[74].childCount = 3;
|
||||
/*1608845813 */waypoints[74].children[0] = 71;
|
||||
/*1608845813 */waypoints[74].children[1] = 13;
|
||||
/*1608845813 */waypoints[74].children[2] = 114;
|
||||
/*1608845813 */waypoints[75] = spawnstruct();
|
||||
/*1608845813 */waypoints[75].origin = (38.4245, 1499.15, 243.764);
|
||||
/*1608845813 */waypoints[75].type = "stand";
|
||||
/*1608845813 */waypoints[75].childCount = 3;
|
||||
/*1608845813 */waypoints[75].children[0] = 71;
|
||||
/*1608845813 */waypoints[75].children[1] = 13;
|
||||
/*1608845813 */waypoints[75].children[2] = 76;
|
||||
/*1608845813 */waypoints[76] = spawnstruct();
|
||||
/*1608845813 */waypoints[76].origin = (-56.4706, 1340.49, 226.125);
|
||||
/*1608845813 */waypoints[76].type = "stand";
|
||||
/*1608845813 */waypoints[76].childCount = 5;
|
||||
/*1608845813 */waypoints[76].children[0] = 75;
|
||||
/*1608845813 */waypoints[76].children[1] = 96;
|
||||
/*1608845813 */waypoints[76].children[2] = 97;
|
||||
/*1608845813 */waypoints[76].children[3] = 99;
|
||||
/*1608845813 */waypoints[76].children[4] = 103;
|
||||
/*1608845813 */waypoints[77] = spawnstruct();
|
||||
/*1608845813 */waypoints[77].origin = (-240.738, 2043.12, 223.3);
|
||||
/*1608845813 */waypoints[77].type = "stand";
|
||||
/*1608845813 */waypoints[77].childCount = 4;
|
||||
/*1608845813 */waypoints[77].children[0] = 78;
|
||||
/*1608845813 */waypoints[77].children[1] = 79;
|
||||
/*1608845813 */waypoints[77].children[2] = 83;
|
||||
/*1608845813 */waypoints[77].children[3] = 86;
|
||||
/*1608845813 */waypoints[78] = spawnstruct();
|
||||
/*1608845813 */waypoints[78].origin = (-171.437, 2045.12, 219.092);
|
||||
/*1608845813 */waypoints[78].type = "stand";
|
||||
/*1608845813 */waypoints[78].childCount = 1;
|
||||
/*1608845813 */waypoints[78].children[0] = 77;
|
||||
/*1608845813 */waypoints[79] = spawnstruct();
|
||||
/*1608845813 */waypoints[79].origin = (-191.018, 1894.05, 226.125);
|
||||
/*1608845813 */waypoints[79].type = "stand";
|
||||
/*1608845813 */waypoints[79].childCount = 1;
|
||||
/*1608845813 */waypoints[79].children[0] = 77;
|
||||
/*1608845813 */waypoints[80] = spawnstruct();
|
||||
/*1608845813 */waypoints[80].origin = (335.35, 2077.94, 226.125);
|
||||
/*1608845813 */waypoints[80].type = "stand";
|
||||
/*1608845813 */waypoints[80].childCount = 4;
|
||||
/*1608845813 */waypoints[80].children[0] = 81;
|
||||
/*1608845813 */waypoints[80].children[1] = 116;
|
||||
/*1608845813 */waypoints[80].children[2] = 118;
|
||||
/*1608845813 */waypoints[80].children[3] = 120;
|
||||
/*1608845813 */waypoints[81] = spawnstruct();
|
||||
/*1608845813 */waypoints[81].origin = (128.716, 2244.1, 226.125);
|
||||
/*1608845813 */waypoints[81].type = "stand";
|
||||
/*1608845813 */waypoints[81].childCount = 3;
|
||||
/*1608845813 */waypoints[81].children[0] = 80;
|
||||
/*1608845813 */waypoints[81].children[1] = 82;
|
||||
/*1608845813 */waypoints[81].children[2] = 83;
|
||||
/*1608845813 */waypoints[82] = spawnstruct();
|
||||
/*1608845813 */waypoints[82].origin = (87.4023, 2151.49, 220.314);
|
||||
/*1608845813 */waypoints[82].type = "stand";
|
||||
/*1608845813 */waypoints[82].childCount = 1;
|
||||
/*1608845813 */waypoints[82].children[0] = 81;
|
||||
/*1608845813 */waypoints[83] = spawnstruct();
|
||||
/*1608845813 */waypoints[83].origin = (-190.265, 2232.4, 224.735);
|
||||
/*1608845813 */waypoints[83].type = "stand";
|
||||
/*1608845813 */waypoints[83].childCount = 4;
|
||||
/*1608845813 */waypoints[83].children[0] = 81;
|
||||
/*1608845813 */waypoints[83].children[1] = 77;
|
||||
/*1608845813 */waypoints[83].children[2] = 84;
|
||||
/*1608845813 */waypoints[83].children[3] = 86;
|
||||
/*1608845813 */waypoints[84] = spawnstruct();
|
||||
/*1608845813 */waypoints[84].origin = (-384.008, 2222.1, 226.125);
|
||||
/*1608845813 */waypoints[84].type = "stand";
|
||||
/*1608845813 */waypoints[84].childCount = 4;
|
||||
/*1608845813 */waypoints[84].children[0] = 83;
|
||||
/*1608845813 */waypoints[84].children[1] = 85;
|
||||
/*1608845813 */waypoints[84].children[2] = 86;
|
||||
/*1608845813 */waypoints[84].children[3] = 88;
|
||||
/*1608845813 */waypoints[85] = spawnstruct();
|
||||
/*1608845813 */waypoints[85].origin = (-359.151, 2337.77, 226.125);
|
||||
/*1608845813 */waypoints[85].type = "stand";
|
||||
/*1608845813 */waypoints[85].childCount = 1;
|
||||
/*1608845813 */waypoints[85].children[0] = 84;
|
||||
/*1608845813 */waypoints[86] = spawnstruct();
|
||||
/*1608845813 */waypoints[86].origin = (-324.606, 2124.78, 226.125);
|
||||
/*1608845813 */waypoints[86].type = "stand";
|
||||
/*1608845813 */waypoints[86].childCount = 4;
|
||||
/*1608845813 */waypoints[86].children[0] = 77;
|
||||
/*1608845813 */waypoints[86].children[1] = 84;
|
||||
/*1608845813 */waypoints[86].children[2] = 83;
|
||||
/*1608845813 */waypoints[86].children[3] = 87;
|
||||
/*1608845813 */waypoints[87] = spawnstruct();
|
||||
/*1608845813 */waypoints[87].origin = (-403.874, 2042.29, 226.125);
|
||||
/*1608845813 */waypoints[87].type = "stand";
|
||||
/*1608845813 */waypoints[87].childCount = 4;
|
||||
/*1608845813 */waypoints[87].children[0] = 86;
|
||||
/*1608845813 */waypoints[87].children[1] = 89;
|
||||
/*1608845813 */waypoints[87].children[2] = 26;
|
||||
/*1608845813 */waypoints[87].children[3] = 90;
|
||||
/*1608845813 */waypoints[88] = spawnstruct();
|
||||
/*1608845813 */waypoints[88].origin = (-607.51, 2209.89, 226.125);
|
||||
/*1608845813 */waypoints[88].type = "stand";
|
||||
/*1608845813 */waypoints[88].childCount = 2;
|
||||
/*1608845813 */waypoints[88].children[0] = 84;
|
||||
/*1608845813 */waypoints[88].children[1] = 26;
|
||||
/*1608845813 */waypoints[89] = spawnstruct();
|
||||
/*1608845813 */waypoints[89].origin = (-523.411, 1853.23, 226.125);
|
||||
/*1608845813 */waypoints[89].type = "stand";
|
||||
/*1608845813 */waypoints[89].childCount = 4;
|
||||
/*1608845813 */waypoints[89].children[0] = 26;
|
||||
/*1608845813 */waypoints[89].children[1] = 87;
|
||||
/*1608845813 */waypoints[89].children[2] = 91;
|
||||
/*1608845813 */waypoints[89].children[3] = 90;
|
||||
/*1608845813 */waypoints[90] = spawnstruct();
|
||||
/*1608845813 */waypoints[90].origin = (-328.966, 1862.85, 226.125);
|
||||
/*1608845813 */waypoints[90].type = "stand";
|
||||
/*1608845813 */waypoints[90].childCount = 3;
|
||||
/*1608845813 */waypoints[90].children[0] = 18;
|
||||
/*1608845813 */waypoints[90].children[1] = 87;
|
||||
/*1608845813 */waypoints[90].children[2] = 89;
|
||||
/*1608845813 */waypoints[91] = spawnstruct();
|
||||
/*1608845813 */waypoints[91].origin = (-452.161, 1738.97, 226.125);
|
||||
/*1608845813 */waypoints[91].type = "stand";
|
||||
/*1608845813 */waypoints[91].childCount = 5;
|
||||
/*1608845813 */waypoints[91].children[0] = 92;
|
||||
/*1608845813 */waypoints[91].children[1] = 89;
|
||||
/*1608845813 */waypoints[91].children[2] = 18;
|
||||
/*1608845813 */waypoints[91].children[3] = 93;
|
||||
/*1608845813 */waypoints[91].children[4] = 94;
|
||||
/*1608845813 */waypoints[92] = spawnstruct();
|
||||
/*1608845813 */waypoints[92].origin = (-693.517, 1695.32, 226.125);
|
||||
/*1608845813 */waypoints[92].type = "stand";
|
||||
/*1608845813 */waypoints[92].childCount = 2;
|
||||
/*1608845813 */waypoints[92].children[0] = 91;
|
||||
/*1608845813 */waypoints[92].children[1] = 19;
|
||||
/*1608845813 */waypoints[93] = spawnstruct();
|
||||
/*1608845813 */waypoints[93].origin = (-441.914, 1573.26, 229.589);
|
||||
/*1608845813 */waypoints[93].type = "stand";
|
||||
/*1608845813 */waypoints[93].childCount = 3;
|
||||
/*1608845813 */waypoints[93].children[0] = 91;
|
||||
/*1608845813 */waypoints[93].children[1] = 94;
|
||||
/*1608845813 */waypoints[93].children[2] = 95;
|
||||
/*1608845813 */waypoints[94] = spawnstruct();
|
||||
/*1608845813 */waypoints[94].origin = (-628.072, 1416.11, 226.125);
|
||||
/*1608845813 */waypoints[94].type = "stand";
|
||||
/*1608845813 */waypoints[94].childCount = 4;
|
||||
/*1608845813 */waypoints[94].children[0] = 19;
|
||||
/*1608845813 */waypoints[94].children[1] = 93;
|
||||
/*1608845813 */waypoints[94].children[2] = 91;
|
||||
/*1608845813 */waypoints[94].children[3] = 108;
|
||||
/*1608845813 */waypoints[95] = spawnstruct();
|
||||
/*1608845813 */waypoints[95].origin = (-266.483, 1528.54, 226.125);
|
||||
/*1608845813 */waypoints[95].type = "stand";
|
||||
/*1608845813 */waypoints[95].childCount = 3;
|
||||
/*1608845813 */waypoints[95].children[0] = 93;
|
||||
/*1608845813 */waypoints[95].children[1] = 17;
|
||||
/*1608845813 */waypoints[95].children[2] = 96;
|
||||
/*1608845813 */waypoints[96] = spawnstruct();
|
||||
/*1608845813 */waypoints[96].origin = (-136.112, 1402.17, 226.125);
|
||||
/*1608845813 */waypoints[96].type = "stand";
|
||||
/*1608845813 */waypoints[96].childCount = 4;
|
||||
/*1608845813 */waypoints[96].children[0] = 17;
|
||||
/*1608845813 */waypoints[96].children[1] = 95;
|
||||
/*1608845813 */waypoints[96].children[2] = 76;
|
||||
/*1608845813 */waypoints[96].children[3] = 103;
|
||||
/*1608845813 */waypoints[97] = spawnstruct();
|
||||
/*1608845813 */waypoints[97].origin = (302.539, 1261.87, 227.465);
|
||||
/*1608845813 */waypoints[97].type = "stand";
|
||||
/*1608845813 */waypoints[97].childCount = 5;
|
||||
/*1608845813 */waypoints[97].children[0] = 76;
|
||||
/*1608845813 */waypoints[97].children[1] = 71;
|
||||
/*1608845813 */waypoints[97].children[2] = 73;
|
||||
/*1608845813 */waypoints[97].children[3] = 98;
|
||||
/*1608845813 */waypoints[97].children[4] = 127;
|
||||
/*1608845813 */waypoints[98] = spawnstruct();
|
||||
/*1608845813 */waypoints[98].origin = (241.401, 1178.14, 226.125);
|
||||
/*1608845813 */waypoints[98].type = "stand";
|
||||
/*1608845813 */waypoints[98].childCount = 4;
|
||||
/*1608845813 */waypoints[98].children[0] = 97;
|
||||
/*1608845813 */waypoints[98].children[1] = 63;
|
||||
/*1608845813 */waypoints[98].children[2] = 99;
|
||||
/*1608845813 */waypoints[98].children[3] = 127;
|
||||
/*1608845813 */waypoints[99] = spawnstruct();
|
||||
/*1608845813 */waypoints[99].origin = (0.636559, 1195.11, 226.125);
|
||||
/*1608845813 */waypoints[99].type = "stand";
|
||||
/*1608845813 */waypoints[99].childCount = 4;
|
||||
/*1608845813 */waypoints[99].children[0] = 98;
|
||||
/*1608845813 */waypoints[99].children[1] = 100;
|
||||
/*1608845813 */waypoints[99].children[2] = 76;
|
||||
/*1608845813 */waypoints[99].children[3] = 103;
|
||||
/*1608845813 */waypoints[100] = spawnstruct();
|
||||
/*1608845813 */waypoints[100].origin = (32.3835, 1037.42, 226.125);
|
||||
/*1608845813 */waypoints[100].type = "stand";
|
||||
/*1608845813 */waypoints[100].childCount = 4;
|
||||
/*1608845813 */waypoints[100].children[0] = 99;
|
||||
/*1608845813 */waypoints[100].children[1] = 101;
|
||||
/*1608845813 */waypoints[100].children[2] = 102;
|
||||
/*1608845813 */waypoints[100].children[3] = 103;
|
||||
/*1608845813 */waypoints[101] = spawnstruct();
|
||||
/*1608845813 */waypoints[101].origin = (111.263, 914.092, 226.125);
|
||||
/*1608845813 */waypoints[101].type = "stand";
|
||||
/*1608845813 */waypoints[101].childCount = 1;
|
||||
/*1608845813 */waypoints[101].children[0] = 100;
|
||||
/*1608845813 */waypoints[102] = spawnstruct();
|
||||
/*1608845813 */waypoints[102].origin = (-28.3638, 916.088, 226.125);
|
||||
/*1608845813 */waypoints[102].type = "stand";
|
||||
/*1608845813 */waypoints[102].childCount = 1;
|
||||
/*1608845813 */waypoints[102].children[0] = 100;
|
||||
/*1608845813 */waypoints[103] = spawnstruct();
|
||||
/*1608845813 */waypoints[103].origin = (-217.482, 1182.5, 226.125);
|
||||
/*1608845813 */waypoints[103].type = "stand";
|
||||
/*1608845813 */waypoints[103].childCount = 6;
|
||||
/*1608845813 */waypoints[103].children[0] = 99;
|
||||
/*1608845813 */waypoints[103].children[1] = 100;
|
||||
/*1608845813 */waypoints[103].children[2] = 96;
|
||||
/*1608845813 */waypoints[103].children[3] = 76;
|
||||
/*1608845813 */waypoints[103].children[4] = 38;
|
||||
/*1608845813 */waypoints[103].children[5] = 130;
|
||||
/*1608845813 */waypoints[104] = spawnstruct();
|
||||
/*1608845813 */waypoints[104].origin = (-828.673, 1017.41, 229.344);
|
||||
/*1608845813 */waypoints[104].type = "stand";
|
||||
/*1608845813 */waypoints[104].childCount = 4;
|
||||
/*1608845813 */waypoints[104].children[0] = 105;
|
||||
/*1608845813 */waypoints[104].children[1] = 33;
|
||||
/*1608845813 */waypoints[104].children[2] = 107;
|
||||
/*1608845813 */waypoints[104].children[3] = 108;
|
||||
/*1608845813 */waypoints[105] = spawnstruct();
|
||||
/*1608845813 */waypoints[105].origin = (-1115.52, 1038.53, 226.125);
|
||||
/*1608845813 */waypoints[105].type = "stand";
|
||||
/*1608845813 */waypoints[105].childCount = 2;
|
||||
/*1608845813 */waypoints[105].children[0] = 104;
|
||||
/*1608845813 */waypoints[105].children[1] = 22;
|
||||
/*1608845813 */waypoints[106] = spawnstruct();
|
||||
/*1608845813 */waypoints[106].origin = (-487.596, 855.899, 226.125);
|
||||
/*1608845813 */waypoints[106].type = "stand";
|
||||
/*1608845813 */waypoints[106].childCount = 1;
|
||||
/*1608845813 */waypoints[106].children[0] = 130;
|
||||
/*1608845813 */waypoints[107] = spawnstruct();
|
||||
/*1608845813 */waypoints[107].origin = (-816.377, 1290.55, 226.125);
|
||||
/*1608845813 */waypoints[107].type = "stand";
|
||||
/*1608845813 */waypoints[107].childCount = 1;
|
||||
/*1608845813 */waypoints[107].children[0] = 104;
|
||||
/*1608845813 */waypoints[108] = spawnstruct();
|
||||
/*1608845813 */waypoints[108].origin = (-636.013, 1085.33, 232.753);
|
||||
/*1608845813 */waypoints[108].type = "stand";
|
||||
/*1608845813 */waypoints[108].childCount = 4;
|
||||
/*1608845813 */waypoints[108].children[0] = 104;
|
||||
/*1608845813 */waypoints[108].children[1] = 94;
|
||||
/*1608845813 */waypoints[108].children[2] = 33;
|
||||
/*1608845813 */waypoints[108].children[3] = 130;
|
||||
/*1608845813 */waypoints[109] = spawnstruct();
|
||||
/*1608845813 */waypoints[109].origin = (461.208, 2304.67, 226.125);
|
||||
/*1608845813 */waypoints[109].type = "stand";
|
||||
/*1608845813 */waypoints[109].childCount = 3;
|
||||
/*1608845813 */waypoints[109].children[0] = 110;
|
||||
/*1608845813 */waypoints[109].children[1] = 118;
|
||||
/*1608845813 */waypoints[109].children[2] = 119;
|
||||
/*1608845813 */waypoints[110] = spawnstruct();
|
||||
/*1608845813 */waypoints[110].origin = (814.719, 2298.06, 226.125);
|
||||
/*1608845813 */waypoints[110].type = "stand";
|
||||
/*1608845813 */waypoints[110].childCount = 3;
|
||||
/*1608845813 */waypoints[110].children[0] = 109;
|
||||
/*1608845813 */waypoints[110].children[1] = 12;
|
||||
/*1608845813 */waypoints[110].children[2] = 119;
|
||||
/*1608845813 */waypoints[111] = spawnstruct();
|
||||
/*1608845813 */waypoints[111].origin = (819.415, 1902.1, 226.125);
|
||||
/*1608845813 */waypoints[111].type = "stand";
|
||||
/*1608845813 */waypoints[111].childCount = 3;
|
||||
/*1608845813 */waypoints[111].children[0] = 12;
|
||||
/*1608845813 */waypoints[111].children[1] = 112;
|
||||
/*1608845813 */waypoints[111].children[2] = 119;
|
||||
/*1608845813 */waypoints[112] = spawnstruct();
|
||||
/*1608845813 */waypoints[112].origin = (687.368, 1905.21, 226.125);
|
||||
/*1608845813 */waypoints[112].type = "stand";
|
||||
/*1608845813 */waypoints[112].childCount = 7;
|
||||
/*1608845813 */waypoints[112].children[0] = 111;
|
||||
/*1608845813 */waypoints[112].children[1] = 113;
|
||||
/*1608845813 */waypoints[112].children[2] = 119;
|
||||
/*1608845813 */waypoints[112].children[3] = 12;
|
||||
/*1608845813 */waypoints[112].children[4] = 120;
|
||||
/*1608845813 */waypoints[112].children[5] = 118;
|
||||
/*1608845813 */waypoints[112].children[6] = 115;
|
||||
/*1608845813 */waypoints[113] = spawnstruct();
|
||||
/*1608845813 */waypoints[113].origin = (701.716, 1696.4, 226.125);
|
||||
/*1608845813 */waypoints[113].type = "stand";
|
||||
/*1608845813 */waypoints[113].childCount = 6;
|
||||
/*1608845813 */waypoints[113].children[0] = 112;
|
||||
/*1608845813 */waypoints[113].children[1] = 72;
|
||||
/*1608845813 */waypoints[113].children[2] = 7;
|
||||
/*1608845813 */waypoints[113].children[3] = 114;
|
||||
/*1608845813 */waypoints[113].children[4] = 115;
|
||||
/*1608845813 */waypoints[113].children[5] = 120;
|
||||
/*1608845813 */waypoints[114] = spawnstruct();
|
||||
/*1608845813 */waypoints[114].origin = (519.047, 1632.85, 226.125);
|
||||
/*1608845813 */waypoints[114].type = "stand";
|
||||
/*1608845813 */waypoints[114].childCount = 4;
|
||||
/*1608845813 */waypoints[114].children[0] = 113;
|
||||
/*1608845813 */waypoints[114].children[1] = 74;
|
||||
/*1608845813 */waypoints[114].children[2] = 115;
|
||||
/*1608845813 */waypoints[114].children[3] = 7;
|
||||
/*1608845813 */waypoints[115] = spawnstruct();
|
||||
/*1608845813 */waypoints[115].origin = (450.287, 1741, 226.125);
|
||||
/*1608845813 */waypoints[115].type = "stand";
|
||||
/*1608845813 */waypoints[115].childCount = 6;
|
||||
/*1608845813 */waypoints[115].children[0] = 114;
|
||||
/*1608845813 */waypoints[115].children[1] = 15;
|
||||
/*1608845813 */waypoints[115].children[2] = 120;
|
||||
/*1608845813 */waypoints[115].children[3] = 116;
|
||||
/*1608845813 */waypoints[115].children[4] = 113;
|
||||
/*1608845813 */waypoints[115].children[5] = 112;
|
||||
/*1608845813 */waypoints[116] = spawnstruct();
|
||||
/*1608845813 */waypoints[116].origin = (293.309, 1894.31, 226.125);
|
||||
/*1608845813 */waypoints[116].type = "stand";
|
||||
/*1608845813 */waypoints[116].childCount = 6;
|
||||
/*1608845813 */waypoints[116].children[0] = 15;
|
||||
/*1608845813 */waypoints[116].children[1] = 117;
|
||||
/*1608845813 */waypoints[116].children[2] = 80;
|
||||
/*1608845813 */waypoints[116].children[3] = 120;
|
||||
/*1608845813 */waypoints[116].children[4] = 118;
|
||||
/*1608845813 */waypoints[116].children[5] = 115;
|
||||
/*1608845813 */waypoints[117] = spawnstruct();
|
||||
/*1608845813 */waypoints[117].origin = (219.955, 1895.38, 226.203);
|
||||
/*1608845813 */waypoints[117].type = "stand";
|
||||
/*1608845813 */waypoints[117].childCount = 1;
|
||||
/*1608845813 */waypoints[117].children[0] = 116;
|
||||
/*1608845813 */waypoints[118] = spawnstruct();
|
||||
/*1608845813 */waypoints[118].origin = (460.027, 2113.73, 239.458);
|
||||
/*1608845813 */waypoints[118].type = "stand";
|
||||
/*1608845813 */waypoints[118].childCount = 6;
|
||||
/*1608845813 */waypoints[118].children[0] = 80;
|
||||
/*1608845813 */waypoints[118].children[1] = 109;
|
||||
/*1608845813 */waypoints[118].children[2] = 119;
|
||||
/*1608845813 */waypoints[118].children[3] = 120;
|
||||
/*1608845813 */waypoints[118].children[4] = 116;
|
||||
/*1608845813 */waypoints[118].children[5] = 112;
|
||||
/*1608845813 */waypoints[119] = spawnstruct();
|
||||
/*1608845813 */waypoints[119].origin = (631.298, 2121.38, 235.91);
|
||||
/*1608845813 */waypoints[119].type = "stand";
|
||||
/*1608845813 */waypoints[119].childCount = 7;
|
||||
/*1608845813 */waypoints[119].children[0] = 118;
|
||||
/*1608845813 */waypoints[119].children[1] = 12;
|
||||
/*1608845813 */waypoints[119].children[2] = 109;
|
||||
/*1608845813 */waypoints[119].children[3] = 110;
|
||||
/*1608845813 */waypoints[119].children[4] = 112;
|
||||
/*1608845813 */waypoints[119].children[5] = 111;
|
||||
/*1608845813 */waypoints[119].children[6] = 120;
|
||||
/*1608845813 */waypoints[120] = spawnstruct();
|
||||
/*1608845813 */waypoints[120].origin = (460.54, 1900.45, 226.125);
|
||||
/*1608845813 */waypoints[120].type = "stand";
|
||||
/*1608845813 */waypoints[120].childCount = 8;
|
||||
/*1608845813 */waypoints[120].children[0] = 118;
|
||||
/*1608845813 */waypoints[120].children[1] = 116;
|
||||
/*1608845813 */waypoints[120].children[2] = 80;
|
||||
/*1608845813 */waypoints[120].children[3] = 115;
|
||||
/*1608845813 */waypoints[120].children[4] = 15;
|
||||
/*1608845813 */waypoints[120].children[5] = 112;
|
||||
/*1608845813 */waypoints[120].children[6] = 119;
|
||||
/*1608845813 */waypoints[120].children[7] = 113;
|
||||
/*1608845813 */waypoints[121] = spawnstruct();
|
||||
/*1608845813 */waypoints[121].origin = (-619.2, 309.58, 136.125);
|
||||
/*1608845813 */waypoints[121].type = "stand";
|
||||
/*1608845813 */waypoints[121].childCount = 3;
|
||||
/*1608845813 */waypoints[121].children[0] = 29;
|
||||
/*1608845813 */waypoints[121].children[1] = 30;
|
||||
/*1608845813 */waypoints[121].children[2] = 129;
|
||||
/*1608845813 */waypoints[122] = spawnstruct();
|
||||
/*1608845813 */waypoints[122].origin = (-424.764, 343.623, 138.125);
|
||||
/*1608845813 */waypoints[122].type = "stand";
|
||||
/*1608845813 */waypoints[122].childCount = 2;
|
||||
/*1608845813 */waypoints[122].children[0] = 27;
|
||||
/*1608845813 */waypoints[122].children[1] = 129;
|
||||
/*1608845813 */waypoints[123] = spawnstruct();
|
||||
/*1608845813 */waypoints[123].origin = (631.598, 339.74, 140.125);
|
||||
/*1608845813 */waypoints[123].type = "stand";
|
||||
/*1608845813 */waypoints[123].childCount = 3;
|
||||
/*1608845813 */waypoints[123].children[0] = 45;
|
||||
/*1608845813 */waypoints[123].children[1] = 46;
|
||||
/*1608845813 */waypoints[123].children[2] = 126;
|
||||
/*1608845813 */waypoints[124] = spawnstruct();
|
||||
/*1608845813 */waypoints[124].origin = (215.077, 1776, 226.125);
|
||||
/*1608845813 */waypoints[124].type = "stand";
|
||||
/*1608845813 */waypoints[124].childCount = 3;
|
||||
/*1608845813 */waypoints[124].children[0] = 14;
|
||||
/*1608845813 */waypoints[124].children[1] = 15;
|
||||
/*1608845813 */waypoints[124].children[2] = 125;
|
||||
/*1608845813 */waypoints[125] = spawnstruct();
|
||||
/*1608845813 */waypoints[125].origin = (187.166, 1791.77, 232.608);
|
||||
/*1608845813 */waypoints[125].type = "stand";
|
||||
/*1608845813 */waypoints[125].childCount = 1;
|
||||
/*1608845813 */waypoints[125].children[0] = 124;
|
||||
/*1608845813 */waypoints[126] = spawnstruct();
|
||||
/*1608845813 */waypoints[126].origin = (752.257, 395.281, 138.995);
|
||||
/*1608845813 */waypoints[126].type = "stand";
|
||||
/*1608845813 */waypoints[126].childCount = 3;
|
||||
/*1608845813 */waypoints[126].children[0] = 53;
|
||||
/*1608845813 */waypoints[126].children[1] = 123;
|
||||
/*1608845813 */waypoints[126].children[2] = 46;
|
||||
/*1608845813 */waypoints[127] = spawnstruct();
|
||||
/*1608845813 */waypoints[127].origin = (416.655, 986.482, 227.125);
|
||||
/*1608845813 */waypoints[127].type = "stand";
|
||||
/*1608845813 */waypoints[127].childCount = 5;
|
||||
/*1608845813 */waypoints[127].children[0] = 128;
|
||||
/*1608845813 */waypoints[127].children[1] = 73;
|
||||
/*1608845813 */waypoints[127].children[2] = 98;
|
||||
/*1608845813 */waypoints[127].children[3] = 97;
|
||||
/*1608845813 */waypoints[127].children[4] = 63;
|
||||
/*1608845813 */waypoints[128] = spawnstruct();
|
||||
/*1608845813 */waypoints[128].origin = (429.8, 836.278, 136.125);
|
||||
/*1608845813 */waypoints[128].type = "stand";
|
||||
/*1608845813 */waypoints[128].childCount = 3;
|
||||
/*1608845813 */waypoints[128].children[0] = 127;
|
||||
/*1608845813 */waypoints[128].children[1] = 52;
|
||||
/*1608845813 */waypoints[128].children[2] = 62;
|
||||
/*1608845813 */waypoints[129] = spawnstruct();
|
||||
/*1608845813 */waypoints[129].origin = (-526.039, 353.403, 136.125);
|
||||
/*1608845813 */waypoints[129].type = "stand";
|
||||
/*1608845813 */waypoints[129].childCount = 4;
|
||||
/*1608845813 */waypoints[129].children[0] = 122;
|
||||
/*1608845813 */waypoints[129].children[1] = 121;
|
||||
/*1608845813 */waypoints[129].children[2] = 31;
|
||||
/*1608845813 */waypoints[129].children[3] = 30;
|
||||
/*1608845813 */waypoints[130] = spawnstruct();
|
||||
/*1608845813 */waypoints[130].origin = (-473.628, 1104.58, 226.125);
|
||||
/*1608845813 */waypoints[130].type = "stand";
|
||||
/*1608845813 */waypoints[130].childCount = 4;
|
||||
/*1608845813 */waypoints[130].children[0] = 103;
|
||||
/*1608845813 */waypoints[130].children[1] = 38;
|
||||
/*1608845813 */waypoints[130].children[2] = 108;
|
||||
/*1608845813 */waypoints[130].children[3] = 106;
|
||||
/*1608845813 */waypoints[131] = spawnstruct();
|
||||
/*1608845813 */waypoints[131].origin = (1037.14, 1164.79, 392.125);
|
||||
/*1608845813 */waypoints[131].type = "stand";
|
||||
/*1608845813 */waypoints[131].childCount = 3;
|
||||
/*1608845813 */waypoints[131].children[0] = 0;
|
||||
/*1608845813 */waypoints[131].children[1] = 6;
|
||||
/*1608845813 */waypoints[131].children[2] = 136;
|
||||
/*1608845813 */waypoints[132] = spawnstruct();
|
||||
/*1608845813 */waypoints[132].origin = (1038.34, 1597.86, 222.183);
|
||||
/*1608845813 */waypoints[132].type = "stand";
|
||||
/*1608845813 */waypoints[132].childCount = 3;
|
||||
/*1608845813 */waypoints[132].children[0] = 7;
|
||||
/*1608845813 */waypoints[132].children[1] = 9;
|
||||
/*1608845813 */waypoints[132].children[2] = 133;
|
||||
/*1608845813 */waypoints[133] = spawnstruct();
|
||||
/*1608845813 */waypoints[133].origin = (1185.84, 1564.06, 226.125);
|
||||
/*1608845813 */waypoints[133].type = "stand";
|
||||
/*1608845813 */waypoints[133].childCount = 2;
|
||||
/*1608845813 */waypoints[133].children[0] = 132;
|
||||
/*1608845813 */waypoints[133].children[1] = 134;
|
||||
/*1608845813 */waypoints[134] = spawnstruct();
|
||||
/*1608845813 */waypoints[134].origin = (1188.4, 1280.18, 392.125);
|
||||
/*1608845813 */waypoints[134].type = "stand";
|
||||
/*1608845813 */waypoints[134].childCount = 3;
|
||||
/*1608845813 */waypoints[134].children[0] = 133;
|
||||
/*1608845813 */waypoints[134].children[1] = 5;
|
||||
/*1608845813 */waypoints[134].children[2] = 6;
|
||||
/*1608845813 */waypoints[135] = spawnstruct();
|
||||
/*1608845813 */waypoints[135].origin = (1039.93, 1078.88, 226.125);
|
||||
/*1608845813 */waypoints[135].type = "climb";
|
||||
/*1608845813 */waypoints[135].childCount = 3;
|
||||
/*1608845813 */waypoints[135].children[0] = 136;
|
||||
/*1608845813 */waypoints[135].children[1] = 66;
|
||||
/*1608845813 */waypoints[135].children[2] = 67;
|
||||
/*1608845813 */waypoints[135].angles = (5.58105, 89.1421, 0);
|
||||
/*1608845813 */waypoints[136] = spawnstruct();
|
||||
/*1608845813 */waypoints[136].origin = (1039.95, 1095.4, 400.125);
|
||||
/*1608845813 */waypoints[136].type = "climb";
|
||||
/*1608845813 */waypoints[136].childCount = 2;
|
||||
/*1608845813 */waypoints[136].children[0] = 135;
|
||||
/*1608845813 */waypoints[136].children[1] = 131;
|
||||
/*1608845813 */waypoints[136].angles = (2.71912, 89.3618, 0);
|
||||
/*1608845813 */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
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,203 +0,0 @@
|
||||
// Callback Setup
|
||||
// This script provides the hooks from code into script for the gametype callback functions.
|
||||
|
||||
//=============================================================================
|
||||
// Code Callback functions
|
||||
|
||||
/*================
|
||||
Called by code after the level's main script function has run.
|
||||
================*/
|
||||
CodeCallback_StartGameType()
|
||||
{
|
||||
// If the gametype has not beed started, run the startup
|
||||
if(!isDefined(level.gametypestarted) || !level.gametypestarted)
|
||||
{
|
||||
[[level.callbackStartGameType]]();
|
||||
|
||||
level.gametypestarted = true; // so we know that the gametype has been started up
|
||||
|
||||
level thread maps\mp\bots\_bot::init();
|
||||
level thread maps\mp\bots\_bot_chat::init();
|
||||
level thread maps\mp\bots\_menu::init();
|
||||
level thread maps\mp\bots\_wp_editor::init();
|
||||
}
|
||||
}
|
||||
|
||||
/*================
|
||||
Called when a player begins connecting to the server.
|
||||
Called again for every map change or tournement restart.
|
||||
|
||||
Return undefined if the client should be allowed, otherwise return
|
||||
a string with the reason for denial.
|
||||
|
||||
Otherwise, the client will be sent the current gamestate
|
||||
and will eventually get to ClientBegin.
|
||||
|
||||
firstTime will be qtrue the very first time a client connects
|
||||
to the server machine, but qfalse on map changes and tournement
|
||||
restarts.
|
||||
================*/
|
||||
CodeCallback_PlayerConnect()
|
||||
{
|
||||
self endon("disconnect");
|
||||
[[level.callbackPlayerConnect]]();
|
||||
}
|
||||
|
||||
/*================
|
||||
Called when a player drops from the server.
|
||||
Will not be called between levels.
|
||||
self is the player that is disconnecting.
|
||||
================*/
|
||||
CodeCallback_PlayerDisconnect()
|
||||
{
|
||||
self notify("disconnect");
|
||||
|
||||
// CODER_MOD - DSL - 03/24/08
|
||||
// Tidy up ambient triggers.
|
||||
|
||||
client_num = self getentitynumber();
|
||||
|
||||
maps\mp\_ambientpackage::tidyup_triggers(client_num);
|
||||
|
||||
[[level.callbackPlayerDisconnect]]();
|
||||
}
|
||||
|
||||
/*================
|
||||
Called when a player has taken damage.
|
||||
self is the player that took damage.
|
||||
================*/
|
||||
CodeCallback_PlayerDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset)
|
||||
{
|
||||
self endon("disconnect");
|
||||
[[level.callbackPlayerDamage]](eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset);
|
||||
}
|
||||
|
||||
/*================
|
||||
Called when a player has been killed.
|
||||
self is the player that was killed.
|
||||
================*/
|
||||
CodeCallback_PlayerKilled(eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration)
|
||||
{
|
||||
self endon("disconnect");
|
||||
[[level.callbackPlayerKilled]](eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration);
|
||||
}
|
||||
|
||||
/*================
|
||||
Called when a player has been killed, but has last stand perk.
|
||||
self is the player that was killed.
|
||||
================*/
|
||||
CodeCallback_PlayerLastStand(eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration )
|
||||
{
|
||||
self endon("disconnect");
|
||||
[[level.callbackPlayerLastStand]](eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration );
|
||||
}
|
||||
|
||||
/*================
|
||||
Called when a actor has taken damage.
|
||||
self is the actor that took damage.
|
||||
================*/
|
||||
CodeCallback_ActorDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset)
|
||||
{
|
||||
[[level.callbackActorDamage]](eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset);
|
||||
}
|
||||
|
||||
/*================
|
||||
Called when a actor has been killed.
|
||||
self is the actor that was killed.
|
||||
================*/
|
||||
CodeCallback_ActorKilled(eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset)
|
||||
{
|
||||
[[level.callbackActorKilled]](eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset);
|
||||
}
|
||||
|
||||
|
||||
/*================
|
||||
Called when a vehicle has taken damage.
|
||||
self is the vehicl that took damage.
|
||||
================*/
|
||||
CodeCallback_VehicleDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset, damageFromUnderneath, modelIndex, partName)
|
||||
{
|
||||
[[level.callbackVehicleDamage]](eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset, damageFromUnderneath, modelIndex, partName);
|
||||
}
|
||||
|
||||
|
||||
/*================
|
||||
Called when a vehicle has taken damage.
|
||||
self is the vehicl that took damage.
|
||||
================*/
|
||||
CodeCallback_VehicleRadiusDamage(eInflictor, eAttacker, iDamage, fInnerDamage, fOuterDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, fRadius, fConeAngleCos, vConeDir, timeOffset)
|
||||
{
|
||||
[[level.callbackVehicleRadiusDamage]](eInflictor, eAttacker, iDamage, fInnerDamage, fOuterDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, fRadius, fConeAngleCos, vConeDir, timeOffset);
|
||||
}
|
||||
|
||||
|
||||
|
||||
//=============================================================================
|
||||
|
||||
/*================
|
||||
Setup any misc callbacks stuff like defines and default callbacks
|
||||
================*/
|
||||
SetupCallbacks()
|
||||
{
|
||||
SetDefaultCallbacks();
|
||||
|
||||
// Set defined for damage flags used in the playerDamage callback
|
||||
level.iDFLAGS_RADIUS = 1;
|
||||
level.iDFLAGS_NO_ARMOR = 2;
|
||||
level.iDFLAGS_NO_KNOCKBACK = 4;
|
||||
level.iDFLAGS_PENETRATION = 8;
|
||||
level.iDFLAGS_NO_TEAM_PROTECTION = 16;
|
||||
level.iDFLAGS_NO_PROTECTION = 32;
|
||||
level.iDFLAGS_PASSTHRU = 64;
|
||||
}
|
||||
|
||||
/*================
|
||||
Called from the gametype script to store off the default callback functions.
|
||||
This allows the callbacks to be overridden by level script, but not lost.
|
||||
================*/
|
||||
SetDefaultCallbacks()
|
||||
{
|
||||
level.callbackStartGameType = maps\mp\gametypes\_globallogic::Callback_StartGameType;
|
||||
level.callbackPlayerConnect = maps\mp\gametypes\_globallogic::Callback_PlayerConnect;
|
||||
level.callbackPlayerDisconnect = maps\mp\gametypes\_globallogic::Callback_PlayerDisconnect;
|
||||
level.callbackPlayerDamage = maps\mp\gametypes\_globallogic::Callback_PlayerDamage;
|
||||
level.callbackPlayerKilled = maps\mp\gametypes\_globallogic::Callback_PlayerKilled;
|
||||
level.callbackPlayerLastStand = maps\mp\gametypes\_globallogic::Callback_PlayerLastStand;
|
||||
level.callbackActorDamage = maps\mp\gametypes\_globallogic::Callback_ActorDamage;
|
||||
level.callbackActorKilled = maps\mp\gametypes\_globallogic::Callback_ActorKilled;
|
||||
level.callbackVehicleDamage = maps\mp\gametypes\_globallogic::Callback_VehicleDamage;
|
||||
level.callbackVehicleRadiusDamage = maps\mp\gametypes\_globallogic::Callback_VehicleRadiusDamage;
|
||||
level.callbackPlayerSpawnGenerateInfluencers= maps\mp\gametypes\_globallogic::Callback_PlayerSpawnGenerateInfluencers;
|
||||
level.callbackPlayerSpawnGenerateSpawnPointEntityBaseScore= maps\mp\gametypes\_globallogic::Callback_PlayerSpawnGenerateSpawnPointEntityBaseScore;
|
||||
}
|
||||
|
||||
/*================
|
||||
Called when a gametype is not supported.
|
||||
================*/
|
||||
AbortLevel()
|
||||
{
|
||||
println("Aborting level - gametype is not supported");
|
||||
|
||||
level.callbackStartGameType = ::callbackVoid;
|
||||
level.callbackPlayerConnect = ::callbackVoid;
|
||||
level.callbackPlayerDisconnect = ::callbackVoid;
|
||||
level.callbackPlayerDamage = ::callbackVoid;
|
||||
level.callbackPlayerKilled = ::callbackVoid;
|
||||
level.callbackPlayerLastStand = ::callbackVoid;
|
||||
level.callbackActorDamage = ::callbackVoid;
|
||||
level.callbackActorKilled = ::callbackVoid;
|
||||
level.callbackVehicleDamage = ::callbackVoid;
|
||||
level.callbackPlayerSpawnGenerateInfluencers= ::callbackVoid;
|
||||
level.callbackPlayerSpawnGenerateSpawnPointEntityBaseScore= ::callbackVoid;
|
||||
|
||||
setdvar("g_gametype", "dm");
|
||||
|
||||
exitLevel(false);
|
||||
}
|
||||
|
||||
/*================
|
||||
================*/
|
||||
callbackVoid()
|
||||
{
|
||||
}
|
||||
|
@@ -1,28 +0,0 @@
|
||||
init()
|
||||
{
|
||||
level.clientid = 0;
|
||||
|
||||
level.allowPrintDamage = true;
|
||||
|
||||
level thread onPlayerConnect();
|
||||
|
||||
wait 1;
|
||||
|
||||
if (getDvar("scr_xpscale_") == "")
|
||||
setDvar("scr_xpscale_", 1);
|
||||
|
||||
level.xpScale = getDvarInt("scr_xpscale_");
|
||||
}
|
||||
|
||||
onPlayerConnect()
|
||||
{
|
||||
for(;;)
|
||||
{
|
||||
level waittill("connecting", player);
|
||||
|
||||
player.clientid = level.clientid;
|
||||
level.clientid++; // Is this safe? What if a server runs for a long time and many people join/leave
|
||||
|
||||
player.printDamage = true;
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user