Cheat Mod Ren'Py Completed A Town Uncovered [v0.34a] [Geeseki] Cheat Enabler V2

May 13, 2018
473
546
Anybody know what the game-within-the-game solution is? I'm talking about the "don't come inside" game.

Tried everything I could think of, got nada.
 

BupoTiling03-Retired

Well-Known Member
Modder
Jul 21, 2018
1,257
1,702
Anybody know what the game-within-the-game solution is? I'm talking about the "don't come inside" game.

Tried everything I could think of, got nada.
I dug through code a long while back for someone asking the same question. It's a dead-end just to have some space-filler in the game, don't waste your time. (Always fails.)

You guys know you can just enable console and dump 'secret_code' to get the cheat. No need to go through this mod stuff. >_>; I posted it in main thread. 0.31a is carrymaria.
 

rayminator

Engaged Member
Respected User
Sep 26, 2018
3,040
3,115
I dug through code a long while back for someone asking the same question. It's a dead-end just to have some space-filler in the game, don't waste your time. (Always fails.)

You guys know you can just enable console and dump 'secret_code' to get the cheat. No need to go through this mod stuff. >_>; I posted it in main thread. 0.31a is carrymaria.
this makes it easier for the people doesn't know how to use the console
 

Grimtown

Engaged Member
Donor
Game Developer
May 23, 2020
2,386
4,312
Did you mean to upload screenshots #3 & #5? They are the same as #2 & #4, but with the "screenshot saved" overlay.
 

rayminator

Engaged Member
Respected User
Sep 26, 2018
3,040
3,115
Did you mean to upload screenshots #3 & #5? They are the same as #2 & #4, but with the "screenshot saved" overlay.
you notice the difference in the image one without the up/down arrows



upload the wrong image but you notice extra button no skill limit
 

Grimtown

Engaged Member
Donor
Game Developer
May 23, 2020
2,386
4,312
you notice the difference in the image one without the up/down arrows



upload the wrong image but you notice extra button no skill limit
My bad, sorry.
Note to self: Read first, then don't write a useless comment later.
:FacePalm:
 

Noneless

Active Member
Jul 27, 2017
741
592
Im asking just out of curiosity since it had been long ago the last time I played this game, so sorry for that but:
Why is this mod needed? I remember the base game came with a mod menu on his own, unless the dev removed it in the latest updates but then why they still post a cheat code in the main page?

Im just traying to catch up with everything so I can understand this mdo better.
 

libertypics

Active Member
Jan 23, 2019
695
1,475
Edit: This still works for version 0. 34a
And by your recent post on the main game forum, .35b too.

So if I understand it, this just does the same thing as entering the cheat code. If I already have the code for a version I don't need to use this but, if I can't or don't want to find it use this.
 

rayminator

Engaged Member
Respected User
Sep 26, 2018
3,040
3,115
Im asking just out of curiosity since it had been long ago the last time I played this game, so sorry for that but:
Why is this mod needed? I remember the base game came with a mod menu on his own, unless the dev removed it in the latest updates but then why they still post a cheat code in the main page?

Im just traying to catch up with everything so I can understand this mdo better.
all this does is to enable the cheats without entering any pass code the dev hasn't removed anything

And by your recent post on the main game forum, .35b too.

So if I understand it, this just does the same thing as entering the cheat code. If I already have the code for a version I don't need to use this but, if I can't or don't want to find it use this.
this has two textbutton that has only variables

Python:
screen cheat:

    if mod_button_show:
        if not renpy.loadable("cheatmod.rpy"):
            hbox:
                xalign 1.0 ypos 0.01
                vbox:
                    if mod_show == False:
                        textbutton _("CHEATS OFF"):
                            text_size 22
                            text_style "ds_mod_style_red"
                            action [SetVariable("mod_show", True), SetVariable("cheat_on", 1)]
                    else:
                        textbutton _("CHEATS ON"):
                            text_size 22
                            text_style "ds_mod_style"
                            if mod_show == True:
                                action [SetVariable("mod_show", False), SetVariable("cheat_on", 0)]
 
  • Like
Reactions: libertypics