Skinmeister wrote: To do
Figure out a way to remove the block on Terran stations being shown at shipyards before the Aldrin plot is completed, so I can retire the MD workaround currently in place to make things a bit cleaner.
Code: Select all
<?xml version="1.0" encoding="ISO-8859-1" ?>
<?xml-stylesheet href="director.xsl" type="text/xsl" ?>
<director name="Terra Nova" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="director.xsd">
<cues>
<cue name="TN">
<condition>
<check_value value="{value@L2M011 Finished}" exact="1"/>
<condition>
<action>
<do_all>
<find_station race="terran" typename="SS_FAC_TR_SHIP">
<sector x="12" y="3"/>
<jumps max="0"/>
</find_station>
<add_products>
<ware typename="SS_FAC_TR_ORE_PL" exact="1"/>
<ware typename="SS_FAC_TR_ORE_PL_1" exact="1"/>
<ware typename="SS_FAC_TR_SIL_PL" exact="1"/>
<ware typename="SS_FAC_TR_SIL_PL_1" exact="1"/>
</add_products>
<cancel_cue cue="TN"/>
</do_all>
</action>
</cue>
</cues>
</director>