So if you start on March 25, you would have something like:
Code: Select all
$ day_display = day + 24
$ month_display = March
if (day > 7):
$ month_display = "April"
$ day_display = day - 7
Code: Select all
$ day_display = day + 24
$ month_display = March
if (day > 7):
$ month_display = "April"
$ day_display = day - 7
The code is a bit outdated, e.g. instead ofHikari_Kaitou wrote: ↑Fri May 09, 2025 2:26 pm what I need to fix? Or is this just a matter of the code being too outdated
Code: Select all
init:
$ t = Character('Teacher')
$ gg = Character('Glasses Girl', color=(192, 255, 192, 255))
$ sg = Character('Sporty Girl', color=(255, 255, 192, 255))
$ bg = Character('Both Girls')
$ narrator = Character(' ')
Code: Select all
define t = Character('Teacher')
define gg = Character('Glasses Girl', color=(192, 255, 192, 255))
define sg = Character('Sporty Girl', color=(255, 255, 192, 255))
define bg = Character('Both Girls')