Crew Skills mission bot menu

User Tag List

Page 2 of 6 FirstFirst 123456 LastLast
Results 16 to 30 of 85
  1. #16
    dook123's Avatar Active Member
    Reputation
    21
    Join Date
    Oct 2008
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Update

    WARNING

    I have not tested this nor did I use the original product... simple randomization and code changes. I wanted to clean it up and then try to make it customizable to allow for other screen resolutions. Thank you for submitting your work to the community Xiandri.

    Code:
    ; Script Start - Add your code below here
    AutoItSetOption ( "MouseCoordMode", 2 )
    AutoItSetOption ( "PixelCoordMode", 2 )
    
    HotkeySet ("{F5}", "Start")
    HotkeySet ("{F6}", "Stop")
    WinActive("Star Wars: The Old Republic")
    ToolTip("CrewSkill Bot: Press F5 to start, F6 to stop.", 0, 0)
    SendKeepActive("Star Wars: The Old Republic")
    
    Func Start ()
    	WinActivate ("Star Wars: The Old Republic")
    	$i=1
    	While $i < 3600001
    		ToolTip("CrewSkill Bot: Running missions...", 0, 0)
    		
    		; Exits out of open Windows
    		$x = 0
    		Do
    			Send('{ESCAPE}')
    			Sleep(Random(200, 400, 1))
    			$x = $x + 1
    		Until $x > 5
    
    		;anti AFK (sits down) **YOU MUST BIND YOUR 'SIT DOWN' KEY TO "," (comma) for this to work!!**
    		Send(",")
    		Sleep(Random(200, 400, 1))
    
    		;open the crew skill window
    		Send("h")
    		Sleep(Random(200, 400, 1))
    		LeftClicker(1832, 13)
    
    		;accept sucessful mission rewards before sending companions out on new missions
    		$x = 1766
    		$y = 10
    		$Counter = 0
    		Do
    			LeftClicker($x, 700 + ($y * $Counter))
    			$Counter = $Counter + 1
    		Until $Counter > 9
    
    		;accept failed mission rewards
    		$Counter = 0
    		Do
    			LeftClicker(1766, 745)
    			$Counter = $Counter + 1
    		Until $Counter > 4
    
    		$ThirdCrewSkillX = 280
    		$AcceptCrewX = 1576
    		$AcceptCrewY = 363
    		$NumberOfCompanions = 4
    		$Counter = 1
    		
    		Do
    			LeftClicker($ThirdCrewSkillX, (375 + ($Counter * 100)))
    			RightClicker($AcceptCrewX, $AcceptCrewY)
    			ClickMissions()	
    			$Counter = $Counter + 1
    		Until $Counter > $NumberOfCompanions
    
    		;CHEST FARMING THING *optional*
    		;this part of the macro is for farming a chest while you craft items
    		;zoom your camera out to the max and position it so it is directly above your character (so you are looking down at the top of their head)
    		;this part will click directly infront of your character 8 times in a vertical line (starting from your characters head)
    
    		;$Counter = 0
    		;Do
    		;	RightClicker(958, (400 + ($Counter * 20)))
    		;	$Counter = $Counter + 1
    		;Until $Counter > 7
    
    		;wait for 30 seconds
    		Sleep(30000)
    	WEnd
    EndFunc
    
    
    While (1)
    	Sleep (1)
    WEnd
    
    Func Stop ()
    	Exit 0
    EndFunc
    
    Func LeftClicker ($x, $y)
    	MouseClick("Left", $x, $y, 1)
    	Sleep(Random(100, 400, 1))
    EndFunc
    
    Func RightClicker ($x, $y)
    	MouseClick("Right", $x, $y, 1)
    	Sleep(Random(100, 400, 1))
    EndFunc
    
    Func ClickMissions ()
    	;click lower level missions if needed..
    	;selects level 41-48 missions
    	LeftClicker(1682, 271)
    	LeftClicker(1680, 375) 				;41-48
    	RightClicker(1576, 363)
    
    	;selects level 33-40 missions
    	LeftClicker(1682, 271)
    	LeftClicker(1680, 355) 				;33-40
    	RightClicker(1576, 363)
    
    	;selects level 25-32 missions
    	LeftClicker(1682, 271)
    	LeftClicker(1680, 336)				;25-32
    	RightClicker(1576, 363)
    	;------
    EndFunc
    ------------------------------
    If not me than who?

    Crew Skills mission bot
  2. #17
    Xiandri's Avatar Established Member
    Reputation
    66
    Join Date
    Feb 2008
    Posts
    159
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DKVance73 View Post
    Yes and yes. it's in Full Screen Windowed mode so I can alt-tab out. One thing I did notice when I started it to is that it would open up the Options window and not even open up the Crew Skills window which I had to do manually. Also, if you're tracking any quests it would open those as the cursor would start on the right side of the screen and slowly move downward selecting the individual missions. So something is not right, maybe it's just working on your computer but mine is set up EXACTLY how you specified.
    did you make sure to bind your "Toggle Crew Skill Pane" to the "H" key?

    that sounds like the problem here

  3. #18
    floodman's Avatar Member
    Reputation
    8
    Join Date
    Jul 2009
    Posts
    110
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Dook, which screen resolutions does this work for? Does it need to be full screen, windowed, what? Any additional info would be great - thank you all so much for your wonderful contributions.

  4. #19
    DKVance73's Avatar Sergeant
    Reputation
    6
    Join Date
    Aug 2011
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xiandri View Post
    did you make sure to bind your "Toggle Crew Skill Pane" to the "H" key?

    that sounds like the problem here
    Xiandri, you may now commence smacking me all over the place sir.

  5. #20
    dook123's Avatar Active Member
    Reputation
    21
    Join Date
    Oct 2008
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by floodman View Post
    Dook, which screen resolutions does this work for?
    The same the Xiandri built, I am working on another resolution hopefully in the next couple hours.
    Originally Posted by floodman View Post
    Does it need to be full screen, windowed, what?
    I believe the way xiandri has it setup is windowed and maximized or full screen.
    Originally Posted by floodman View Post
    Any additional info would be great - thank you all so much for your wonderful contributions.
    More info coming your way
    ------------------------------
    If not me than who?

  6. #21
    floodman's Avatar Member
    Reputation
    8
    Join Date
    Jul 2009
    Posts
    110
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That would be amazing if you did one in a more common resolution.

    The sit AFK key always seems so obvious to me though. Whenever I see people sitting, whether its near the auction house or not, I immediately think they are botting something or another. Wonder if it's possible to make the anti-afk be some variable of (pan left), sit, jump, etc... on a variable timer from 5-10 minutes or something. Thanks again and to OP as well!

  7. #22
    Xiandri's Avatar Established Member
    Reputation
    66
    Join Date
    Feb 2008
    Posts
    159
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by floodman View Post
    That would be amazing if you did one in a more common resolution.

    The sit AFK key always seems so obvious to me though. Whenever I see people sitting, whether its near the auction house or not, I immediately think they are botting something or another. Wonder if it's possible to make the anti-afk be some variable of (pan left), sit, jump, etc... on a variable timer from 5-10 minutes or something. Thanks again and to OP as well!
    yeh, I kinda feel the same, but jumping looks even more obvious than sitting. if you dont like the sitting then just bind jump to "," instead and it will jump. dunno what else to use for anti-AFK

  8. #23
    dook123's Avatar Active Member
    Reputation
    21
    Join Date
    Oct 2008
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xiandri View Post
    yeh, I kinda feel the same, but jumping looks even more obvious than sitting. if you dont like the sitting then just bind jump to "," instead and it will jump. dunno what else to use for anti-AFK
    Are there macros in this game? maybe /getdown
    ------------------------------
    If not me than who?

  9. #24
    gigerous's Avatar Private
    Reputation
    5
    Join Date
    Dec 2011
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So i tried with with code that Xiandri provided and worked on it, can't get my coords working properly but I am working on 1280 x 768 resolution, i made a sit down, then jump, then I have slicing I wanted to make it work for so I added an inventory opening command, a right click on up to 5 lockboxes in 5 - 9 in your inventory slot counting from first slot on the left. Its in the spoiler I give up for now

    [SPOILER]
    #cs ----------------------------------------------------------------------------

    AutoIt Version: 3.3.8.0
    Author: Xiandri

    #ce ----------------------------------------------------------------------------

    ; Script Start - Add your code below here
    AutoItSetOption ( "MouseCoordMode", 2 )
    AutoItSetOption ( "PixelCoordMode", 2 )

    HotkeySet ("{F5}", "Start")
    HotkeySet ("{F6}", "Stop")
    WinActive("Star Wars: The Old Republic")
    ToolTip("CrewSkill Bot: Press F5 to start, F6 to stop.", 0, 0)
    SendKeepActive("Star Wars: The Old Republic")

    Func Start ()
    WinActivate ("Star Wars: The Old Republic")
    $i=1
    While $i<3600001
    ToolTip("CrewSkill Bot: Running missions...", 0, 0)
    Send('{ESCAPE}')
    Sleep(250)
    Send('{ESCAPE}')
    Sleep(250)
    Send('{ESCAPE}')
    Sleep(250)
    Send('{ESCAPE}')
    Sleep(250)
    Send('{ESCAPE}')
    Sleep(250)

    ;anti AFK (sits down) **YOU MUST BIND YOUR 'SIT DOWN' KEY TO "," (comma) for this to work!!**
    Send(",")
    Send("{SPACE}")
    Sleep(250)

    ;open the crew skill window
    Send("h")
    Sleep(250)
    MouseClick("Left", 1270, 12, 1)
    Sleep(250)

    ;accept sucessful mission rewards before sending companions out on new missions
    MouseClick("Left", 245, 540, 1)
    Sleep(100)
    MouseClick("Left", 245, 545, 1)
    Sleep(100)
    MouseClick("Left", 245, 550, 1)
    Sleep(100)
    MouseClick("Left", 245, 555, 1)
    Sleep(100)
    MouseClick("Left", 245, 560, 1)
    Sleep(100)
    MouseClick("Left", 245, 565, 1)
    Sleep(100)
    MouseClick("Left", 245, 570, 1)
    Sleep(100)

    ;open the inventory and open lockboxes
    Send("i")
    Sleep(250)
    MouseClick("Right", 234, 240, 1)
    Sleep(250)
    MouseClick("Right", 281, 240, 1)
    Sleep(250)
    MouseClick("Right", 324, 240, 1)
    Sleep(250)
    MouseClick("Right", 362, 240, 1)
    Sleep(250)
    MouseClick("Right", 404, 240, 1)
    Sleep(250)
    Send('{ESCAPE}')
    Sleep(250)
    ;------

    ;accept failed mission rewards
    MouseClick("Left", 260, 485, 1)
    Sleep(100)
    MouseClick("Left", 265, 490, 1)
    Sleep(100)
    MouseClick("Left", 270, 495, 1)
    Sleep(100)
    MouseClick("Left", 275, 500, 1)
    Sleep(100)


    ;send companions out

    ;1st companion, 2nd crew skill
    MouseClick("Left", 187, 322, 1)
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;-------
    ;click lower level missions if needed..
    ;selects level 41-48 missions
    MouseClick("Left", 1172, 190, 1)
    Sleep(100)
    MouseClick("Left", 1129, 267, 1);41-48
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;selects level 33-40 missions
    MouseClick("Left", 1172, 190, 1)
    Sleep(100)
    MouseClick("Left", 1128, 253, 1);33-40
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;selects level 25-32 missions
    MouseClick("Left", 1172, 190, 1)
    Sleep(100)
    MouseClick("Left", 1129, 234, 1);25-32
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;------

    ;2nd companion, 2nd crew skill
    MouseClick("Left", 187, 392, 1)
    Sleep(300)
    MouseClick("Right", 1075, 252, 1)
    Sleep(300)
    ;-------
    ;click lower level missions if needed..
    ;selects level 41-48 missions
    MouseClick("Left", 1172, 190, 1)
    Sleep(100)
    MouseClick("Left", 1129, 267, 1);41-48
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;selects level 33-40 missions
    MouseClick("Left", 1172, 190, 1)
    Sleep(100)
    MouseClick("Left", 1128, 253, 1);33-40
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;selects level 25-32 missions
    MouseClick("Left", 1172, 190, 1)
    Sleep(100)
    MouseClick("Left", 1129, 234, 1);25-32
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;------

    ;3rd companion, 2nd crew skill
    MouseClick("Left", 187, 466, 1)
    Sleep(300)
    MouseClick("Right", 1075, 292, 1)
    Sleep(300)
    ;-------
    ;click lower level missions if needed..
    ;selects level 41-48 missions
    MouseClick("Left", 1172, 190, 1)
    Sleep(100)
    MouseClick("Left", 1129, 267, 1);41-48
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;selects level 33-40 missions
    MouseClick("Left", 1172, 190, 1)
    Sleep(100)
    MouseClick("Left", 1128, 253, 1);33-40
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;selects level 25-32 missions
    MouseClick("Left", 1172, 190, 1)
    Sleep(100)
    MouseClick("Left", 1129, 234, 1);25-32
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;------

    ;4th companion, 2nd crew skill
    MouseClick("Left", 187, 533, 1)
    Sleep(300)
    MouseClick("Right", 1075, 292, 1)
    Sleep(300)
    ;-------
    ;click lower level missions if needed..
    ;selects level 41-48 missions
    MouseClick("Left", 1172, 190, 1)
    Sleep(100)
    MouseClick("Left", 1129, 267, 1);41-48
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;selects level 33-40 missions
    MouseClick("Left", 1172, 190, 1)
    Sleep(100)
    MouseClick("Left", 1128, 253, 1);33-40
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;selects level 25-32 missions
    MouseClick("Left", 1172, 190, 1)
    Sleep(100)
    MouseClick("Left", 1129, 234, 1);25-32
    Sleep(100)
    MouseClick("Right", 1075, 252, 1)
    Sleep(100)
    ;------

    ;CHEST FARMING THING *optional*
    ;this part of the macro is for farming a chest while you craft items
    ;zoom your camera out to the max and position it so it is directly above your character (so you are looking down at the top of their head)
    ;this part will click directly infront of your character 8 times in a vertical line (starting from your characters head)

    ;MouseClick("Right", 958, 540, 1)
    ;Sleep(1500)
    ;MouseClick("Right", 958, 520, 1)
    ;Sleep(1500)
    ;MouseClick("Right", 958, 500, 1)
    ;Sleep(1500)
    ;MouseClick("Right", 958, 480, 1)
    ;Sleep(1500)
    ;MouseClick("Right", 958, 460, 1)
    ;Sleep(1500)
    ;MouseClick("Right", 958, 440, 1)
    ;Sleep(1500)
    ;MouseClick("Right", 958, 420, 1)
    ;Sleep(1500)
    ;MouseClick("Right", 958, 400, 1)
    ;Sleep(1500)

    ;wait for 30 seconds
    Sleep(30000)

    WEnd
    EndFunc


    While (1)
    Sleep (1)
    WEnd

    Func Stop ()
    Exit 0
    EndFunc
    [/SPOILER]

  10. #25
    Xiandri's Avatar Established Member
    Reputation
    66
    Join Date
    Feb 2008
    Posts
    159
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how are you finding the mouse cordinates?

  11. #26
    gigerous's Avatar Private
    Reputation
    5
    Join Date
    Dec 2011
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I used that mouse coordinate thing you posted and f11 it for full screen and i am using firefox. I alt-tab out and back again but it doesn't match up when i run it, it is off by say on screen when i look about a 1/4 inch or so.

  12. #27
    dook123's Avatar Active Member
    Reputation
    21
    Join Date
    Oct 2008
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gigerous View Post
    I used that mouse coordinate thing you posted and f11 it for full screen and i am using firefox. I alt-tab out and back again but it doesn't match up when i run it, it is off by say on screen when i look about a 1/4 inch or so.
    Mine was like this as well but I didnt use the javascript, I used a C# program. Failboating in a small pool. I only tried once. Ill try again tonight possibly.
    ------------------------------
    If not me than who?

  13. #28
    Italian / Envy's Avatar Member
    Reputation
    13
    Join Date
    Jan 2009
    Posts
    128
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great job man. Saved me a bunch of time.

  14. #29
    uorequiem's Avatar Private
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Awesome!

    Awesome work. This really did the job yesterday.

    Do you foresee any possibility of it being able to distinguish the type of mission you want it to do?

    like creds slicing only, instead of items? or underworld metals instead of fabrics?

    cheers and keep up the raw awesomeness!

  15. #30
    Xiandri's Avatar Established Member
    Reputation
    66
    Join Date
    Feb 2008
    Posts
    159
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by uorequiem View Post
    Awesome work. This really did the job yesterday.

    Do you foresee any possibility of it being able to distinguish the type of mission you want it to do?

    like creds slicing only, instead of items? or underworld metals instead of fabrics?

    cheers and keep up the raw awesomeness!
    thankyou!, but nope. i'm sorry mate, but this really was my first ever attempt at anything like this. it is only a very basic 'bot', so it can only choose random missions

    i know it is possible to do things like that with autoit, but i really don't know enough about the program to do things like that =(

Page 2 of 6 FirstFirst 123456 LastLast

Similar Threads

  1. [WIP] Advanced Crew Skill Bot + AntiAFK + Configureable
    By Maxunit in forum SWTOR Bots and Programs
    Replies: 153
    Last Post: 12-18-2014, 12:37 PM
  2. [Bot] Simple crew skill bot by barthen
    By barthen in forum SWTOR Bots and Programs
    Replies: 8
    Last Post: 03-20-2012, 06:55 PM
  3. Crew Skills Bot with Bank and Activate
    By malulululu in forum SWTOR Bots and Programs
    Replies: 6
    Last Post: 02-16-2012, 01:44 AM
  4. How to Get crew skill missions you want
    By everix in forum SWTOR Guides
    Replies: 7
    Last Post: 01-09-2012, 04:27 PM
  5. Crew Skill Bot
    By Arrakis in forum SWTOR Bots and Programs
    Replies: 16
    Last Post: 01-08-2012, 04:36 AM
All times are GMT -5. The time now is 01:42 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search