mirror of
https://github.com/ineedbots/iw4_bot_warfare.git
synced 2025-09-18 16:37:25 +00:00
comment spacing format
This commit is contained in:
@@ -4171,7 +4171,7 @@ bot_turret_attack( enemy )
|
||||
return;
|
||||
}
|
||||
|
||||
//if ( !BulletTracePassed( self getEye(), enemy.origin + ( 0, 0, 15 ), false, enemy ) )
|
||||
// if ( !BulletTracePassed( self getEye(), enemy.origin + ( 0, 0, 15 ), false, enemy ) )
|
||||
// return;
|
||||
}
|
||||
}
|
||||
@@ -5967,7 +5967,7 @@ bot_dom_cap_think_loop()
|
||||
|
||||
if ( flag.useObj.curProgress == cur )
|
||||
{
|
||||
break;//some enemy is near us, kill him
|
||||
break; // some enemy is near us, kill him
|
||||
}
|
||||
|
||||
self thread bot_do_random_action_for_objective( flag );
|
||||
@@ -6064,10 +6064,10 @@ bot_hq_loop()
|
||||
gameobj = radio.gameobject;
|
||||
origin = ( radio.origin[ 0 ], radio.origin[ 1 ], radio.origin[ 2 ] + 5 );
|
||||
|
||||
//if neut or enemy
|
||||
// if neut or enemy
|
||||
if ( gameobj.ownerTeam != myTeam )
|
||||
{
|
||||
if ( gameobj.interactTeam == "none" ) //wait for it to become active
|
||||
if ( gameobj.interactTeam == "none" ) // wait for it to become active
|
||||
{
|
||||
if ( self HasScriptGoal() )
|
||||
{
|
||||
@@ -6089,7 +6089,7 @@ bot_hq_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//capture it
|
||||
// capture it
|
||||
|
||||
self BotNotifyBotEvent( "hq", "go", "cap" );
|
||||
|
||||
@@ -6127,7 +6127,7 @@ bot_hq_loop()
|
||||
|
||||
if ( cur == gameobj.curProgress )
|
||||
{
|
||||
break;//no prog made, enemy must be capping
|
||||
break; // no prog made, enemy must be capping
|
||||
}
|
||||
|
||||
self thread bot_do_random_action_for_objective( gameobj.trigger );
|
||||
@@ -6138,9 +6138,9 @@ bot_hq_loop()
|
||||
|
||||
self BotNotifyBotEvent( "hq", "stop", "cap" );
|
||||
}
|
||||
else//we own it
|
||||
else // we own it
|
||||
{
|
||||
if ( gameobj.objPoints[ myteam ].isFlashing ) //underattack
|
||||
if ( gameobj.objPoints[ myteam ].isFlashing ) // underattack
|
||||
{
|
||||
self BotNotifyBotEvent( "hq", "start", "defend" );
|
||||
|
||||
@@ -6314,7 +6314,7 @@ bot_sab_loop()
|
||||
if ( level.bombPlanted )
|
||||
{
|
||||
// kill defuser
|
||||
if ( site isInUse() ) //somebody is defusing our bomb we planted
|
||||
if ( site isInUse() ) // somebody is defusing our bomb we planted
|
||||
{
|
||||
self BotNotifyBotEvent( "sab", "start", "defuser" );
|
||||
|
||||
@@ -6334,7 +6334,7 @@ bot_sab_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//else hang around the site
|
||||
// else hang around the site
|
||||
if ( DistanceSquared( origin, self.origin ) <= 1024 * 1024 )
|
||||
{
|
||||
return;
|
||||
@@ -6433,7 +6433,7 @@ bot_sab_loop()
|
||||
// protect our site from planters
|
||||
if ( !level.bombPlanted )
|
||||
{
|
||||
//kill bomb carrier
|
||||
// kill bomb carrier
|
||||
if ( site.bots > 2 || randomInt( 100 ) < 45 )
|
||||
{
|
||||
if ( self HasScriptGoal() )
|
||||
@@ -6459,12 +6459,12 @@ bot_sab_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//protect bomb site
|
||||
// protect bomb site
|
||||
origin = ( site.curorigin[ 0 ] + 50, site.curorigin[ 1 ] + 50, site.curorigin[ 2 ] + 5 );
|
||||
|
||||
self thread bot_inc_bots( site );
|
||||
|
||||
if ( site isInUse() ) //somebody is planting
|
||||
if ( site isInUse() ) // somebody is planting
|
||||
{
|
||||
self BotNotifyBotEvent( "sab", "start", "planter" );
|
||||
|
||||
@@ -6485,7 +6485,7 @@ bot_sab_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//else hang around the site
|
||||
// else hang around the site
|
||||
if ( DistanceSquared( origin, self.origin ) <= 1024 * 1024 )
|
||||
{
|
||||
wait 4;
|
||||
@@ -6664,7 +6664,7 @@ bot_sd_defenders_loop( data )
|
||||
{
|
||||
origin = ( bomb.curorigin[ 0 ], bomb.curorigin[ 1 ], bomb.curorigin[ 2 ] + 5 );
|
||||
|
||||
//hang around the bomb
|
||||
// hang around the bomb
|
||||
if ( self HasScriptGoal() )
|
||||
{
|
||||
return;
|
||||
@@ -6722,7 +6722,7 @@ bot_sd_defenders_loop( data )
|
||||
|
||||
origin = ( site.curorigin[ 0 ] + 50, site.curorigin[ 1 ] + 50, site.curorigin[ 2 ] + 5 );
|
||||
|
||||
if ( site isInUse() ) //somebody is planting
|
||||
if ( site isInUse() ) // somebody is planting
|
||||
{
|
||||
self BotNotifyBotEvent( "sd", "start", "planter", site );
|
||||
|
||||
@@ -6742,7 +6742,7 @@ bot_sd_defenders_loop( data )
|
||||
return;
|
||||
}
|
||||
|
||||
//else hang around the site
|
||||
// else hang around the site
|
||||
if ( DistanceSquared( origin, self.origin ) <= 1024 * 1024 )
|
||||
{
|
||||
return;
|
||||
@@ -6898,7 +6898,7 @@ bot_sd_attackers_loop( data )
|
||||
myTeam = self.pers[ "team" ];
|
||||
otherTeam = getOtherTeam( myTeam );
|
||||
|
||||
//bomb planted
|
||||
// bomb planted
|
||||
if ( level.bombPlanted )
|
||||
{
|
||||
if ( !isDefined( level.defuseObject ) )
|
||||
@@ -6910,7 +6910,7 @@ bot_sd_attackers_loop( data )
|
||||
|
||||
origin = ( site.curorigin[ 0 ], site.curorigin[ 1 ], site.curorigin[ 2 ] + 5 );
|
||||
|
||||
if ( site IsInUse() ) //somebody is defusing
|
||||
if ( site IsInUse() ) // somebody is defusing
|
||||
{
|
||||
self BotNotifyBotEvent( "sd", "start", "defuser" );
|
||||
|
||||
@@ -6931,7 +6931,7 @@ bot_sd_attackers_loop( data )
|
||||
return;
|
||||
}
|
||||
|
||||
//else hang around the site
|
||||
// else hang around the site
|
||||
if ( DistanceSquared( origin, self.origin ) <= 1024 * 1024 )
|
||||
{
|
||||
return;
|
||||
@@ -6952,7 +6952,7 @@ bot_sd_attackers_loop( data )
|
||||
timeleft = maps\mp\gametypes\_gamelogic::getTimeRemaining() / 1000;
|
||||
timepassed = getTimePassed() / 1000;
|
||||
|
||||
//dont have a bomb
|
||||
// dont have a bomb
|
||||
if ( !self IsBombCarrier() && !level.multiBomb )
|
||||
{
|
||||
if ( !isDefined( level.sdBomb ) )
|
||||
@@ -6963,10 +6963,10 @@ bot_sd_attackers_loop( data )
|
||||
bomb = level.sdBomb;
|
||||
carrier = level.sdBomb.carrier;
|
||||
|
||||
//bomb is picked up
|
||||
// bomb is picked up
|
||||
if ( isDefined( carrier ) )
|
||||
{
|
||||
//escort the bomb carrier
|
||||
// escort the bomb carrier
|
||||
if ( self HasScriptGoal() )
|
||||
{
|
||||
return;
|
||||
@@ -6997,7 +6997,7 @@ bot_sd_attackers_loop( data )
|
||||
|
||||
origin = ( bomb.curorigin[ 0 ], bomb.curorigin[ 1 ], bomb.curorigin[ 2 ] + 5 );
|
||||
|
||||
//hang around the bomb if other is going to go get it
|
||||
// hang around the bomb if other is going to go get it
|
||||
if ( bomb.bots > 1 )
|
||||
{
|
||||
if ( self HasScriptGoal() )
|
||||
@@ -7162,9 +7162,9 @@ bot_cap_loop()
|
||||
{
|
||||
carrier = myflag.carrier;
|
||||
|
||||
if ( !isDefined( carrier ) ) //someone doesnt has our flag
|
||||
if ( !isDefined( carrier ) ) // someone doesnt has our flag
|
||||
{
|
||||
if ( !isDefined( theirflag.carrier ) && DistanceSquared( self.origin, theirflag.curorigin ) < DistanceSquared( self.origin, myflag.curorigin ) ) //no one has their flag and its closer
|
||||
if ( !isDefined( theirflag.carrier ) && DistanceSquared( self.origin, theirflag.curorigin ) < DistanceSquared( self.origin, myflag.curorigin ) ) // no one has their flag and its closer
|
||||
{
|
||||
self BotNotifyBotEvent( "cap", "start", "their_flag", theirflag );
|
||||
|
||||
@@ -7172,7 +7172,7 @@ bot_cap_loop()
|
||||
|
||||
self BotNotifyBotEvent( "cap", "stop", "their_flag", theirflag );
|
||||
}
|
||||
else//go get it
|
||||
else // go get it
|
||||
{
|
||||
self BotNotifyBotEvent( "cap", "start", "my_flag", myflag );
|
||||
|
||||
@@ -7187,7 +7187,7 @@ bot_cap_loop()
|
||||
{
|
||||
if ( theirflag maps\mp\gametypes\_gameobjects::isHome() && randomint( 100 ) < 50 )
|
||||
{
|
||||
//take their flag
|
||||
// take their flag
|
||||
self BotNotifyBotEvent( "cap", "start", "their_flag", theirflag );
|
||||
|
||||
self bot_cap_get_flag( theirflag );
|
||||
@@ -7210,7 +7210,7 @@ bot_cap_loop()
|
||||
|
||||
if ( theirzone.bots > 2 || randomInt( 100 ) < 45 )
|
||||
{
|
||||
//kill carrier
|
||||
// kill carrier
|
||||
if ( carrier _hasPerk( "specialty_coldblooded" ) )
|
||||
{
|
||||
return;
|
||||
@@ -7231,7 +7231,7 @@ bot_cap_loop()
|
||||
|
||||
self thread bot_inc_bots( theirzone );
|
||||
|
||||
//camp their zone
|
||||
// camp their zone
|
||||
if ( DistanceSquared( origin, self.origin ) <= 1024 * 1024 )
|
||||
{
|
||||
wait 4;
|
||||
@@ -7251,11 +7251,11 @@ bot_cap_loop()
|
||||
}
|
||||
}
|
||||
}
|
||||
else//our flag is ok
|
||||
else // our flag is ok
|
||||
{
|
||||
if ( self isFlagCarrier() ) //if have flag
|
||||
if ( self isFlagCarrier() ) // if have flag
|
||||
{
|
||||
//go cap
|
||||
// go cap
|
||||
origin = myzone.curorigin;
|
||||
|
||||
self BotNotifyBotEvent( "cap", "start", "cap" );
|
||||
@@ -7281,7 +7281,7 @@ bot_cap_loop()
|
||||
|
||||
carrier = theirflag.carrier;
|
||||
|
||||
if ( !isDefined( carrier ) ) //if no one has enemy flag
|
||||
if ( !isDefined( carrier ) ) // if no one has enemy flag
|
||||
{
|
||||
self BotNotifyBotEvent( "cap", "start", "their_flag", theirflag );
|
||||
|
||||
@@ -7291,7 +7291,7 @@ bot_cap_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//escort them
|
||||
// escort them
|
||||
|
||||
if ( self HasScriptGoal() )
|
||||
{
|
||||
@@ -7374,7 +7374,7 @@ bot_cap_get_flag( flag )
|
||||
{
|
||||
origin = flag.curorigin;
|
||||
|
||||
//go get it
|
||||
// go get it
|
||||
|
||||
self.bot_lock_goal = true;
|
||||
self SetScriptGoal( origin, 32 );
|
||||
@@ -7404,7 +7404,7 @@ bot_cap_get_flag( flag )
|
||||
|
||||
if ( flag.curProgress == cur )
|
||||
{
|
||||
break;//some enemy is near us, kill him
|
||||
break; // some enemy is near us, kill him
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7486,9 +7486,9 @@ bot_dem_attackers_loop()
|
||||
myTeam = self.pers[ "team" ];
|
||||
otherTeam = getOtherTeam( myTeam );
|
||||
|
||||
bombs = [];//sites with bombs
|
||||
sites = [];//sites to bomb at
|
||||
bombed = 0;//exploded sites
|
||||
bombs = []; // sites with bombs
|
||||
sites = []; // sites to bomb at
|
||||
bombed = 0; // exploded sites
|
||||
|
||||
for ( i = 0; i < level.bombZones.size; i++ )
|
||||
{
|
||||
@@ -7533,9 +7533,9 @@ bot_dem_attackers_loop()
|
||||
|
||||
shouldLet = ( game[ "teamScores" ][ myteam ] > game[ "teamScores" ][ otherTeam ] && timeleft < 90 && bombed == 1 );
|
||||
|
||||
//spawnkill conditions
|
||||
//if we have bombed one site or 1 bomb is planted with lots of time left, spawn kill
|
||||
//if we want the other team to win for overtime and they do not need to defuse, spawn kill
|
||||
// spawnkill conditions
|
||||
// if we have bombed one site or 1 bomb is planted with lots of time left, spawn kill
|
||||
// if we want the other team to win for overtime and they do not need to defuse, spawn kill
|
||||
if ( ( ( bombed + bombs.size == 1 && timeleft >= 90 ) || ( shouldLet && !bombs.size ) ) && randomInt( 100 ) < 95 )
|
||||
{
|
||||
if ( self HasScriptGoal() )
|
||||
@@ -7569,9 +7569,9 @@ bot_dem_attackers_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//let defuse conditions
|
||||
//if enemy is going to lose and lots of time left, let them defuse to play longer
|
||||
//or if want to go into overtime near end of the extended game
|
||||
// let defuse conditions
|
||||
// if enemy is going to lose and lots of time left, let them defuse to play longer
|
||||
// or if want to go into overtime near end of the extended game
|
||||
if ( ( ( bombs.size + bombed == 2 && timeleft >= 90 ) || ( shouldLet && bombs.size ) ) && randomInt( 100 ) < 95 )
|
||||
{
|
||||
spawnPoints = maps\mp\gametypes\_spawnlogic::getSpawnpointArray( "mp_dd_spawn_attacker_start" );
|
||||
@@ -7600,14 +7600,14 @@ bot_dem_attackers_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//defend bomb conditions
|
||||
//if time is running out and we have a bomb planted
|
||||
// defend bomb conditions
|
||||
// if time is running out and we have a bomb planted
|
||||
if ( bombs.size && timeleft < 90 && ( !sites.size || randomInt( 100 ) < 95 ) )
|
||||
{
|
||||
site = self bot_array_nearest_curorigin( bombs );
|
||||
origin = ( site.curorigin[ 0 ] + 50, site.curorigin[ 1 ] + 50, site.curorigin[ 2 ] + 5 );
|
||||
|
||||
if ( site IsInUse() ) //somebody is defusing
|
||||
if ( site IsInUse() ) // somebody is defusing
|
||||
{
|
||||
self BotNotifyBotEvent( "dem", "start", "defuser", site );
|
||||
|
||||
@@ -7627,7 +7627,7 @@ bot_dem_attackers_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//else hang around the site
|
||||
// else hang around the site
|
||||
if ( DistanceSquared( origin, self.origin ) <= 1024 * 1024 )
|
||||
{
|
||||
return;
|
||||
@@ -7645,7 +7645,7 @@ bot_dem_attackers_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//else go plant
|
||||
// else go plant
|
||||
if ( !sites.size )
|
||||
{
|
||||
return;
|
||||
@@ -7665,7 +7665,7 @@ bot_dem_attackers_loop()
|
||||
|
||||
origin = ( plant.curorigin[ 0 ] + 50, plant.curorigin[ 1 ] + 50, plant.curorigin[ 2 ] + 5 );
|
||||
|
||||
//hang around the site if lots of time left
|
||||
// hang around the site if lots of time left
|
||||
if ( plant.bots > 1 && timeleft >= 60 )
|
||||
{
|
||||
if ( self HasScriptGoal() )
|
||||
@@ -7772,9 +7772,9 @@ bot_dem_defenders_loop()
|
||||
myTeam = self.pers[ "team" ];
|
||||
otherTeam = getOtherTeam( myTeam );
|
||||
|
||||
bombs = [];//sites with bombs
|
||||
sites = [];//sites to bomb at
|
||||
bombed = 0;//exploded sites
|
||||
bombs = []; // sites with bombs
|
||||
sites = []; // sites to bomb at
|
||||
bombed = 0; // exploded sites
|
||||
|
||||
for ( i = 0; i < level.bombZones.size; i++ )
|
||||
{
|
||||
@@ -7819,9 +7819,9 @@ bot_dem_defenders_loop()
|
||||
|
||||
shouldLet = ( timeleft < 60 && ( ( bombed == 0 && bombs.size != 2 ) || ( game[ "teamScores" ][ myteam ] > game[ "teamScores" ][ otherTeam ] && bombed == 1 ) ) && randomInt( 100 ) < 98 );
|
||||
|
||||
//spawnkill conditions
|
||||
//if nothing to defuse with a lot of time left, spawn kill
|
||||
//or letting a bomb site to explode but a bomb is planted, so spawnkill
|
||||
// spawnkill conditions
|
||||
// if nothing to defuse with a lot of time left, spawn kill
|
||||
// or letting a bomb site to explode but a bomb is planted, so spawnkill
|
||||
if ( ( !bombs.size && timeleft >= 60 && randomInt( 100 ) < 95 ) || ( shouldLet && bombs.size == 1 ) )
|
||||
{
|
||||
if ( self HasScriptGoal() )
|
||||
@@ -7855,9 +7855,9 @@ bot_dem_defenders_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//let blow up conditions
|
||||
//let enemy blow up at least one to extend play time
|
||||
//or if want to go into overtime after extended game
|
||||
// let blow up conditions
|
||||
// let enemy blow up at least one to extend play time
|
||||
// or if want to go into overtime after extended game
|
||||
if ( shouldLet )
|
||||
{
|
||||
spawnPoints = maps\mp\gametypes\_spawnlogic::getSpawnpointArray( "mp_dd_spawn_defender_start" );
|
||||
@@ -7886,14 +7886,14 @@ bot_dem_defenders_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//defend conditions
|
||||
//if no bombs planted with little time left
|
||||
// defend conditions
|
||||
// if no bombs planted with little time left
|
||||
if ( !bombs.size && timeleft < 60 && randomInt( 100 ) < 95 && sites.size )
|
||||
{
|
||||
site = self bot_array_nearest_curorigin( sites );
|
||||
origin = ( site.curorigin[ 0 ] + 50, site.curorigin[ 1 ] + 50, site.curorigin[ 2 ] + 5 );
|
||||
|
||||
if ( site IsInUse() ) //somebody is planting
|
||||
if ( site IsInUse() ) // somebody is planting
|
||||
{
|
||||
self BotNotifyBotEvent( "dem", "start", "planter", site );
|
||||
|
||||
@@ -7913,7 +7913,7 @@ bot_dem_defenders_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//else hang around the site
|
||||
// else hang around the site
|
||||
|
||||
if ( DistanceSquared( origin, self.origin ) <= 1024 * 1024 )
|
||||
{
|
||||
@@ -7932,7 +7932,7 @@ bot_dem_defenders_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//else go defuse
|
||||
// else go defuse
|
||||
|
||||
if ( !bombs.size )
|
||||
{
|
||||
@@ -7953,7 +7953,7 @@ bot_dem_defenders_loop()
|
||||
|
||||
origin = ( defuse.curorigin[ 0 ] + 50, defuse.curorigin[ 1 ] + 50, defuse.curorigin[ 2 ] + 5 );
|
||||
|
||||
//hang around the site if not in danger of losing
|
||||
// hang around the site if not in danger of losing
|
||||
if ( defuse.bots > 1 && bombed + bombs.size != 2 )
|
||||
{
|
||||
if ( self HasScriptGoal() )
|
||||
@@ -8272,7 +8272,7 @@ bot_gtnw_loop()
|
||||
|
||||
if ( cur == level.nukeSite.curProgress )
|
||||
{
|
||||
break;//no prog made, enemy must be capping
|
||||
break; // no prog made, enemy must be capping
|
||||
}
|
||||
|
||||
self thread bot_do_random_action_for_objective( trigger );
|
||||
@@ -8302,7 +8302,7 @@ bot_gtnw_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//else hang around the site
|
||||
// else hang around the site
|
||||
if ( DistanceSquared( origin, self.origin ) <= 1024 * 1024 )
|
||||
{
|
||||
return;
|
||||
@@ -8366,7 +8366,7 @@ bot_oneflag_loop()
|
||||
|
||||
if ( self isFlagCarrier() )
|
||||
{
|
||||
//go cap
|
||||
// go cap
|
||||
origin = myzone.curorigin;
|
||||
|
||||
self BotNotifyBotEvent( "oneflag", "start", "cap" );
|
||||
@@ -8391,7 +8391,7 @@ bot_oneflag_loop()
|
||||
|
||||
carrier = theirflag.carrier;
|
||||
|
||||
if ( !isDefined( carrier ) ) //if no one has enemy flag
|
||||
if ( !isDefined( carrier ) ) // if no one has enemy flag
|
||||
{
|
||||
self BotNotifyBotEvent( "oneflag", "start", "their_flag" );
|
||||
self bot_cap_get_flag( theirflag );
|
||||
@@ -8399,7 +8399,7 @@ bot_oneflag_loop()
|
||||
return;
|
||||
}
|
||||
|
||||
//escort them
|
||||
// escort them
|
||||
|
||||
if ( self HasScriptGoal() )
|
||||
{
|
||||
@@ -8430,7 +8430,7 @@ bot_oneflag_loop()
|
||||
{
|
||||
carrier = myflag.carrier;
|
||||
|
||||
if ( !isDefined( carrier ) ) //someone doesnt has our flag
|
||||
if ( !isDefined( carrier ) ) // someone doesnt has our flag
|
||||
{
|
||||
self BotNotifyBotEvent( "oneflag", "start", "my_flag" );
|
||||
self bot_cap_get_flag( myflag );
|
||||
@@ -8452,7 +8452,7 @@ bot_oneflag_loop()
|
||||
|
||||
if ( theirzone.bots > 2 || randomInt( 100 ) < 45 )
|
||||
{
|
||||
//kill carrier
|
||||
// kill carrier
|
||||
if ( carrier _hasPerk( "specialty_coldblooded" ) )
|
||||
{
|
||||
return;
|
||||
@@ -8473,7 +8473,7 @@ bot_oneflag_loop()
|
||||
|
||||
self thread bot_inc_bots( theirzone );
|
||||
|
||||
//camp their zone
|
||||
// camp their zone
|
||||
if ( DistanceSquared( origin, self.origin ) <= 1024 * 1024 )
|
||||
{
|
||||
wait 4;
|
||||
@@ -8586,7 +8586,7 @@ bot_arena_loop()
|
||||
|
||||
if ( cur == flag.curProgress )
|
||||
{
|
||||
break;//no prog made, enemy must be capping
|
||||
break; // no prog made, enemy must be capping
|
||||
}
|
||||
|
||||
self thread bot_do_random_action_for_objective( flag.trigger );
|
||||
|
Reference in New Issue
Block a user