Register for your free account! | Forgot your password?

You last visited: Today at 04:52

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Simple crew skill autoit bot

Discussion on Simple crew skill autoit bot within the SWTOR Hacks, Bots, Cheats & Exploits forum part of the Star Wars: The Old Republic category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Nov 2011
Posts: 44
Received Thanks: 90
Simple crew skill autoit bot

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
GerorgeG is offline  
Thanks
3 Users
Old 01/05/2012, 01:57   #2
 
elite*gold: 0
Join Date: Jan 2008
Posts: 64
Received Thanks: 3
Anyone test it ?
Clane87 is offline  
Old 01/05/2012, 08:48   #3

 
Nuuklear's Avatar
 
elite*gold: 8
Join Date: Sep 2006
Posts: 199
Received Thanks: 27
Yes, I've tested it.

But my pockets were full so fast that I've edited the script a little.

1. You need 1920x1080
2. Must you find yourself in your Ship
3. You have to stand directly in front of your locker
4. You need a second bag in your locker
5. You need at least 3 crew members

The script sends out three crew members in order to do the second job (middle) - Then It takes the rewards and puts it into the locker

I have the script just a little for me adjusted, no support


Code:
While True
If WinActive("Star Wars: The Old Republic", "" ) Then

; Take Loot 1
RandomDelay(500,250)
MouseClick("left",327, 780)
RandomDelay(500,250)
MouseClick("left",327, 790)
RandomDelay(500,250)
MouseClick("left",327, 800)
RandomDelay(500,250)
MouseClick("left",327, 810)
RandomDelay(500,250)
MouseClick("left",327, 820)

; Take Loot 2
RandomDelay(500,250)
MouseClick("left",327, 780)
RandomDelay(500,250)
MouseClick("left",327, 790)
RandomDelay(500,250)
MouseClick("left",327, 800)
RandomDelay(500,250)
MouseClick("left",327, 810)
RandomDelay(500,250)
MouseClick("left",327, 820)

; Take Loot 3
RandomDelay(500,250)
MouseClick("left",327, 780)
RandomDelay(500,250)
MouseClick("left",327, 790)
RandomDelay(500,250)
MouseClick("left",327, 800)
RandomDelay(500,250)
MouseClick("left",327, 810)
RandomDelay(500,250)
MouseClick("left",327, 820)

; Open Skills Window
RandomDelay(500,250)
MouseClick("left",1073,15)

; Choose skill
RandomDelay(500,250)
MouseClick("left",223, 461)

; Choose first mission
RandomDelay(500,250)
MouseClick("left",1570, 361)

; Send companion
RandomDelay(500,250)
MouseClick("left",1755, 862)

; Choose skill 2
RandomDelay(500,250)
MouseClick("left",223, 561)

; Choose first mission 2
RandomDelay(500,250)
MouseClick("left",1570, 361)

; Send companion 2
RandomDelay(500,250)
MouseClick("left",1755, 862)

; Choose skill 3
RandomDelay(500,250)
MouseClick("left",223, 660)

; Choose first mission 3
RandomDelay(500,250)
MouseClick("left",1570, 361)

; Send companion 3
RandomDelay(500,250)
MouseClick("left",1755, 862)

; Send ESC to close all windows
RandomDelay(500,250)
Send("{ESC}")

; Open Bank
RandomDelay(500,250)
MouseClick("right",976, 404)

; Switch to Ramp 2
RandomDelay(2000,1000)
MouseClick("left",1428, 804)

; Put Items in Line 1
RandomDelay(500,250)
MouseClick("right",76, 349)
RandomDelay(500,250)
MouseClick("right",128, 349)
RandomDelay(500,250)
MouseClick("right",183, 349)
RandomDelay(500,250)
MouseClick("right",238, 349)
RandomDelay(500,250)
MouseClick("right",293, 349)
RandomDelay(500,250)
MouseClick("right",348, 349)
RandomDelay(500,250)
MouseClick("right",405, 349)
RandomDelay(500,250)
MouseClick("right",458, 349)
RandomDelay(500,250)
MouseClick("right",513, 349)
RandomDelay(500,250)
MouseClick("right",568, 349)

; Send ESC to close all windows
RandomDelay(500,250)
Send("{ESC}")

Sleep("285000")


Else
WinActivate("Star Wars: The Old Republic", "")
EndIf
WEnd



Func RandomDelay($base,$range)
   Sleep($base + Random (1,$Range,1))
EndFunc

Hope its ok to edit your script a little?!? PM me if you dont like it.

The best way to automize youre crewskills in swtor is downloading autoit and play a little bit with it, its easy as hell and you can make some nice stuff in no time.
Nuuklear is offline  
Thanks
1 User
Old 01/09/2012, 13:19   #4
 
elite*gold: 0
Join Date: Oct 2005
Posts: 125
Received Thanks: 1
is this safe?
mza325 is offline  
Old 01/09/2012, 13:26   #5
 
elite*gold: 132
Join Date: May 2008
Posts: 539
Received Thanks: 131
Quote:
Originally Posted by mza325 View Post
is this safe?
Stupid? Its Open Source, if you dont understand this Source your'e not worth enough to use it.
dagster is offline  
Thanks
1 User
Old 01/10/2012, 06:07   #6
 
elite*gold: 0
Join Date: Jan 2012
Posts: 16
Received Thanks: 0
Quote:
Originally Posted by börning_crusades View Post
Yes, I've tested it.

But my pockets were full so fast that I've edited the script a little.

1. You need 1920x1080
2. Must you find yourself in your Ship
3. You have to stand directly in front of your locker
4. You need a second bag in your locker
5. You need at least 3 crew members

The script sends out three crew members in order to do the second job (middle) - Then It takes the rewards and puts it into the locker

I have the script just a little for me adjusted, no support


Code:
While True
If WinActive("Star Wars: The Old Republic", "" ) Then

; Take Loot 1
RandomDelay(500,250)
MouseClick("left",327, 780)
RandomDelay(500,250)
MouseClick("left",327, 790)
RandomDelay(500,250)
MouseClick("left",327, 800)
RandomDelay(500,250)
MouseClick("left",327, 810)
RandomDelay(500,250)
MouseClick("left",327, 820)

; Take Loot 2
RandomDelay(500,250)
MouseClick("left",327, 780)
RandomDelay(500,250)
MouseClick("left",327, 790)
RandomDelay(500,250)
MouseClick("left",327, 800)
RandomDelay(500,250)
MouseClick("left",327, 810)
RandomDelay(500,250)
MouseClick("left",327, 820)

; Take Loot 3
RandomDelay(500,250)
MouseClick("left",327, 780)
RandomDelay(500,250)
MouseClick("left",327, 790)
RandomDelay(500,250)
MouseClick("left",327, 800)
RandomDelay(500,250)
MouseClick("left",327, 810)
RandomDelay(500,250)
MouseClick("left",327, 820)

; Open Skills Window
RandomDelay(500,250)
MouseClick("left",1073,15)

; Choose skill
RandomDelay(500,250)
MouseClick("left",223, 461)

; Choose first mission
RandomDelay(500,250)
MouseClick("left",1570, 361)

; Send companion
RandomDelay(500,250)
MouseClick("left",1755, 862)

; Choose skill 2
RandomDelay(500,250)
MouseClick("left",223, 561)

; Choose first mission 2
RandomDelay(500,250)
MouseClick("left",1570, 361)

; Send companion 2
RandomDelay(500,250)
MouseClick("left",1755, 862)

; Choose skill 3
RandomDelay(500,250)
MouseClick("left",223, 660)

; Choose first mission 3
RandomDelay(500,250)
MouseClick("left",1570, 361)

; Send companion 3
RandomDelay(500,250)
MouseClick("left",1755, 862)

; Send ESC to close all windows
RandomDelay(500,250)
Send("{ESC}")

; Open Bank
RandomDelay(500,250)
MouseClick("right",976, 404)

; Switch to Ramp 2
RandomDelay(2000,1000)
MouseClick("left",1428, 804)

; Put Items in Line 1
RandomDelay(500,250)
MouseClick("right",76, 349)
RandomDelay(500,250)
MouseClick("right",128, 349)
RandomDelay(500,250)
MouseClick("right",183, 349)
RandomDelay(500,250)
MouseClick("right",238, 349)
RandomDelay(500,250)
MouseClick("right",293, 349)
RandomDelay(500,250)
MouseClick("right",348, 349)
RandomDelay(500,250)
MouseClick("right",405, 349)
RandomDelay(500,250)
MouseClick("right",458, 349)
RandomDelay(500,250)
MouseClick("right",513, 349)
RandomDelay(500,250)
MouseClick("right",568, 349)

; Send ESC to close all windows
RandomDelay(500,250)
Send("{ESC}")

Sleep("285000")


Else
WinActivate("Star Wars: The Old Republic", "")
EndIf
WEnd



Func RandomDelay($base,$range)
   Sleep($base + Random (1,$Range,1))
EndFunc

Hope its ok to edit your script a little?!? PM me if you dont like it.

The best way to automize youre crewskills in swtor is downloading autoit and play a little bit with it, its easy as hell and you can make some nice stuff in no time.


I used this script exactly, only altered the mouse coordinates, however I'm having 1 small issue with it. I start up my script and throw SWTOR into fullscreen and nothing happens. When i click out of SW's onto my desktop background the script starts running... need some help
cmlkirk89 is offline  
Old 01/10/2012, 21:09   #7
 
elite*gold: 0
Join Date: Dec 2011
Posts: 3
Received Thanks: 0
Quote:
Originally Posted by cmlkirk89 View Post
I used this script exactly, only altered the mouse coordinates, however I'm having 1 small issue with it. I start up my script and throw SWTOR into fullscreen and nothing happens. When i click out of SW's onto my desktop background the script starts running... need some help
Decompile the script into EXE, right click and run as admin
PVPrussian is offline  
Old 01/10/2012, 22:53   #8
 
elite*gold: 0
Join Date: Jan 2012
Posts: 16
Received Thanks: 0
Thanks I'll try that right now, just got back home from work. However, when i right click it i dont have a de-compile option, i have a compile option so im not sure how to do that. I tried the "save as" option and just added .exe would that work?

Fixed it! thanks for the help and all great threads!!! this is gunna be great tonight!
cmlkirk89 is offline  
Old 08/03/2013, 10:05   #9
 
elite*gold: 0
Join Date: Aug 2013
Posts: 1
Received Thanks: 0
Yeah...

Hey I have no idea what I am doing with these script thingy's lol I have never used one but I just want to simply learn how to run this script so that when i'm at work I can just have it run for me. Sorry for the lack of knowledge :P
rangeflamer is offline  
Old 10/01/2013, 23:48   #10
 
elite*gold: 0
Join Date: Dec 2012
Posts: 13
Received Thanks: 5
Quote:
Originally Posted by börning_crusades View Post
Yes, I've tested it.

But my pockets were full so fast that I've edited the script a little.

1. You need 1920x1080
2. Must you find yourself in your Ship
3. You have to stand directly in front of your locker
4. You need a second bag in your locker
5. You need at least 3 crew members

The script sends out three crew members in order to do the second job (middle) - Then It takes the rewards and puts it into the locker

I have the script just a little for me adjusted, no support


Code:
While True
If WinActive("Star Wars: The Old Republic", "" ) Then

; Take Loot 1
RandomDelay(500,250)
MouseClick("left",327, 780)
RandomDelay(500,250)
MouseClick("left",327, 790)
RandomDelay(500,250)
MouseClick("left",327, 800)
RandomDelay(500,250)
MouseClick("left",327, 810)
RandomDelay(500,250)
MouseClick("left",327, 820)

; Take Loot 2
RandomDelay(500,250)
MouseClick("left",327, 780)
RandomDelay(500,250)
MouseClick("left",327, 790)
RandomDelay(500,250)
MouseClick("left",327, 800)
RandomDelay(500,250)
MouseClick("left",327, 810)
RandomDelay(500,250)
MouseClick("left",327, 820)

; Take Loot 3
RandomDelay(500,250)
MouseClick("left",327, 780)
RandomDelay(500,250)
MouseClick("left",327, 790)
RandomDelay(500,250)
MouseClick("left",327, 800)
RandomDelay(500,250)
MouseClick("left",327, 810)
RandomDelay(500,250)
MouseClick("left",327, 820)

; Open Skills Window
RandomDelay(500,250)
MouseClick("left",1073,15)

; Choose skill
RandomDelay(500,250)
MouseClick("left",223, 461)

; Choose first mission
RandomDelay(500,250)
MouseClick("left",1570, 361)

; Send companion
RandomDelay(500,250)
MouseClick("left",1755, 862)

; Choose skill 2
RandomDelay(500,250)
MouseClick("left",223, 561)

; Choose first mission 2
RandomDelay(500,250)
MouseClick("left",1570, 361)

; Send companion 2
RandomDelay(500,250)
MouseClick("left",1755, 862)

; Choose skill 3
RandomDelay(500,250)
MouseClick("left",223, 660)

; Choose first mission 3
RandomDelay(500,250)
MouseClick("left",1570, 361)

; Send companion 3
RandomDelay(500,250)
MouseClick("left",1755, 862)

; Send ESC to close all windows
RandomDelay(500,250)
Send("{ESC}")

; Open Bank
RandomDelay(500,250)
MouseClick("right",976, 404)

; Switch to Ramp 2
RandomDelay(2000,1000)
MouseClick("left",1428, 804)

; Put Items in Line 1
RandomDelay(500,250)
MouseClick("right",76, 349)
RandomDelay(500,250)
MouseClick("right",128, 349)
RandomDelay(500,250)
MouseClick("right",183, 349)
RandomDelay(500,250)
MouseClick("right",238, 349)
RandomDelay(500,250)
MouseClick("right",293, 349)
RandomDelay(500,250)
MouseClick("right",348, 349)
RandomDelay(500,250)
MouseClick("right",405, 349)
RandomDelay(500,250)
MouseClick("right",458, 349)
RandomDelay(500,250)
MouseClick("right",513, 349)
RandomDelay(500,250)
MouseClick("right",568, 349)

; Send ESC to close all windows
RandomDelay(500,250)
Send("{ESC}")

Sleep("285000")


Else
WinActivate("Star Wars: The Old Republic", "")
EndIf
WEnd



Func RandomDelay($base,$range)
   Sleep($base + Random (1,$Range,1))
EndFunc

Hope its ok to edit your script a little?!? PM me if you dont like it.

The best way to automize youre crewskills in swtor is downloading autoit and play a little bit with it, its easy as hell and you can make some nice stuff in no time.
How would you go about making it for 2 companions?
sertaq is offline  
Old 10/06/2013, 16:30   #11
 
elite*gold: 0
Join Date: Oct 2013
Posts: 23
Received Thanks: 2
Worked . Good job
ActiOnstarts is offline  
Old 10/06/2013, 17:10   #12
 
elite*gold: 0
Join Date: Dec 2012
Posts: 13
Received Thanks: 5
Care to share what you did?
sertaq is offline  
Old 11/09/2013, 06:34   #13
 
elite*gold: 0
Join Date: Dec 2012
Posts: 13
Received Thanks: 5
Could anyone please xplain how to make this works.
sertaq is offline  
Reply


Similar Threads Similar Threads
Need Help To Make Simple Bot With : Autoit :
05/21/2010 - General Coding - 9 Replies
Hey Every One.. I Just want Know How To Make Simple Bot With Autoit.. All I need To Know :- 1.How To make The Bot Run On Game Only Mean Work On Background 2.How To Insert HotKeys Like Ctrl+A - Insert - Shit - F1...F10 3.How To Control The Time...? 4.How To Make mouse Click left Or Right Click Into Cord (x,y).. All Of those Wanna Done Into Background... Any Way Thx For Reading My Request N For Help
2 simple fragen zu AutoIt
07/27/2009 - AutoIt - 12 Replies
Also wie der Tietel schon sagt hab ich ma 2 fragen zu autoit^^ also ich wolte fragen ob mir jemand erklärenkann wie man mit autoit das desktop pic ändert und dann noch wie man bei FileMove ("C:\\ usw wo dann der benutzername hin kommt z.b. bei mir Valle, wie der script das selbst rausfindet? also dass es z.b. heißt wenn es in den autostart ordner soll
Simple Autoit Question(Pls help)
07/21/2009 - 12Sky2 - 11 Replies
A lot of us beginner autoit users are having trouble getting rid of this script error. Line -1: Error: Cannot redeclare a const Please explain how to fix this problem!:confused:
simple autoit bot
10/14/2008 - General Gaming Releases - 8 Replies
So what we're gonna do today is a very basic bot that pulls one mob at a time that you are able to tab target while ingame aka you need to see X amount of mobs infront of you for this to be optimal. The way WAR has been designed makes this very easy to do, your character automatically turns towards the mob you want to attack and pretty much no mobs are actually linked so you can stand infront of a huge cluster of mobs and pull one mob over and over. ...
Simple AutoIT Bot
12/09/2007 - SRO Hacks, Bots, Cheats & Exploits - 8 Replies
Hello Everybody, i made a simple bot for those who don't like T-Bot or for those where it won't works. File-Upload.net - Ihr kostenloser File Hoster! other dl link: 2shared - download MaIn_bot.exe



All times are GMT +1. The time now is 04:52.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.