Ren'Py Summer like a Dream [v0.12b] [Puydev]

3.00 star(s) 3 Votes

only MILF

Forum Fanatic
Dec 30, 2020
5,969
7,039
697
1744141099052.png ..... 1744141138686.png ....I've been clicking the mouse for an hour now, but nothing happens. :( Where is the mistake?
 

Skip70

Newbie
Aug 8, 2020
26
6
136
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/events.rpy", line 516, in script
    p "Hi, Hannah."
Exception: Sayer 'p' is not defined.

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

Full traceback:
  File "game/events.rpy", line 516, in script
    p "Hi, Hannah."
  File "E:\S-games\summerlikeadream-0.2b-pc\renpy\ast.py", line 2586, in execute
    Say.execute(self)
  File "E:\S-games\summerlikeadream-0.2b-pc\renpy\ast.py", line 583, in execute
    who = eval_who(self.who, self.who_fast)
  File "E:\S-games\summerlikeadream-0.2b-pc\renpy\ast.py", line 472, in eval_who
    raise Exception("Sayer '%s' is not defined." % who)
Exception: Sayer 'p' is not defined.

Windows-10-10.0.19045 AMD64
Ren'Py 8.3.7.25031702
summer like a dream 0.2b
Sun Apr 27 16:44:27 2025
I get this error when I want to use the yoga book on day 2
 

Radical_Dreamer

Active Member
Donor
Aug 26, 2018
641
1,180
328
I also get an error when trying to use the yoga book.

I try pressing Ignore to force my way through it, and it works up until I guess Hannah thinks I say no and it doesn't work.
 

malaac2025

Well-Known Member
Mar 17, 2024
1,302
1,093
249
I also get an error when trying to use the yoga book.

I try pressing Ignore to force my way through it, and it works up until I guess Hannah thinks I say no and it doesn't work.
Same issue defintely bugged.

I fixed the bug there was a couple of issues with events.rpy

the variable for player is not p it is pov so fixed that. The loop for reject went straight back to the loop so event did not properly end and get the value set. What I did first is if your asking to do Yoga with her I treated it as a compliment so +5 relationship for Hannah and forwarded time and jumped it back to livingroom.

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

Now technically the loop was correct but it's better format is to use NOT instead of ==.

label workouttogether:
if relationship_hannah < 20:
jump workout_rejected
elif not workouttogether1:
jump hannahworkouttogether1
else:
jump workouttogether2

I have uploaded the fixed events.rpy so you can play past the bug. I also found a mispelled variable for unlocking the Lila bathroom scene in gallery so fixed that as well.
 
Last edited:
3.00 star(s) 3 Votes