Simple crew skill bot by barthen
You need Autoit3 to run this script AutoIt Downloads - AutoItScript
It tries to automate your harvesting skills
What it does
- Click to open the skills window
- Choose a skill
- Choose a mission
- Click the "Send Companion" button
- Press ESC to close all windows
- Wait for 3 minutes and start again
What YOU MUST to do to use it
- You need to change the coordinates of the mouse clicks (depending on your resolution and the skill you want to click)
- You can do it with the Autoit Window Info program that comes with Autoit3 (don't ask me how to use it, google it)
Code:
; Simple SWTOR crew skill bot by barthen
; This works for my resolution (1024x768)
; You WILL have to change the coordinates for different resolutions
; You MAY have to run the script as Administrator
While True
If WinActive("Star Wars: The Old Republic", "" ) Then
; Open Skills Window
RandomDelay(2000,1000)
MouseClick("left",49,709)
; Choose skill
RandomDelay(2000,1000)
MouseClick("left",35, 256)
; Choose first mission
RandomDelay(2000,1000)
MouseClick("left",810, 242)
; Send companion
RandomDelay(2000,1000)
MouseClick("left",920, 589)
; Send ESC to close all windows
RandomDelay(2000,1000)
Send("{ESC}")
Sleep("185000")
Else
WinActivate("Star Wars: The Old Republic", "")
EndIf
WEnd
Func RandomDelay($base,$range)
Sleep($base + Random (1,$Range,1))
EndFunc