Search found 3 matches

by Zenadillo
Fri Oct 16, 2020 1:07 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How to trigger an event when player enters a screen?
Replies: 8
Views: 1145

Re: How to trigger an event when player enters a screen?

define first_time_toHallway = True screen Room2(): imagemap: ground "Room2.png" hotspot (1187, 25, 456, 458) action Jump ("toHallway") label toHallway: if first_time_toHallway: e "Dialogue first_time_toHallway = False <------this should be python else: # something else? Pla...
by Zenadillo
Fri Oct 16, 2020 3:12 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How to trigger an event when player enters a screen?
Replies: 8
Views: 1145

Re: How to trigger an event when player enters a screen?

I haven't used imagemaps at all, but it seems like this should work? define first_time_toHallway = True screen Room2(): imagemap: ground "Room2.png" hotspot (1187, 25, 456, 458) action Jump ("toHallway") label toHallway: if first_time_toHallway: e "Dialogue first_time_toHal...
by Zenadillo
Thu Oct 15, 2020 3:34 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How to trigger an event when player enters a screen?
Replies: 8
Views: 1145

[Solved] How to trigger an event when player enters a screen?

Hi, I'd just like to say that I'm very new to Ren'Py and the only way I've been able to learn has really been from select YouTube tutorials. I've been trying to use other resources but atm they feel a bit too advanced for me. I'm currently in a prototype stage of just trying to make a very basic poi...