Search found 5 matches

by sluggybunny
Sat May 01, 2021 3:22 pm
Forum: Ren'Py Questions and Announcements
Topic: functions inside screen's textbuttons
Replies: 3
Views: 520

Re: functions inside screen's textbuttons

I did but I'm not sure if I'm really understanding how to put it together?
by sluggybunny
Sat May 01, 2021 2:11 am
Forum: Ren'Py Questions and Announcements
Topic: functions inside screen's textbuttons
Replies: 3
Views: 520

functions inside screen's textbuttons

Hello I'm back at it with another question. I'm trying to make a screen that shows a menu of listed locations. Clicking on one should jump them to the proper label AND call my advancetime function. Like this class place(object): def __init__(self, label, time, name, isactive): self.label = label sel...
by sluggybunny
Fri Apr 30, 2021 4:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Hours progresssing days help
Replies: 4
Views: 813

Re: Hours progresssing days help [solved]

The datetime module seems really useful and exactly what I'd like, but I can't figure out how to create a function to advance time with it? @__@ I've tried several different things... I'd just like to create a function so that i can progress time like $advance(30) so it will progress time by 30 seco...
by sluggybunny
Mon Apr 19, 2021 6:21 pm
Forum: Ren'Py Questions and Announcements
Topic: Hours progresssing days help
Replies: 4
Views: 813

Re: Hours progresssing days help

Thank you for your reply! This works exactly (And better then what I had) how I needed it to :) And I will attempt to use this example to expand on it too, since I would like the days to progress into months, and months to have their own range of days (I managed to get the months in... XD it's a jou...
by sluggybunny
Sun Apr 18, 2021 11:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Hours progresssing days help
Replies: 4
Views: 813

Hours progresssing days help

Hello. I'm having a little issue with trying to create a day and time system for my game. I have tried a lot of code, lots of googling, and I'm practicing and reading alot of python resources... but this is stumping me so hard @_@ I essentially want a clock system with hours and minutes, and when th...