Didn't I help you answer the first part of this question, though i can find where in the Forum it went??? It disappeared.
Anyway, If you want to make the timer only click after ## of minutes. You have to do this.
Set your timer to 60,000. So it will now only click on every minute. Then your going to need to see how many minutes have passed.
In the general declarations section of your code. Add the following Line
[tt]
Public lgMin as Long
[/tt]
Then in the code for the Timer add this.
lgMin = lgMin + 1
If lgMin = 5 Then 'Assuming you want to wait 5 minutes
lgMin = 0 'reset this for the next pass
'This is where your Send Keys stuff should be
End If
[/tt]
That should do it. Email me If you need more help. BTW what game was it you played i was going to go out and pick up a new game this weekend, I could do a search for you on Kali if I have your playername.
Craig, mailto:sander@cogeco.ca
"Procrastination is the art of keeping up with yesterday."
I hope my post was helpful!!!