 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
Chronic Guest
|
Posted: Sat Aug 28, 2004 4:15 pm Post subject: SWG Crafting Clicker |
|
|
Hi all. Firstly I'd just like to say how much I love this program, very handy. Great Job to whoever made this tool!
As there doesn't seem to be any scripts relating to Star Wars Galaxies, I thought I'd post.
This script just needs the click positions modified to suit your resolution. Run it from windows, while having SWG in windowed mode (in a lesser resolution than that of your desktop)
| Code: |
WinActivate SwgClient
Loop:
{
MouseClick, left, 291, 211
MouseClick, left, 291, 211
MouseClick, left, 291, 211
MouseClick, left, 291, 211
MouseClick, left, 291, 211
MouseClick, left, 283, 341
MouseClick, left, 283, 341
MouseClick, left, 283, 341
MouseClick, left, 283, 341
MouseClick, left, 293, 270
MouseClick, left, 293, 270
Sleep, 5000
goto loop
}
^!x::ExitApp
|
ctrl-alt-x breaks the loop.
I hope this is of some use to someone. Should definately help prevent RSI while grinding crafting professions in SWG.
Thanks again guys! |
|
| Back to top |
|
 |
WhiteCloud
Joined: 19 Jun 2004 Posts: 68
|
Posted: Sat Aug 28, 2004 8:25 pm Post subject: |
|
|
I made a few changes.
You could add some short code to re-start the loop again without restarting the whole script. Or you could have it pause and resume in mid-loop with a little more coding.
Yes, it's really a great program.
| Code: | WinActivate SwgClient
Loop
{
MouseClick, left, 291, 211
MouseClick, left, 291, 211
MouseClick, left, 291, 211
MouseClick, left, 291, 211
MouseClick, left, 291, 211
MouseClick, left, 283, 341
MouseClick, left, 283, 341
MouseClick, left, 283, 341
MouseClick, left, 283, 341
MouseClick, left, 293, 270
MouseClick, left, 293, 270
If StopGrinding = 1
{
StopGrinding = 0
Break
}
Sleep, 5000
}
^!x::StopGrinding = 1 |
_________________ AHK = Hella fun |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|