Page 2 of 2

Re: Witch Bank [WIP]

Posted: Tue May 20, 2025 9:44 pm
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!!