i need help with day and night cycle

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the community!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

ustu3737

Member
Aug 8, 2025
1
0
1
my script looks like this rn

Code:
every 180 seconds:
    make console execute command "/time set night"
every 300 seconds:
    make console execute command "/time set day"

i need help with makeing it so day is everytime 3 minutes and night is everytime 5 minutes after every day. i like need help to make the seccond command execute after every 3 min and the first command to be executed after every 5 min
 
you do realize these do override one another?

CSS:
every 480 seconds:
    execute console command "/time set day"
    wait 180 seconds
    execute console command "/time set night"