Mad Skull

New Member
Aug 4, 2020
12
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
12
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
12
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:

Mad Skull

New Member
Aug 4, 2020
12
18
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);
Thanks, time to swim in code to find which variable is
 
Apr 22, 2022
78
20
Why are there horny preggos in this forum asking how to give birth? Second time this is asked.
because we haven't gotten to the content that is tagged in the game, dingleberry. Just food for thought, if you are annoyed by helping others then you have the freedom to ignore it and be happy not wasting your own time. No one is obligated; it's just being nice is all. Honestly, I don't understand people that offer help but turn around and get mad at the next person that asks for help. You're deliberately pissing yourself off, but hey I'm just a dude that asked and received so who am I to state that which I am not.
 
Last edited:
  • Like
Reactions: Anon_357
3.90 star(s) 33 Votes