This should be simple but it has me stuck.
I have a score and I want the player to lose 10 points every second.
My code looks like this
starter timeing()
(
While (1)
(
Score_value -= int (sys_seconds);
Wait (1);
)
)
I know this is incorrect because every frame it subtracts whatever number of seconds is on the clock. Any help would be appriciated I'm sure it is something simple thx in advance.