
As Thargoid Wars will only launch you if you are docked at the MAIN station, the multi-paged (22 odd!) text adventure will not clash, at least with this OXP.
Moderators: winston, another_commander
That's not correct, as our lead programmer told us two pages ago:LittleBear wrote:In any event A for Assassins script trumps all others by virtute of alpahetical order, so even if you set your mission in such a way that it could give a briefing at the Rebel Outpost, it still would be shown after the player had solved the text adventure as Oolite would have to read the Assassins's script before it looked at another OXP. As long as the name for the OXP you add is alphabeticly after Assassins, there should be no conflict.
Ahruman wrote:There are no guarantees regarding the order of script execution.Commander McLane wrote:@ Ahruman: One more question: Are the scripts executed in alphabetical order?
OK, you are right. The dungeon-like part of the assassin script doesn't run the risk of multiple offerings as it is not played at the main station. But I took this part just as an example of an multiple screen message. In my opinion you must always be aware that there could exist badly written scripts that only check for just being docked rather than docked at the main station. Therefor just make the check for status_screen at the first offering condition to be sure.The text adventure will only be displayed if you are docked at the "Rebel Outpost". This station will not exist unless you are doing this mission,
I have tested this script with tree pilots on board and is works well if none of the texts is very long. The first pilot opens the empty missionscreen and puts his test at the top. Every following pilot adds an empty line (or other separator as defined in your missiontext.plis) and then his own text. Scripting this way allows for several special pilots to be present if someone wants to write a very special mission.<array>
<dict>
<key>conditions</key>
<array>
<string>gui_screen_string equal GUI_SCREEN_MISSION</string>
</array>
<key>do</key>
<array>
<string>addMissionText: empty_line</string>
</array>
<key>else</key>
<array>
<string>setMissionImage: none</string>
<string>setGuiToMissionScreen</string>
</array>
</dict>
<string>addMissionText: your_texts</string>
</array>
I put it for direct reading on a wiki page now: Mission OfferingCmdr McLane wrote:Downloaded it, but I was looking for the compilation of your information. Because it's handier to have it on one wiki-page than throughout one or even a couple of threads here.