CREATE and FUCK your own AI GIRLFRIEND TRY FOR FREE
x

Typ1987

Newbie
Apr 22, 2019
28
13
I'm stuck with "Runes and Godesses" Quest after building the second room. I should spend time with Ryoko, but nothing happens (morning, Bath evening). Any advice how to proceed?

Thanks in advance!

Edit: Nvm found the hint section who told me i should go to the backyard.
 
  • Like
Reactions: fafa123554

Harem4life

Member
Jul 21, 2023
454
1,296
Could someone please summarise everything we know about Mirai so far?

All In know is she's MC mother and she used to live in the same village where MC is right now
 

werejo

New Member
Sep 4, 2018
7
36
Building Charlotte's room gives an error and ignoring it just leads to dialogue.
```
I'm sorry, but an uncaught exception occurred.
While running game code:
File "renpy/common/000statements.rpy", line 671, in execute_call_screen
File "renpy/common/00action_control.rpy", line 131, in __call__
Exception: Screen cons_2nd_room is not known.
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "game/mayu_events.rpyc", line 823, in script
File "renpy/ast.py", line 1971, in execute
File "renpy/ast.py", line 1953, in call
File "renpy/statements.py", line 349, in call
File "renpy/common/000statements.rpy", line 671, in execute_call_screen
File "renpy/exports.py", line 3420, in call_screen
File "renpy/ui.py", line 301, in interact
File "renpy/display\core.py", line 2212, in interact
File "renpy/display\core.py", line 3254, in interact_core
File "renpy/display\layout.py", line 1202, in event
File "renpy/display\layout.py", line 1202, in event
File "renpy/display\layout.py", line 1202, in event
File "renpy/display\screen.py", line 793, in event
File "renpy/display\layout.py", line 1202, in event
File "renpy/display\transform.py", line 984, in event
File "renpy/display\layout.py", line 1430, in event
File "renpy/display\layout.py", line 288, in event
File "renpy/display\layout.py", line 1202, in event
File "renpy/display\behavior.py", line 1174, in event
File "renpy/display\behavior.py", line 1095, in handle_click
File "renpy/display\behavior.py", line 388, in run
File "renpy/display\behavior.py", line 395, in run
File "renpy/common/00action_control.rpy", line 131, in __call__
File "renpy/display\screen.py", line 1322, in show_screen
Exception: Screen cons_2nd_room is not known.

Anyway to fix this.? It happen when I go to mayu. To build the second room.
```
When I presss ignore it take my gold/wood but the room still in ruins
Since the newest 0.3.9 version seems to update Mayu's shop, the new interface is probably what's breaking the purchase of room 2. Super annoying, since you need to buy it to progress the main story.

While I'm sure the dev will have a hotfix out soon(ish), for those like me who can't wait that long, the public version on Itch.io is still v0.3.8. If you drop a save before entering the shop and open it in the older version, you can buy the new room, save again, and reload the save in 0.3.9. Seems to work; I've had no issues so far.
Confirm this works for the 2nd room bug.
Download the Itch.io version, put it in a separate folder.
Play on it only to buy the room, immediately save when you're back in freeroam.
Close and play new version.

Found what seems to be the issue, just drop this mayu_events.rpy file into the /game folder and it should work again.

If you don't trust this file and want to do it yourself:
- decompile mayu_events.rpyc
- change line 616: Show("cons_2nd_room") to Jump("cons_2nd_room")
- save new file as mayu_events.rpy
- place new file into /game folder
 

Rindarion

Member
Apr 26, 2019
263
428
the game tells me to fix the gate and talk with Yui in the morning, but i have no clue how to do it.
 

Fatalfury10

Active Member
Dec 15, 2020
602
497
Could someone please summarise everything we know about Mirai so far?

All In know is she's MC mother and she used to live in the same village where MC is right now
She may also be a goddess or at least a former goddess considering Ryo's power is divine in nature. That and in one scene we see Mirai telling him to use her power.
 
  • Like
Reactions: Pervy Hermit

Harem4life

Member
Jul 21, 2023
454
1,296
She may also be a goddess or at least a former goddess considering Ryo's power is divine in nature. That and in one scene we see Mirai telling him to use her power.
Thanks. Your other comment cleared a lot of things for me. I figured it out that she was a goddess or someone connected to the goddesses like how MC is.

So, where is she now? She's clearly alive since she talks to MC from time to time to guide him or to motivate him.

Is there anyone who knows MC is Mirai's son? Did he tell anybody yet?

 

5mithers

Member
Aug 3, 2019
162
144
Thanks. Your other comment cleared a lot of things for me. I figured it out that she was a goddess or someone connected to the goddesses like how MC is.

So, where is she now? She's clearly alive since she talks to MC from time to time to guide him or to motivate him.

Is there anyone who knows MC is Mirai's son? Did he tell anybody yet?

You don't have permission to view the spoiler content. Log in or register now.
 

PromiseUnfamil

New Member
Aug 27, 2024
1
0
Found what seems to be the issue, just drop this mayu_events.rpy file into the /game folder and it should work again.

If you don't trust this file and want to do it yourself:
- decompile mayu_events.rpyc
- change line 616: Show("cons_2nd_room") to Jump("cons_2nd_room")
- save new file as mayu_events.rpy
- place new file into /game folder
Thank you very much, this problem has troubled me for a long time, and finally solved it
 

Peri3481

Member
Aug 23, 2023
180
263
Still trying to figure out the fishing. I get that

You need the fish variable + the class fish variable
which equals a fish of a certain class.
fish = 3
fishede.item = 2
fishedd.item = 1
would give three fish total, 2 class e and 1 class d.
+= is add number to existing number = is assign number
when talking about integers.


and

fish += 5
+
fishede.item +=5 for 5 E rank fish
or
fishedd.item += 5 for 5 D rank fish
or
fishedc.item += 5 for 5 C rank fish


But where do I enter this stuff? Thanks!
 

5mithers

Member
Aug 3, 2019
162
144
Still trying to figure out the fishing. I get that

You need the fish variable + the class fish variable
which equals a fish of a certain class.
fish = 3
fishede.item = 2
fishedd.item = 1
would give three fish total, 2 class e and 1 class d.
+= is add number to existing number = is assign number
when talking about integers.


and

fish += 5
+
fishede.item +=5 for 5 E rank fish
or
fishedd.item += 5 for 5 D rank fish
or
fishedc.item += 5 for 5 C rank fish


But where do I enter this stuff? Thanks!
Fishing was one of those things I only did long enough to clear the quests requiring fish. So I don't really know that I've ever cared about fishing too much. But that being said:

That all just looks like variable assignment that you would do in the console in game.

I.e.
- Enable the console in the 00console.rpy file.
- In game, hit shift+O.
- Then enter your variables as desired.
 
4.40 star(s) 70 Votes