How do hide and reveal options depending on certain days?

If you are requesting technical assistance with Twine, please specify:
Twine Version: 2.4
Story Format: Sugarcube

I have a days cycle created, but I would like to show certain passages depending on the days.

E.g. Day 1 = show passages a, b and c
Day 3 = show passages b and hide a and c
Day 7 show passage a

Thanks

You might want to use include, which shows a passage inside another passage.

I do not know what your variables and passage names are, but for example…

<<if $day eq "one">><<include "passage_a">> <<include "passage_b">> <<include "passage_c">> 
 <<elseif $day eq "two">><<"include passage_b">>
 <<elseif $day eq "seven">><<"include passage_a">>
<<endif>>

You can do something similar with links of course.