Search found 3 matches

by Danger_Lizard
Fri Feb 21, 2020 6:31 am
Forum: Ren'Py Questions and Announcements
Topic: Simple script for a day/night cycle, or rather a morning, noon, evening & night cycle
Replies: 21
Views: 13696

Re: Simple script for a day/night cycle, or rather a morning, noon, evening & night cycle

Hi, I am trying to build a calendar from this code, but I need to months and years as well as days and weeks. Would I simply add month and year to the init and then define them like below? init python: class day_time(object): def __init__(self): self.year = 1 # set to starting year self.month = 1 # ...
by Danger_Lizard
Sun Jan 12, 2020 7:53 am
Forum: Ren'Py Questions and Announcements
Topic: How can I make random events for specific locations and time of day?
Replies: 2
Views: 537

Re: How can I make random events for specific locations and time of day?

Thank you, Isobelle. I will work a bit with that code and see how it fares. :)
by Danger_Lizard
Fri Jan 10, 2020 4:55 pm
Forum: Ren'Py Questions and Announcements
Topic: How can I make random events for specific locations and time of day?
Replies: 2
Views: 537

How can I make random events for specific locations and time of day?

Hi, I am making a game with free-roam and map locations, and I would like to add random events at the different locations. These should activate as the player jumps to the location. I have been looking at the "Random Events" from Remix in the cookbook, but I am still a noob, and I cannot g...