Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » how to make a countdown project?
- _kethan_110511_
-
95 posts
how to make a countdown project?
so, theres this one Steam game called 98xx that releases on May 31, and to add some hype, I want to make a countdown project to may 31st, but I'm having some trouble. can you help?
p.s. I've tried using engines, but they don't really help
p.s. I've tried using engines, but they don't really help
Last edited by _kethan_110511_ (May 14, 2024 23:24:32)
- LULU_the_GREAT
-
3 posts
how to make a countdown project?
Here are like the basics of one with the time stamp you wanted.
when green flag clicked
forever
if <(current [year v]) = [2024]> then
if <(current [month v]) = [5]> then
if <(current [date v]) = [31]> then
put something cool here :) (for example like confetti or a fun sound something like that)
end
end
end
end
- qwertycodechamp90411
-
100+ posts
how to make a countdown project?
Use the days since 2000 block
Time to 31/5/24 is 8917 - (days since 2000)
Time to 31/5/24 is 8917 - (days since 2000)
- youormeletsbringit
-
69 posts
how to make a countdown project?
forever
set [Days Left v] to (round ((8918) - (days since 2000)))
end
- Discussion Forums
- » Help with Scripts
-
» how to make a countdown project?