Hey!
I currently need a system for a custom ingame time.
1 real hour -> 15 minutes ingame
Alrady tried something but thats not that efficient ig:
every 1 minute:
add 4 to {min::server}
if {min::server} is higher or equal to 60:
set {min::server} to 0
add 1 to {hour::server}
if {hour::server} is equal to 24:
set {hour::server} to 0
If I now check the current time, it obviously says something like "0:0"
Any1 got a better idea how to do this system or is there a way to fix my "0:0" problem?