[Open Source] Lucky's Spacebot menu

Shout-Out

User Tag List

Page 116 of 135 FirstFirst ... 1666112113114115116117118119120 ... LastLast
Results 1,726 to 1,740 of 2019
  1. #1726
    buildsflyingcars's Avatar Corporal
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jstine View Post
    anyone know what happened to the noob766's version of untzbot page, its no longer there...
    He deleted the thread.

    [Open Source] Lucky's Spacebot
  2. #1727
    TMichael's Avatar Knight-Lieutenant
    Reputation
    29
    Join Date
    Jul 2012
    Posts
    346
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Truestorybro View Post
    I have a question to you TMichael regarding Luckys..

    How are you taking the screenshot of the credits for the newer builds? I'm fooling around with a "foolproof" way of getting back in to the game as SWTOR has the "crash-to-desktop-immediately-when-you-leave-the-computer-and-then-the-crash-recovery-wont-working" syndrome. Why i'm asking is because it would be nice (for me atleast) if the autoit script i'm making took a screenshot of my credits (with a timestamp).
    I used _ScreenCapture_Capture(), from ImageSearch.au3, to capture the image, and then GUICtrlSetImage() to display it. The following snippet, from ShowCredits(), will check in two places for the inventory credit number (if the crew skills window is open, the inventory window will be in a different place), and then take a screenshot of the credits area, saving it locally, and then display the image on the UI. WinActivate() simply makes sure the game client has focus before the checks:

    Code:
       Local $shipcheck = 0, $timeit = 0, $x, $y, $a, $b, $credits = 0, $invcheck1 = 0, $invcheck2 = 0, $invtimer = 0
    
       WinActivate("Star Wars™: The Old Republic™","")
       EventDelay(2000)
    
       dmsg("Checking credits from inventory...")
       
       Send("i")
       
       While $invcheck1 = 0 And $invcheck2 = 0 And $invtimer < 2 ; make sure the inventory screen is present, check twice
    	  EventDelay(100)
    	  $invcheck1 = _Imagesearcharea("pictures/inventory.png",1,45,220,140,245,$x,$y,$img_tolerance)
    	  EventDelay(500)
    	  $invcheck2 = _Imagesearcharea("pictures/inventory.png",1,600,220,695,245,$x,$y,$img_tolerance)  ; inventory location when crew skills window is up
    	  EventDelay(500)
    	  $invtimer += 1
       Wend
       
       
       If $invcheck1 = 1 Then
    	  _ScreenCapture_Capture(@MyDocumentsDir & "\Credit_Image.jpg", 360, 597, 434, 608)  ; area one
       ElseIf $invcheck2 = 1 Then
    	  _ScreenCapture_Capture(@MyDocumentsDir & "\Credit_Image.jpg", 913, 597, 987, 608)  ; area two
       Else
    	  dmsg("Inventory window not found, skipping credit check...")
    	  EventDelay(2000)
    	  Send("i") 
    	  Return
       EndIf
       
       EventDelay(2000)
       GUICtrlSetImage($CreditTotal, @MyDocumentsDir & "\Credit_Image.jpg")
       EventDelay(500)   
       Send("i")   
       EventDelay(50)
       dmsg("Credit check complete...")
    If you come up with an improved crash detection method, be sure to post it so we can integrate the solution for everyone. Ideas and contributions are always encouraged and welcomed.
    Last edited by TMichael; 10-05-2012 at 12:58 PM.

  3. #1728
    jstine's Avatar Corporal
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    mk then...any idea why? or if there are further updates for it

  4. #1729
    Darkbounded's Avatar Knight-Captain
    Reputation
    50
    Join Date
    Oct 2011
    Posts
    393
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Truestorybro View Post
    I have a question to you TMichael regarding Luckys..

    How are you taking the screenshot of the credits for the newer builds? I'm fooling around with a "foolproof" way of getting back in to the game as SWTOR has the "crash-to-desktop-immediately-when-you-leave-the-computer-and-then-the-crash-recovery-wont-working" syndrome. Why i'm asking is because it would be nice (for me atleast) if the autoit script i'm making took a screenshot of my credits (with a timestamp).
    Got the same syndrome, need a cure!!!!!

    Michael, is it going to be hard and take a lot of time to put the starter fixes in the old starter where its separate, just to see if the client really crashes all autoit stuff or it's something else?

    Also is it possible that the bot crashes because it can't do something while attempting to restart the client?

    Truestorybro, can you tell me what's your CPU usage with 2 VMs + 1 client on the host? my CPU is easily going above 80% and above 90% while games are loading, it's currently overclocked at 4,1GHz, and NorthBridge is at 2400MHz, and are you using the same 8.0.4 VM ? Before I was able to run 3 VMs at around 80-90% load... now i have that with 2 VMs and 1 client...

    I haven't seen a "normal crash" succesful recovery in a very long time, right now I tried with Alt+f4 the game window was there, there were 2x Close the Program windows, instead of clicking them it just kept looking for mission start image or something like that, I don't know if this would really happen with a "normal crash" but still... anyway after I clicked the close program windows, now it checked if any of them are there and then it loaded....
    Last edited by Darkbounded; 10-05-2012 at 03:26 PM.

  5. #1730
    TMichael's Avatar Knight-Lieutenant
    Reputation
    29
    Join Date
    Jul 2012
    Posts
    346
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Michael, is it going to be hard and take a lot of time to put the starter fixes in the old starter where its separate, just to see if the client really crashes all autoit stuff or it's something else?
    Per the integration, yeah, through and through. The bot, and specifically the starter, are working really well since the last revision, but I have seen both types of crashes. Interestingly, on my wife's rig, which has lower specs and less memory than mine, the bot ran all night without one client crash.

    Also is it possible that the bot crashes because it can't do something while attempting to restart the client?
    This is one possibility I'm digging into.

  6. #1731
    Truestorybro's Avatar Master Sergeant
    Reputation
    30
    Join Date
    Apr 2012
    Posts
    112
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Darkbounded View Post
    Got the same syndrome, need a cure!!!!!

    Truestorybro, can you tell me what's your CPU usage with 2 VMs + 1 client on the host? my CPU is easily going above 80% and above 90% while games are loading, it's currently overclocked at 4,1GHz, and NorthBridge is at 2400MHz, and are you using the same 8.0.4 VM ? Before I was able to run 3 VMs at around 80-90% load... now i have that with 2 VMs and 1 client...
    I'm only running 1 client natively and 1 on VM atm on my AMD. The biggest issue for me (i think) is that if i use a second VM on the AMD i start to get som fails after a while as the third VM is on a normal mechanical HDD. The native client and other VM is on SSD. But on wednesday i bought a i7-3770 (upgrade from i5-3570) on this computer and im running 2 VMs now with about 40% load so i can easilly fire up a third VM for sure.

  7. #1732
    Truestorybro's Avatar Master Sergeant
    Reputation
    30
    Join Date
    Apr 2012
    Posts
    112
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TMichael View Post
    I used _ScreenCapture_Capture(), from ImageSearch.au3, to capture the image, and then GUICtrlSetImage() to display it. The following snippet, from ShowCredits(), will check in two places for the inventory credit number (if the crew skills window is open, the inventory window will be in a different place), and then take a screenshot of the credits area, saving it locally, and then display the image on the UI. WinActivate() simply makes sure the game client has focus before the checks:


    If you come up with an improved crash detection method, be sure to post it so we can integrate the solution for everyone. Ideas and contributions are always encouraged and welcomed.
    Awesome! Thanks for the help!

    My programming skills are a bit rusty but i can send you the code after i'm done with it. Testing right now a crude version.

  8. #1733
    eibtech's Avatar Sergeant
    Reputation
    2
    Join Date
    Aug 2012
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do you save your password into the config? for some reason mine keeps reverting back to YourPass

    Nevermind..

    Set the password, then open the bot.. simple enough.. sorry.
    Last edited by eibtech; 10-05-2012 at 10:42 PM. Reason: duh

  9. #1734
    eibtech's Avatar Sergeant
    Reputation
    2
    Join Date
    Aug 2012
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TMichael View Post
    UPDATE 5.35 - R255


    This update is recommended for all current users.

    The following update fixes a number of major issues, and it might help with the bot crash issues which have been accompanying game client crashes over the past week.

    The new revision can be found HERE on the current x86 trunk.

    Changelog:

    • Fix: Multiple game play sessions are once more working as intended
    • Fix: Starting game play sessions with the game client closed will now work as intended; the launcher will not start until the next session is scheduled to begin
    • Fix: Session times beginning with the hour "12" will no longer cause negative numbers to display in the minutes field
    • Fix: Potential memory leak: This was an issue with the original code - missions started from the Main tab will no longer force a call to the start2() function from within the start2() function after the first mission is run; ContinueLoop is now used instead
    • The session input entry field will now clear after each session is added
    • The session mission will now be saved after the bot has closed
    • If HD mode is on, after a restart, the "Remaining" time will not be updated until the ship has finished loading


    NEXT UP

    • More bug hunting
    • Crew skill fixes
    I just have to say that this build alone is just amazing. Well done!

    I have it set to restart the game client after every 10 missions since crashing would vary between 13 & 23 wins. Doing so I hope will resolve the crashing. Testing overnight, will update when I wake up.

  10. #1735
    Darkbounded's Avatar Knight-Captain
    Reputation
    50
    Join Date
    Oct 2011
    Posts
    393
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So about the crash-to-desktop-syndrome, one of my VMs crashed tonight while I was sleeping and the other didn't, the difference between them tonight was that I left my cursor inside the VM that didn't crash and it is still running at 130+ missions on Drexel... not much but its something :d

    And its still running..
    Last edited by Darkbounded; 10-06-2012 at 05:08 AM.

  11. #1736
    rawkaction's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Since the latest update, I can't get any missions to run.. The cursor just moves around in a triangle.. Doesn't even start missions..

    Any ideas, folks? I've messed with some settings, but to no avail..

  12. #1737
    TMichael's Avatar Knight-Lieutenant
    Reputation
    29
    Join Date
    Jul 2012
    Posts
    346
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rawkaction View Post
    Since the latest update, I can't get any missions to run.. The cursor just moves around in a triangle.. Doesn't even start missions..

    Any ideas, folks? I've messed with some settings, but to no avail..
    Post your SysInfo while the game is running and we can take a look.

  13. #1738
    eibtech's Avatar Sergeant
    Reputation
    2
    Join Date
    Aug 2012
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Luckys Spacebot v5.35 x86 (R257)

    System details: X64 CPU, WIN_7(X64) Service Pack 1
    RAM total:7 GB,free:4 GB, used:38 %
    Desktop dimensions: 1920x1080(32bpp, 60Hz)
    Desktop theme: Aero using NormalSize, NormalColor, 96dpi

    SWTOR Client is running with 1024x766
    SWTOR Window:0,0 Win size:1040x804
    Color scheme: Aero

    On Target Time=50
    Missile Delay=333
    Timer Skew =50
    IMG Tolerance=106
    HD Status=1
    Timing override=4
    Mission bonus=1
    PSX OTT enabled=4
    PSX DBG enabled=4
    Last mission=Aeten Defense
    Win / Loss 177 / 0
    Needless to say I love the additions, I have a suggestion for the crew skills and this will probably be something everyone would like.

    [ ] Companion 1 <drop box for left, middle, right (default middle)> <drop box for level range (including grade 6) and (Always Highest(default))> <drop box for specific type (Do Not Specify - Default)>
    [ ] Companion 2 <drop box for left, middle, right (default middle)> <drop box for level range (including grade 6) and (Always Highest(default))> <drop box for specific type (Do Not Specify - Default)>
    [ ] Companion 3 <drop box for left, middle, right (default middle)> <drop box for level range (including grade 6) and (Always Highest(default))> <drop box for specific type (Do Not Specify - Default)>
    [ ] Companion 4 <drop box for left, middle, right (default middle)> <drop box for level range (including grade 6) and (Always Highest(default))> <drop box for specific type (Do Not Specify - Default)>
    [ ] Companion 5 <drop box for left, middle, right (default middle)> <drop box for level range (including grade 6) and (Always Highest(default))> <drop box for specific type (Do Not Specify - Default)>

    This will allow for us to farm multiple gathering skills and specify the level range. Before the level range was Grade 1 - 5 and Always Highest, but what if I only want to farm Grade 6, this should be an option. I.E: Companion 1 farming Arch Grade 6, Companion 2 Arch Grade 5, Companion 3 UT Grade 6, Companion 4 UT Grade 6, etc..
    Last edited by eibtech; 10-06-2012 at 07:37 PM. Reason: added options

  14. #1739
    TMichael's Avatar Knight-Lieutenant
    Reputation
    29
    Join Date
    Jul 2012
    Posts
    346
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @eibtech: Thanks, the support is appreciated. I have at least one more bug to squash (after a session ends, the bot will sometimes skip back to session one, ignoring later sessions), and then on to Crew Skills.

    Per Crew Skills, I like your suggestion. Into the box that goes, to be codified if possible in the very near future.

  15. #1740
    adaman7's Avatar Corporal
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any chance you are working on a work around for the current problems with the bonus in Aeten? It was working until the last major patch and has not been able to complete the bonus since then. Would be nice if the developers could work on this. 50% more credits is significant.

Similar Threads

  1. Wow hack for 2.3.3 [Open Source] Delphi
    By robotkid in forum WoW Memory Editing
    Replies: 15
    Last Post: 05-23-2018, 10:53 PM
  2. MMOGLIDER is going OPEN SOURCE!
    By Premium-mmo in forum Community Chat
    Replies: 9
    Last Post: 09-26-2013, 11:37 PM
  3. DampeBot (Open source)
    By swollen in forum World of Warcraft Bots and Programs
    Replies: 14
    Last Post: 03-23-2008, 10:03 AM
  4. Glider Status in your signature *OPEN SOURCE*
    By Marlo in forum World of Warcraft Bots and Programs
    Replies: 8
    Last Post: 09-16-2007, 05:12 PM
All times are GMT -5. The time now is 12:36 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