I don't understand which 'factor' are you talking about.
Timer() is a function that returns the amount of seconds since the program started execution, so in order to achieve a some-minute interval you must:
1. save the initial Timer() value in a double variable
2.check at intervals the value returned by Timer()
The desired interval has expired when (initial-value - Timer()) gives a result greater than some-minute * 60.
Roberto