Jump to content

Looking for an easier macro


Psychotic_god

Recommended Posts

I have a macro right now but its linear, I record a set of commands, but its not very versatile.

 

 

Where can I find a macro that will allow me to make it press 1 every X amount of seconds, 2 every other X amount of seconds, etc.

 

 

 

 

 

Thnx for help >.o

Share this post


Link to post
Share on other sites

Download AC Tool. This is an example:

 

While 1 = 1 // infinite loop

Keys ^1 // press 1

delay 1000 // every 1 seconds

Keys ^2 // press 2

delay 2000 // every 2 seconds

End

 

You just press start, and it will do it continuously until you stop... or remove the "While 1 = 1 // infinite loop" and you can set the number of times to run right above the Start button on the bottom right.

 

 

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...