Hello bro. I which file are this part of code? I need found to check the cheats. I cannot found in any file these code lines.
Hey, I did a find anything with sublime text on the game folder with the word "cheat".
I ran it again for this version, here is with the file names:
DOOMINATION-0.1.8-pc\game\scripts\label\sec_interaction_label.rpy:
188 jump latveria_castle_doom_studio
189
190: ################## CHEAT STUDIO #######################
191
192: label cheats_studio:
193
194: $ cheat = renpy.input("You can become a 6${a=
You must be registered to see the links
} supporter {/a}or above to have the cheats version.")
195
196: if cheat == "BLING!":
197 $ dgg_pt1 = True
198 $ dgg_pt2 = True
...
202 n"DOOMINATED NUDE VERSION UNLOCKED!"
203
204: elif cheat == "ATLAS":
205 $ inventory.earn_money(50000)
206 n"50000$ MONEY ADDED!"
207 else:
208: n"Invalid cheat code."
209
210 jump doom_studio_desk_menu
DOOMINATION-0.1.8-pc\game\scripts\menu\main_screen.rpy:
58
59 imagebutton:
60: idle "images/cheats/cheat_icon_idle.webp"
61: hover "images/cheats/cheat_icon_hover.webp"
62 xalign 0.02
63 yalign 0.56
64: action Jump("main_cheats")
65
66 imagebutton:
..
108 $ renpy.full_restart()
109
110: label main_cheats:
111 stop music fadeout 1
112 hide screen main_menu
113 window hide
114: show expression Movie(play="images/cheats/cheats_bg.webm", loops = -1)
115 with Dissolve(2)
116
117: $ cheat = renpy.input("You can become a 15${a=
You must be registered to see the links
} supporter {/a}or above to have the cheats version.")
118
119: if cheat == "FOOM":
120
121 show snap 1 with dissolve
...
197
198 else:
199: n"Invalid cheat code."
200 scene black with Dissolve(.7)
201 pause 1