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

User Tag List

Page 91 of 110 FirstFirst ... 41878889909192939495 ... LastLast
Results 1,351 to 1,365 of 1647
  1. #1351
    joe3563's Avatar Member
    Reputation
    8
    Join Date
    May 2012
    Posts
    29
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This bot is brilliant! But the author has not updated in almost 2 weeks and I am impatient. I decompiled this project and added an option to run daily space missions.

    It would be bad form to share that unless this project is abandon. I await thephilz response....

    [Beta] UntzBot (Space Missions Bot, recorder+player)
  2. #1352
    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)
    Alright guys. the way you get these scripts to work is to download the SciTE from autoit.com

    once you download and instal that, open SciTE and paste the code i provided into SciTE. Save that file to your UntzBot folder. rinse and repeat for the second code i provided.

    The First code you should name the file "Frozen"
    The Second code you should name the file "Focus3"

    next, go to the SciTE and click Tools -> Build. this will make a .exe in your UntzBot folder.

    double click Focus3.exe and Frozen.exe located in your bot folder. once you run both, Press F1. this will check to make sure everything is where it should be and then you r ready to run Untz.

    !!!REMINDER!!!
    CHANGE THE PASSWORD IN THE SECOND CODE TO YOUR OWN PASSWORD. LEAVE THE QUOTATION MARKS
    IF YOUR SCREEN STAYS THE SAME FOR MORE THAN 1 MINUTE AND 30 SECOND, SWTOR WILL CLOSE AUTOMATICALLY!
    IF YOU DO NOT WANT SWTOR TO HAVE FOCUS (TOP MOST WINDOW) THEN PRESS F1 OR F3. F3 WILL CLOSE ALL BOT WINDOWS

  3. #1353
    richassman's Avatar Private
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheDank View Post
    Alright guys. the way you get these scripts to work is to download the SciTE from autoit.com

    once you download and instal that, open SciTE and paste the code i provided into SciTE. Save that file to your UntzBot folder. rinse and repeat for the second code i provided.

    The First code you should name the file "Frozen"
    The Second code you should name the file "Focus3"

    next, go to the SciTE and click Tools -> Build. this will make a .exe in your UntzBot folder.

    double click Focus3.exe and Frozen.exe located in your bot folder. once you run both, Press F1. this will check to make sure everything is where it should be and then you r ready to run Untz.

    !!!REMINDER!!!
    CHANGE THE PASSWORD IN THE SECOND CODE TO YOUR OWN PASSWORD. LEAVE THE QUOTATION MARKS
    IF YOUR SCREEN STAYS THE SAME FOR MORE THAN 1 MINUTE AND 30 SECOND, SWTOR WILL CLOSE AUTOMATICALLY!
    IF YOU DO NOT WANT SWTOR TO HAVE FOCUS (TOP MOST WINDOW) THEN PRESS F1 OR F3. F3 WILL CLOSE ALL BOT WINDOWS
    The Version of this file is not compatiable with the version of Windows you're running. Check your computer's system information to see wether you need an X86 (32-BIT) or x64 (64-bit) version of the program, contact the software publisher.

    Assistance? I get this error for bot files.

  4. #1354
    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 richassman View Post
    The Version of this file is not compatiable with the version of Windows you're running. Check your computer's system information to see wether you need an X86 (32-BIT) or x64 (64-bit) version of the program, contact the software publisher.

    Assistance? I get this error for bot files.
    instead of Tools -> Build do Tools -> Compile. click the radio button that say x86 if you r a 32-bit os. Then Click Compile Script.
    Last edited by TheDank; 05-20-2012 at 02:12 AM.

  5. #1355
    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)
    [Beta] UntzBot (Space Missions Bot, recorder+player)-untitled-jpg

    Got this error, i put my password and compile for all type normal x64 and x86 and still got it, Frozen work

  6. #1356
    Ludowitsch's Avatar Member
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheDank View Post
    Here is the code to close SWTOR if the game stays on the same screen for 1:30:
    PixelChecksum() may delay a bots' ImageSearch(), so instead of using the former, one could make use of _Timer_GetIdleTime(). That "only" measures the last time since "user" interaction. The idea behind this is that when the game hangs, the bot will hang as well and not generate user input because what the bot is waiting for will not appear on the screen. The idle timer then keeps increasing to the point defined in the script, like 90 seconds.

    So instead of looking at the screen, waiting for things to change, the script looks at when user or bot generated input has last occurred.

    I've taken the liberty to change your code accordingly but haven't tested it yet:
    Code:
    #include <Timers.au3>
    #include <ScreenCapture.au3>
    $Count = 0
    $CrashCount = 0
    
    While 1
    	Sleep(100)
    	$idletimer = _Timer_GetIdleTime()
    	;ToolTip($idletimer, 0, 0);Remove the ";" from the beginning of this line to display the idle timer
    	If $idletimer >= 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â„¢")
    			$Count = 0
    			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





    Bayoya,

    The error message in your screenshot appears when the script is trying to access an array when at the time of that access it was a string. An array is like a table or spreadsheet containing one or more values and requires something similar to coordinates to access these values. A string can only hold one value and doesn't know what to do when accessed using coordinates. That's the origin of the error.

    Try replacing
    Code:
    MsgBox(0, "", $Size[0] & " " & $Size[1])
    near the top of the script with the following:

    Code:
    While 1
    	$Size = WinGetClientSize("UntzBot v5.0x3 Lite")
    	If IsArray($Size) Then
    		ExitLoop
    	EndIf
    	Sleep(100)
    WEnd
    MsgBox(0, "", $Size[0] & " " & $Size[1])
    Last edited by Ludowitsch; 05-20-2012 at 03:11 AM.

  7. #1357
    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)
    !!!CLICK THIS LINK TO GO TO THE UPDATED CODE WE R TALKING ABOUT!!!
    HERE


    @Ludowitsch
    made some changes also
    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
    other than that, looks awesome.



    @Bayoya

    that was an old peice of code that was used for my debugging. delete these two lines and re-compile. there is no need for them lol

    Code:
    $Size  = WinGetClientSize("UntzBot v5.0x3 Lite")
    MsgBox(0, "", $Size[0] & " " & $Size[1])
    They r at line 17 and 18. you can also get rid of line 12 which should be
    Code:
    $Size = 0
    i will edit the post with the updated script.
    Last edited by TheDank; 05-20-2012 at 04:24 AM.

  8. #1358
    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)
    It wok now, but i got a new error, the Script open the Game but it doesnt Logging, it stay and login screen and them close, i try it closing the game my self

    Open the Game
    Open the Bot
    Open Focus and Frozen Press F1
    Close the Game (to see if its working)
    Open the Game again and stay at login screen then the Focus and Frozen Close.

  9. #1359
    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 Bayoya View Post
    It wok now, but i got a new error, the Script open the Game but it doesnt Logging, it stay and login screen and them close, i try it closing the game my self

    Open the Game
    Open the Bot
    Open Focus and Frozen Press F1
    Close the Game (to see if its working)
    Open the Game again and stay at login screen then the Focus and Frozen Close.
    does it take longer than 15 seconds for the login window to load??

  10. #1360
    richassman's Avatar Private
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bigg black balls this sucks ass!

  11. #1361
    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)
    No Thedank, like 2 sec, got AWESOME RIG

  12. #1362
    shizadah's Avatar Private
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My game shuts down randomly after 20-40 runs. Sometimes it works until 100+. Why does this happen? Is there a fix?

  13. #1363
    Ludowitsch's Avatar Member
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Unfortunately not. This is something Bioware has to solve. And with their "only a fraction of the playerbase with low-end computers has performance issues with the game" attitude, completely ignoring the fact that lots of people with high end machines have issues as well, I bet it's a long time until they even acknowledge these random crashes or the loading screen that locks you out of the game, let alone fix it.

    The only way to "fix" this for us is to write a login script and somehow work the security token into this as well for those guys who use it (like me).

  14. #1364
    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 Ludowitsch View Post
    Unfortunately not. This is something Bioware has to solve. And with their "only a fraction of the playerbase with low-end computers has performance issues with the game" attitude, completely ignoring the fact that lots of people with high end machines have issues as well, I bet it's a long time until they even acknowledge these random crashes or the loading screen that locks you out of the game, let alone fix it.

    The only way to "fix" this for us is to write a login script and somehow work the security token into this as well for those guys who use it (like me).
    the only way i see it possible to get the security key to work is if there was an app on the android (which there isnt) or if we could have the computer send a text message to a phone number and it could recieve messages as well with a security key.

    this would be WAY too complicated and horribly inefficient. the easiest way to work around the random crashes and infinite loading screens is to remove the security key from your account and use the scripts i have provided. if you arent comfortable with that, then you will have to deal with those issues in some other way.

    a "fix" has been posted and it is something EVERYONE can use but only some people will not since it requires less security.



    Originally Posted by Bayoya View Post
    No Thedank, like 2 sec, got AWESOME RIG
    im gonna need more info bud. does it send your password? does it try and click the "Login" button??

    the reason why i have it setup so ghetto is because the SWTOR login window have no controls or handles. there is a way to send it through the "back way" but i dunno if that would be considered as a "third-party application"
    Last edited by TheDank; 05-21-2012 at 04:59 AM.

  15. #1365
    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)
    Ok the TheDank, what is happening is that:

    Open the Game
    Open the Bot
    Open Focus and Frozen Press F1
    Close the Game (to see if its working)
    Open the Game again and stay at login screen then the Focus and Frozen Close.

    I set the client at the upper left of the screen, the Scrip open the Client, but the cursor stay on the SWTOR.EXE (to open Client) it doesnt move at all and it didnt even try to loging (write password) after about 10 or 15sec the Focus3 close and stay there. thats what is happening

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 04:16 PM. 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