I am trying to keep a 1-10 count and if the count goes over 10 it starts back at 1
Tick := 5;
currentTick := 8;
Now FinalTick
is going to be CurrentTick + Tick but once the value is 10 it should stat over at 1 thus in this case
5 + 8 = 3
How do I do this?