Witch Bank [WIP]

Discussion and information relevant to creating special missions, new ships, skins etc.

Moderators: winston, another_commander

User avatar
Cholmondely
Archivist
Archivist
Posts: 6015
Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:

Re: Witch Bank [WIP]

Post by Cholmondely »

Wildeblood wrote: Tue May 20, 2025 4:53 pm
It works 'ere. I don't think this is a MacSemiColon issue, I think it's an actual change in behaviour from Oolite 1.90 to 1.91, or a difference in the way text-entry works between the Mac and Windows versions.

Try this please. Open the script.js, scroll until you find:-

/* ====================================================================================
SHOW BANKING SCREEN
======================================================================================= */

- which is the third heading down. Then scroll until you see this part (it should be near the bottom of your screen when the heading above is near the top of screen):-

Code: Select all

    var parameters = {
        screenID: "BANKING_SCREEN",
        allowInterrupt: true,
        exitScreen: "GUI_SCREEN_INTERFACES",
        background: { name: "witch_bank_background.png", height: 480 },
        title: "Witch Bank",
        message: message,
        choices: optionsMenu
    };
Change the allowInterrupt parameter from true to false:

Code: Select all

    var parameters = {
        screenID: "BANKING_SCREEN",
        allowInterrupt: false,                           // <--------- This one.
        exitScreen: "GUI_SCREEN_INTERFACES",
        background: { name: "witch_bank_background.png", height: 480 },
        title: "Witch Bank",
        message: message,
        choices: optionsMenu
    };
My giddy aunt! It actually works!!
Comments wanted:
Missing OXPs? What do you think is missing?
Lore: The economics of ship building How many built for Aronar?
Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
Post Reply