5mithers

Member
Aug 3, 2019
412
442
206
i'm currently stuck on the slime quest because there aren't any slimes anywhere. i'm pretty sure they're supposed to spawn in the area with apples and sticks but there's nothing there at any time. i've gotten all the way through the main missions and have everything unlocked except the things that require me to kill the slimes.
Once you get the slime quest, you go through the 2 apple/stick areas you previously had access to to the actual pond, where the slimes are located. The intro to the correct area is scripted and will show you the slimes. They aren't hidden in plain sight or anything.

1750535231746.png
1750535254164.png
1750535275895.png
 
Last edited:

spininicolas

Member
Oct 29, 2022
163
112
166
pc, i lose that mini fishing game everytime and i can't give the fish to that cat women.
wtf It's really curious, it's difficult on Android, but on PC it's much easier. There was someone who had made a crack to give you all kinds of materials, but it stops working after the update, I think, so besides continuing to play, there's no other way to help you. The only thing I can tell you is to save before fishing and reload until you catch something so as not to make it so long.
 
Jul 16, 2024
157
284
149
pc, i lose that mini fishing game everytime and i can't give the fish to that cat women.
I assume you're pressing your spacebar instead of trying to click the mouse? There's something weird about how it behaves with the mouse (and it's inconsistent).

The other thing that may be an issue is in the graphics/loop. When you open the game, press ALT+G. Change the renderer to Force ANGLE2 (this also usually removes flickering if that's an issue). You can also set a fixed framerate (which will help with some input issues). (The ALT+G menu and the fixes I'm describing apply to other games too, though timed inputs are fairly uncommon in Ren'Py games.)

I found that when I forced ANGLE2, I can use the mouse (or spacebar), but when it kept defaulting to OpenGL2 (GL2) I had a myriad of input issues.
 

Kyle Randall

Member
Jul 30, 2021
156
218
144
i'm wondering when will the MC have the idea of using his super strengh to simply snap open those damn chains around the horned girl's neck. I mean... i don't consider myself the sharpest tool in the shed, but even i had this idea like a few seconds after meeting her? a minute, tops.
 

buttsman69

Member
Jan 5, 2019
334
489
227
I believe its mentioned that they're magic, super hard, indestructible or some similar handwavium thing. Or that it would hurt her to forcibly remove it, or both of those things.
 
  • Like
Reactions: Kyle Randall

TaoKirito

Legendary King
Donor
Jul 2, 2017
517
170
207
Hey guys can some one help me with the game I keep encountering on joiplay this kind of issues with renpy games i try to add the name of character in game at the beginning or try to put any cheats code every time i try to put it is crashing.. what do i need to do ?

Issue log

Code:
I'm sorry, but an uncaught exception occurred. 

While running game code: 
File "game/script.rpy", line 44, in <module> 
NameError: name 'softkey_not_visible' is not defined 

-- Full Traceback ------------------------------------------------------------ 

Full traceback: 
File "game/script.rpyc", line 44, in script 
File "renpy/ast.py", line 821, in execute 
File "renpy/python.py", line 1178, in py_exec_bytecode 
File "game/script.rpy", line 44, in <module> 
File "renpy/exports\statementexports.py", line 345, in call_screen 
File "renpy/ui.py", line 301, in interact 
File "renpy/display\core.py", line 2259, in interact 
File "renpy/display\core.py", line 3082, in interact_core 
File "renpy/display\core.py", line 1788, in event_wait 
NameError: name 'softkey_not_visible' is not defined
 
Jul 16, 2024
157
284
149
Hey guys can some one help me with the game I keep encountering on joiplay this kind of issues with renpy games i try to add the name of character in game at the beginning or try to put any cheats code every time i try to put it is crashing.. what do i need to do ?
It's an issue with the version of joiplay you're using. I believe that particular issue was patched back in January, so you may need to try an updated version.
 
  • Crown
Reactions: TaoKirito

Mrs.Nyx

Newbie
Sep 6, 2018
81
61
201
Can someone give a sync code please....i'm playing android and everytime i'm update the game the code is dead...
 

0123455

Newbie
May 16, 2024
34
39
94
pc, i lose that mini fishing game everytime and i can't give the fish to that cat women.
DISCLAIMER: I am not responsible for any broken saves/games from following the instructions below. Make backups, folks!

If you are on PC and you don't mind to invest a bit of time, you can use UnRen from here to activate developer mode and change the variables for fish manually (They are "item_fish_a" ... "item_fish_e" and "item_fish_s")
As an example, with developmer mode active hit "[Shift] + o" (like writing capital O) and you can enter "item_fish_a=10" to set the fish of quality a to the amount 10 in your inventory.

However, I did not check if that works with any fish related quests. The quest could count up on the event of you catching the fish, then this would not work and you would have to look for the counter for the quest.

LET ME MARRY ALICE PLEASE IM BGEGING YOU
This way you could create a variable "Fucknuts4000_is_married_to_alice" and set it to true. I don't think it would impact the game, but you would know it's there. :giggle:
 
Last edited:

5mithers

Member
Aug 3, 2019
412
442
206
No, the code looks for how many fish you have. No additional variables set.

As for opening the console, I guess you could goto the trouble of downloading UnRen. Or just edit a single file in the game directory.

<game_folder>/renpy/common/00console.rpy Goto line #108. Change the config.console value from False to True.

Code:
    # If true, the console is enabled despite config.developer being False.
    config.console = True
Save the file and open the game. You now have access to the console via shift+O.

*Edit: This is the same in nearly every RenPy game that uses the default boilerplate files. Which is like 99.8% of them.
 
  • Like
Reactions: 0123455

Zack keneth

Newbie
Jan 26, 2022
44
12
36
Bro what the hell who made the apk into a zip file what a dumbass

I had the 4.0 version and I literally just installed it via apk no such thing as extraction

And after getting the Zip 4.3 file I tried Installing it but guess what!?

There's nothing it's just files an files not even an Application

What the hell I'm i supposed to do to this apk zip file when it's just files after extraction
No application
 

0123455

Newbie
May 16, 2024
34
39
94
No, the code looks for how many fish you have. No additional variables set.

As for opening the console, I guess you could goto the trouble of downloading UnRen. Or just edit a single file in the game directory.

<game_folder>/renpy/common/00console.rpy Goto line #108. Change the config.console value from False to True.

Code:
    # If true, the console is enabled despite config.developer being False.
    config.console = True
Save the file and open the game. You now have access to the console via shift+O.

*Edit: This is the same in nearly every RenPy game that uses the default boilerplate files. Which is like 99.8% of them.
I did not know about it and it makes some things easier for me as well. Have my (y).
Also thanks for looking into how the quest handles its checks. It seems it works as easy as that.
 
4.40 star(s) 96 Votes