A subtle one, this one...
General hints: put
ai.setParameter("oolite_flag_behaviourLogging",true);
before your
setPriorities
call if a priority AI is acting oddly and you can't tell why. Alternatively, set it from the debug console on a single ship (in this case, your target) with
PS.target.AIScript.oolite_priorityai.setParameter("oolite_flag_behaviourLogging",true);
. This will dump the AI calculation for that ship to the log every time it reconsiders. You can use the "label" property of a priority entry to give them a more convenient label than "7". If you want to force an immediate reconsideration, the shortest way is
PS.target.AIScriptWakeTime = 1;
. Behaviour logging will fill your Latest.log up very very quickly, especially if it's turned on for more than one ship, so most of the time you probably want to use the debug console to enable it on just a single ship of interest, but it's very helpful - it got a
lot of use writing the core AIs.
Probably the problem this time: consider what
Code: Select all
{
condition: this.conditionScannerContainsFriendlyPlayer,
configuration: ai.configurationAcquireScannedTarget,
behaviour: this.behaviourDestroyPlayerIfHostileToNavy,
reconsider: 5
}
will do if there is a non-fugitive player ship nearby which is not hostile to the navy: I'd recommend rewriting it as
Code: Select all
{
condition: this.conditionScannerContainsFriendlyButHostileToNavyPlayer,
configuration: ai.configurationAcquireScannedTarget,
behaviour: this.behaviourTakeHostileAction,
reconsider: 5
}
or alternatively wrapping the check up into
conditionScannerContainsHostileIntruder