AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

SWG Crafting Clicker

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
Chronic
Guest





PostPosted: Sat Aug 28, 2004 4:15 pm    Post subject: SWG Crafting Clicker Reply with quote

Hi all. Firstly I'd just like to say how much I love this program, very handy. Great Job to whoever made this tool! Smile

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. Very Happy

Thanks again guys!
Back to top
WhiteCloud



Joined: 19 Jun 2004
Posts: 68

PostPosted: Sat Aug 28, 2004 8:25 pm    Post subject: Reply with quote

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
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group