Mad Skull

New Member
Aug 4, 2020
11
18
Now that we are messing with the game's code, there is a way to turn off the "surrender" option each 3 times she got creampied? is annoying like heck
 

Mad Skull

New Member
Aug 4, 2020
11
18
You mean the gameover from getting creampied?
I dont know if its the same, but is when you get creampied 3 consecutive times the game shows the option of surrender, so when you are "farming" seeds is annoying to press "NO" each 3 dang times, also it pause the game and turn off the fast speed.
 
  • Like
Reactions: Nightfuryix

malwarehunter

New Member
Jul 22, 2018
8
10
I dont know if its the same, but is when you get creampied 3 consecutive times the game shows the option of surrender, so when you are "farming" seeds is annoying to press "NO" each 3 dang times, also it pause the game and turn off the fast speed.
You can take a look at the list of all $gameEvents in my previous post. Maybe you can find a variable that's causing this.
Here is a possibility to skip the popup as soon as it comes up at least.
It's basically a continuous check if there is a popup, if yes then we clear it and click "Enter" to remove it from the screen.
Apparently you can also push custom messages anytime you want doing this:
You don't have permission to view the spoiler content. Log in or register now.

JavaScript:
setInterval(function() {
    if($gameMessage.hasText() && $gameMessage._texts[0].indexOf("Do you want to give up?")!=-1) {
        // Clear the message = unfreeze the game, but popup message stays on the screen
        $gameMessage.clear();

        // Click enter to confirm the message popup if it appeared on the screen
        document.dispatchEvent(new KeyboardEvent('keydown', {
            key: 'Enter',
            code: 'Enter',
            keyCode: 13, // Enter key corresponds to keyCode 13
            which: 13,   // 'which' property is similar to keyCode
            bubbles: true, // Allows the event to bubble up through the DOM
            cancelable: true // Allows event to be canceled
        }));
        console.log("REMOVED POPUP MESSAGE!");
    }
}, 1);
 
Last edited:
3.90 star(s) 33 Votes