Re: Feudal Systems
Posted: Wed Aug 23, 2023 7:01 pm
I'm running out of ideas!
The first part of the FS code when landing on the mission target planet is :
if ((missionVariables.feudal_mission == "DELIVERY_RUNNING" && system.ID == [missionVariables.feudal_mission_location_no])) {
mission.runScreen({
messageKey: "feudal_mission_deliverysuccess"
});
So it just checks that the mission is running i.e. "DELIVERY_RUNNING" and that the system you are currently in is correct. If those are true the welcome message should appear as soon as you land on the planet - you don't need to press F8 or any other key.
Your save file has DELIVERY_RUNNING and planet number 41 (which would be Dirateri on star chart 7 {galaxy no 6}). Are you sure you are in the Dirateri system?
Your save file also gives mission location name as Reoran but this is not tested for by the script so shouldn't matter
The .GNUstepDefaults file gives the save directory i.e. "save-directory" = "C:\\Oolite/oolite.app/oolite-saves"; are you sure it is pointing to the right location?
The first part of the FS code when landing on the mission target planet is :
if ((missionVariables.feudal_mission == "DELIVERY_RUNNING" && system.ID == [missionVariables.feudal_mission_location_no])) {
mission.runScreen({
messageKey: "feudal_mission_deliverysuccess"
});
So it just checks that the mission is running i.e. "DELIVERY_RUNNING" and that the system you are currently in is correct. If those are true the welcome message should appear as soon as you land on the planet - you don't need to press F8 or any other key.
Your save file has DELIVERY_RUNNING and planet number 41 (which would be Dirateri on star chart 7 {galaxy no 6}). Are you sure you are in the Dirateri system?
Your save file also gives mission location name as Reoran but this is not tested for by the script so shouldn't matter
The .GNUstepDefaults file gives the save directory i.e. "save-directory" = "C:\\Oolite/oolite.app/oolite-saves"; are you sure it is pointing to the right location?