AutoHotkey Community

It is currently May 27th, 2012, 12:12 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: SWG Crafting Clicker
PostPosted: August 28th, 2004, 4:15 pm 
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. :D

Thanks again guys!


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 28th, 2004, 8:25 pm 
Offline

Joined: June 19th, 2004, 9:02 pm
Posts: 68
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


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: fincs and 10 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group