Search found 2 matches

by gremmie
Tue Jun 02, 2015 9:20 pm
Forum: Ren'Py Questions and Announcements
Topic: Converting day numbers into days of the week
Replies: 6
Views: 3211

Re: Converting day numbers into days of the week

I can do this. I just did it. I know the thread is old but this is not a bad bit to know. This is main.rpy of DSE . if todays == "Sunday": call screen day_planner(["SunAM", "SunNoon", "SunAft", "SunEve"]) jump SunAM else: call screen day_planner([&qu...
by gremmie
Mon Jul 18, 2005 8:20 pm
Forum: Ren'Py Questions and Announcements
Topic: about if-else structures
Replies: 1
Views: 1219

about if-else structures

It seems that the if structure can only be used with jump statements. I had a hard time figuring this out because I figured you could do just any old thing in there. The only thing that clued me in was the example in Rio's tutorial, which only has jump statements in it. Could someone explain a littl...