[Beta] UntzBot (Space Missions Bot, recorder+player) menu

Shout-Out

User Tag List

Page 90 of 110 FirstFirst ... 40868788899091929394 ... LastLast
Results 1,336 to 1,350 of 1647
  1. #1336
    TheDank's Avatar Member
    Reputation
    5
    Join Date
    Apr 2012
    Posts
    88
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    for all of you guys that have the game crash. i have made a program that will re-open SWTOR but the only down fall is that you need to remvoe your security key. if anyone is interested, let me know and i can send you the script.

    [Beta] UntzBot (Space Missions Bot, recorder+player)
  2. #1337
    trendkilla254's Avatar Knight-Lieutenant
    Reputation
    34
    Join Date
    Feb 2012
    Posts
    255
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheDank View Post
    for all of you guys that have the game crash. i have made a program that will re-open SWTOR but the only down fall is that you need to remvoe your security key. if anyone is interested, let me know and i can send you the script.
    Not sure how another program that opens the client would resolve the issue sounds like a scam, can you explain why this would fix the issue or what the benefit of this would be?

    Sent from my SPH-D700 using Tapatalk 2

  3. #1338
    trendkilla254's Avatar Knight-Lieutenant
    Reputation
    34
    Join Date
    Feb 2012
    Posts
    255
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by trendkilla254 View Post
    Not sure how another program that opens the client would resolve the issue sounds like a scam, can you explain why this would fix the issue or what the benefit of this would be?

    Sent from my SPH-D700 using Tapatalk 2
    Ok I re-read this, I think I understand, so you made an autoit script that searches for the game window and if it sees that it closes it re-opens swtor and logs you in and picks your character? How does it restart the bot?

    Sent from my SPH-D700 using Tapatalk 2

  4. #1339
    Bayoya's Avatar Active Member
    Reputation
    41
    Join Date
    Aug 2007
    Posts
    218
    Thanks G/R
    0/2
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I found the problem why the game get you to the Server Selection Screen, it doesnt Accept the mission when it ends and the ship keep flying over and voer till it goes IDLE, it goes IDLe since the bot not move the mouse cursor

  5. #1340
    trendkilla254's Avatar Knight-Lieutenant
    Reputation
    34
    Join Date
    Feb 2012
    Posts
    255
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm having a problem that it is telling me the bot is not up to date every time I load it. It works though.
    Last edited by trendkilla254; 05-17-2012 at 11:30 AM.

  6. #1341
    Meudian's Avatar Private
    Reputation
    1
    Join Date
    May 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am having serious issues in getting this running on my laptop. No matter which resolution I set my desktop to, the program ALWAYS shrinks the game window smaller than 800x600, and then offsets it. It does this for both classic and in aero. Does anyone happen to have any suggestions to get this fixed?

  7. #1342
    TheDank's Avatar Member
    Reputation
    5
    Join Date
    Apr 2012
    Posts
    88
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by trendkilla254 View Post
    Not sure how another program that opens the client would resolve the issue sounds like a scam, can you explain why this would fix the issue or what the benefit of this would be?

    Sent from my SPH-D700 using Tapatalk 2
    Here is the code to close SWTOR if the game stays on the same screen for 1:30:

    CODE HAS BEEN UPDATED!
    Code:
    #include <Timers.au3>
    #include <ScreenCapture.au3>
    $CrashCount = 0
    
    While 1
    	Sleep(1000)
    	ToolTip(_Timer_GetIdleTime(), 0, 0);Remove the ";" from the beginning of this line to display the idle timer
    	If _Timer_GetIdleTime() >= 90000 Then
    		If WinExists("Star Wars™: The Old Republic™") Then
    			;ScreenCapture()
    			;Remove the ";" from the line above to enable the screenshot feature
    			WinClose("Star Wars™: The Old Republic™")
    			Local $file = FileOpen("log.txt", 1)
    			$time = Time()
    			FileWriteLine($file, $time & "-- SWTOR was closed.")
    			FileClose($file)
    		EndIf
    		ExitLoop
    	EndIf
    WEnd
    
    Func ScreenCapture()
    	$Screen = _ScreenCapture_Capture("")
    	_ScreenCapture_SaveImage(@ScriptDir & "\Screen Logs\" & "Capture" & $CrashCount & ".jpg", $Screen)
    	$CrashCount += 1
    EndFunc   ;==>ScreenCapture
    
    Func Time()
    	$DAY = @WDAY
    
    	Select
    		Case $DAY = 1
    			$DAY = "SUN"
    		Case $DAY = 2
    			$DAY = "MON"
    		Case $DAY = 3
    			$DAY = "TUE"
    		Case $DAY = 4
    			$DAY = "WED"
    		Case $DAY = 5
    			$DAY = "THU"
    		Case $DAY = 6
    			$DAY = "FRI"
    		Case $DAY = 7
    			$DAY = "SAT"
    	EndSelect
    
    	Return ($DAY & " " & @MDAY & "/" & @MON & "/" & @YEAR & " " & @HOUR & ":" & @MIN & ":" & @SEC & " ")
    EndFunc   ;==>Time
    And here is another code that will make sure that SWTOR is in focus every 500ms or so. it will also launch SWTOR if your icon is in the top left corner of your screen. compile both of these with your password in both the Send("Password")'s and place them into your UntzBot folder.

    Code:
    ;Updated 5/24/2012
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_UseX64=y
    #AutoIt3Wrapper_Res_requestedExecutionLevel=asInvoker
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    #include <ButtonConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    AutoItSetOption("WinTitleMatchMode", 3)
    
    $Form1 = GUICreate("Focus3", 400, 200, @DesktopWidth - 410, @DesktopHeight - 275)
    GUISetBkColor(0x0000FF)
    GUISetState(@SW_SHOW)
    HotKeySet("{F1}", "GetFocus")
    HotKeySet("{F3}", "CloseAll")
    HotKeySet("{F2}", "StartUp")
    
    $PASSWORD = "Your Password here"
    $Focus = False
    $Exists = 0
    
    While 1
    	$nMsg = GUIGetMsg()
    	Switch $nMsg
    		Case $GUI_EVENT_CLOSE
    			Exit
    
    	EndSwitch
    WEnd
    
    Func CloseAll()
    	Close()
    	Exit
    EndFunc
    
    Func Close()
    	ControlClick("UntzBot v5.0x3 Lite", "SAVE", "Button4", "Left", 1)
    	Sleep(200)
    	WinClose("UntzBot v5.0x3 Lite")
    	Sleep(200)
    	$Exists = WinExists("DeathCheck")
    	If $Exists = 1 Then
    		Send("f")
    	EndIf
    EndFunc
    
    Func Focus()
    
    	While $Focus = True
    		$Exists = WinExists("Star Wars™: The Old Republic™")
    		if $Exists = 0 Then
    			Send("e")
    			Launch()
    		Else
    			WinActivate("Star Wars™: The Old Republic™")
    			Sleep(250)
    			ShowFocus()
    		EndIf
    	WEnd
    EndFunc
    
    
    Func GetFocus()
    	$Focus = Not $Focus
    	ShowFocus()
    	Focus()
    EndFunc
    
    Func ShowFocus()
    	If $Focus = True Then
    		ToolTip("SWTOR has focus.", @DesktopWidth/2, @DesktopHeight/2)
    	Else
    		ToolTip("")
    	EndIf
    EndFunc
    
    Func StartUp()
    	$Exists = WinExists("UntzBot v5.0x3 Lite")
    	if $Exists = 0 Then
    		Run("UntzBot50x3.exe", @ScriptDir)
    		Sleep(500)
    		If WinExists("UntzBot") Then
    			WinClose("UntzBot")
    		EndIf
    		ControlClick("UntzBot Login v5.0x3", "&FreeMode", "Button3", "Left", 2)
    		Sleep(200)
    		$result = ControlClick("UntzBot v5.0x3 Lite", "LOAD", "Button5", "Left", 2)
    		Sleep(200)
    	EndIf
    
    
    	$Exists = WinExists("DeathCheck")
    	If $Exists = 0 Then
    		Run("DeathCheck50x3.exe", @ScriptDir)
    		Sleep(200)
    	EndIf
    
    	WinMove("UntzBot v5.0x3 Lite", "", @DesktopWidth - 310, 5)
    	WinMove("DeathCheck", "", @DesktopWidth - 310, 600)
    	Sleep(300)
    	WinMove("Focus3", "", @DesktopWidth - 410, @DesktopHeight - 275)
    EndFunc
    
    Func Login()
    	$Size = WinGetClientSize("STAR WARS™: The Old Republic™")
    	While IsArray($Size) = 0
    		$Size = WinGetClientSize("STAR WARS™: The Old Republic™")
    	WEnd
    	WinMove("STAR WARS™: The Old Republic™", "", 0,0, $Size[0], $Size[1])
    	Sleep(1000)
    	MouseClick("Left", $Size[0]/2, $Size[1]/2)
    	Send($PASSWORD)
    	Sleep(200)
    	MouseClick("Left", $Size[0] * 3 /4, $Size[1] * 10 / 12)
    	Sleep(8000)
    	MouseClick("Left", $Size[0] * 3 /4, $Size[1] * 10 / 12)
    EndFunc
    
    Func CheckWin()
    If WinExists("STAR WARS: The Old Republic") Then
    	While WinExists("STAR WARS: The Old Republic")
    		$pid = WinGetProcess("STAR WARS: The Old Republic")
    		ProcessClose($pid)
    	WEnd
    EndIf
    If WinExists("STAR WARS™: The Old Republic™") Then
    	WinActivate("STAR WARS™: The Old Republic™")
    	$Size = WinGetClientSize("STAR WARS™: The Old Republic™")
    	While IsArray($Size) = 0
    		$Size = WinGetClientSize("STAR WARS™: The Old Republic™")
    	WEnd
    	WinMove("STAR WARS™: The Old Republic™", "", 0,0, $Size[0], $Size[1])
    	PixelSearch(0,0,$Size[0]/2, $Size[1]/2, 0xFD2A2A)
    	If Not @error Then
    		$pid = WinGetProcess("STAR WARS™: The Old Republic™")
    		ProcessClose($pid)
    		Sleep(500)
    		Launch()
    	Else
    		Login()
    	EndIf
    EndIf
    EndFunc
    
    
    
    Func Launch()
    	MouseClick("left", 35, 45, 2, 0)
    	Sleep(15000)
    	$Exists = WinExists("STAR WARS™: The Old Republic™")
    	While $Exists = 0
    		MouseClick("Right", 1400, 600)
    		Sleep(1000)
    		MouseClick("Left", 1400, 550)
    		MouseClick("left", 35, 45, 2, 0)
    		Sleep(15000)
    		$Exists = WinExists("STAR WARS™: The Old Republic™")
    	WEnd
    
    	Close()
    
    	Sleep(2000)
    	$Exists = WinExists("STAR WARS™: The Old Republic™")
    	If $Exists = 1 Then
    		WinActivate("STAR WARS™: The Old Republic™")
    		Login()
    	Else
    		While $Exists = 0
    			$Exists = WinExists("STAR WARS™: The Old Republic™")
    			Sleep(1000)
    		WEnd
    		WinActivate("STAR WARS™: The Old Republic™")
    		Login()
    	EndIf
    	Sleep(500)
    	StartUp()
    	Sleep(30000)
    	WinActivate("Star Wars™: The Old Republic™")
    	MouseClick("Left", 773, 508, 2)
    	Sleep(20000)
    	CheckWin()
    	If $Focus = True Then
    		Send("q")
    	EndIf
    
    EndFunc


    post if you have any questions
    Last edited by TheDank; 05-24-2012 at 05:29 PM.

  8. #1343
    trendkilla254's Avatar Knight-Lieutenant
    Reputation
    34
    Join Date
    Feb 2012
    Posts
    255
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My words have been eaten, I will gladly give you rep once I'm not mobile.

    Sent from my SPH-D700 using Tapatalk 2

  9. #1344
    TheDank's Avatar Member
    Reputation
    5
    Join Date
    Apr 2012
    Posts
    88
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by trendkilla254 View Post
    My words have been eaten, I will gladly give you rep once I'm not mobile.

    Sent from my SPH-D700 using Tapatalk 2
    Rep me once you use it for awhile. let me kno how well it works so is there is any bugs i can fix them.

  10. #1345
    Bayoya's Avatar Active Member
    Reputation
    41
    Join Date
    Aug 2007
    Posts
    218
    Thanks G/R
    0/2
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    TheDank, i just copy paste that on a notepad and put it on Unztbot? or how its? sorry

  11. #1346
    trendkilla254's Avatar Knight-Lieutenant
    Reputation
    34
    Join Date
    Feb 2012
    Posts
    255
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheDank View Post
    Rep me once you use it for awhile. let me kno how well it works so is there is any bugs i can fix them.
    Knock on wood at the moment I don't need it.

  12. #1347
    Bayoya's Avatar Active Member
    Reputation
    41
    Join Date
    Aug 2007
    Posts
    218
    Thanks G/R
    0/2
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please tell me how i put that CODE to work? my game close time to time

  13. #1348
    trendkilla254's Avatar Knight-Lieutenant
    Reputation
    34
    Join Date
    Feb 2012
    Posts
    255
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bayoya View Post
    Please tell me how i put that CODE to work? my game close time to time
    Let me google that for you

  14. #1349
    Krysis's Avatar Member
    Reputation
    8
    Join Date
    Dec 2007
    Posts
    21
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Has anyone made a successful Assendancy Script, I can't seem to manage it, a link would be lovely if someone has made one. Thanks

  15. #1350
    Bayoya's Avatar Active Member
    Reputation
    41
    Join Date
    Aug 2007
    Posts
    218
    Thanks G/R
    0/2
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks trendkilla254, but still dont know how to make a Autoit file with this


    Trendkilla 254, can u upload the file create? or TheDank can do it? please w ill appreciate it
    Last edited by Bayoya; 05-19-2012 at 09:18 AM.

Similar Threads

  1. Botting Space Missions for Credits
    By Solemnity in forum SWTOR Bots and Programs
    Replies: 5
    Last Post: 09-14-2012, 02:33 PM
  2. Has anyone been suspended when using a space mission bot?
    By selrahc06 in forum SWTOR Bots and Programs
    Replies: 36
    Last Post: 07-01-2012, 01:54 AM
  3. Space Mission Memory and Botting
    By Saigne in forum SWTOR Hacks
    Replies: 2
    Last Post: 04-28-2012, 10:06 AM
  4. Macrogoblin space mission botting
    By Maschine in forum SWTOR Bots and Programs
    Replies: 60
    Last Post: 04-18-2012, 12:49 AM
  5. Space missions
    By Boscy in forum SWTOR Exploits
    Replies: 3
    Last Post: 12-24-2011, 07:07 PM
All times are GMT -5. The time now is 09:29 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search