I'm trying to figure out how to nerf Mimic Beacons so they just have the normal priority of a soldier, and are not always targeted first. The AI units have behaviors defined like this in the AI.ini
Behaviors=(BehaviorName=AdvShieldBearer_RedAbilitySelector, NodeType=Selector, Child[0]=MimicBeaconBehavior, Child[1]=ShieldBearerFirstAction, Child[2]=ShieldBearerLastAction) If I remove the definition of MimicBeaconBehavior or the child notes, then all the AI units ignore Mimic Beacons instead. in AIBehavior.uc this seems to be the result of the priority check:
function bool PassesRestriction( vector vPosition )
{
...
// If a visible mimic beacon exists, all destinations must have LoS to it.
if( BTPriorityTarget > 0 && bScoringPriorityTarget )
{
TilePosition = XWorld.GetTileCoordinatesFromPosition(vPosition);
PriorityTile = XWorld.GetTileCoordinatesFromPosition(ScoringPriorityLocation);
if (!`XWORLD.CanSeeTileToTile(TilePosition, PriorityTile, VisInfo))
{
return false;
}
}
Is the BTPriorityTarget always a mimic beacon? iCacheScoringPriorityValues() and BT_SetTargetAsPriority() make it unclear. The AI code generally is super confusing to me.