Search found 2 matches

by HazyDistress
Mon Nov 27, 2023 9:13 am
Forum: Ren'Py Questions and Announcements
Topic: Trouble creating a point and click game with a time system
Replies: 3
Views: 1255

Re: Trouble creating a point and click game with a time system

A label in Renpy script has to end with either a return or a jump statement, otherwise the game pointer will just move through that label to whatever comes next in the code. It's not like a function in Python where you don't have to define the end of the function with return (which I still like doi...
by HazyDistress
Fri Nov 24, 2023 2:19 pm
Forum: Ren'Py Questions and Announcements
Topic: Trouble creating a point and click game with a time system
Replies: 3
Views: 1255

Trouble creating a point and click game with a time system

I'm trying to set up a sandbox-ish point and click game in Ren'py. I've seen other games do similar things in Ren'py, so I think what I'm trying to do is possible. I have labels for different locations that change the scene when jumped to, and imagebuttons for things like doors that jump to them whe...