It wont matter how many times you use timer(), this is a set value that changes every milliseconds (wow does that make sense)
What I mean is, Timer() is 0 when you first start the computer, as the computer runs, timer increments. No matter what command you use in DB or DBPro timer will always state how long the computer has been running for with every 1000 units equaling 1 second.
When you use the command Randomize Timer(), you are not randomizing the timer but rather your are given a seed to the randomize command.
The way the command Randomize work is you give it a seed and that seed has a set of values, for example seed 1 may produce the numbers
1, 3, 7, 11, 2....
As timer() will be different EVERY loop, by using timer() as a seed, the value will ALWAYS be different.
So, to answer your question, all you need to do is create another variable:
Timer1 = timer() + 1000 - will give a timer of 1seconds, whilst
Timer2 = timer() + 2000 - will give a timer of 2seconds at the same time.
Hope this helps!
James
Hello!