[For Free] Luckys Spacebot menu

Shout-Out

User Tag List

Page 86 of 120 FirstFirst ... 36828384858687888990 ... LastLast
Results 1,276 to 1,290 of 1799
  1. #1276
    vancejohnson's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi djvandal;

    Thanks for any help.

    For Makem Te, however, it's not an issue of hitting any ships.

    The issue is that its not hitting 14/14 turrets. (it is only targeting them, very infrequently at all)

    If anyone can help comment out the code (or just correct it outright) it would be very very helpful.

    [For Free] Luckys Spacebot
  2. #1277
    vancejohnson's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sorry, weird, double-post
    Last edited by vancejohnson; 05-03-2012 at 09:28 PM. Reason: double posted

  3. #1278
    DjVandal's Avatar Member
    Reputation
    1
    Join Date
    Feb 2007
    Posts
    117
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am not extremely knowledgeable in autoit but i know someother codes that let me get the idea of this script so if i have made a wrong assumption feel free to let me know but i have comented the lines as best i could you will see my coments in bold and underlined

    Code:
     Func Makem_go()   WinActivate("Star Wars™: The Old Republic™")   ;Finds StarWars window
       Makem_Main()     ;tells it to run the following script
    EndFunc
    
    
    Func Makem_Main()
       
    $x1 = 0; not sure what these are doing but i assume they are zeroing variables so there is a baseline for coordinates
    $y1 = 0
    $x2 = 0
    $y2 = 0
    $x3 = 0
    $y3 = 0
       
                      Sleep(1000) ; sleeping lol
                      Send("{SPACE 1}")
                      Sleep(1000)
                      MouseMove(518, 600) ; looking for chair
                      Sleep(1200)
                      Sleep(300)
                      MouseClick("right")
                      Sleep(300)
                      MouseClick("right")
                      Sleep(5000)
                      MouseMove(567, 260) ; heading to sector mission is in 
                      Sleep(500)
                      MouseClick("left") 
                      MouseClick("left")
                      Sleep(2000)
                      MouseMove(708, 400) ;Makem Te  this is were it finds the exact mission
                      Sleep(2000)
                      MouseClick("left") 
                      MouseClick("left") 
                      MouseMove(861, 674) ;moves to  click ok 
                      Sleep(2000)
                      MouseClick("left") 
                      MouseClick("left") 
                      MouseMove(475, 445) ; moves to  join space combat 
                      Sleep(1000)
                      MouseClick("left") 
                      Sleep(49000) ;this is the sleep before our movie starts playing
                      Send("{1 1}") ;not 100% on why this is doing this but it turns converter on and off i think
                      
                      If GUICtrlRead($Checkbox_barrel) = $GUI_CHECKED Then AdlibRegister ("Barrel",500)              ; checking if you have clicked the barrel roll box if yes it loads the module that hits space bar
                      
                      MouseDown("left")
                      Local $script_start2 = TimerInit()   ;starts timer for timer based events
                      Do  
               ; this tells the bot where to look for the color first 2 are top left corner  next 2 are bottom right color 0x810000 is the color
                      $rot = PixelSearch(14, 55, 1024, 785, 0x810000) ; $rot is now a established varieble so if the color shows in that area then $rot is true if not then $rot is false
                     
    
    
                   If IsArray($rot) = True Then ; if it finds the color then ......
                      MouseMove($rot [0], $rot [1], 1) ; moves the mouse to the color 
                      MouseClick("right") ;fires missiles
                   EndIf     ; i dont understand this part of auto it i think the EndIf is tied into the next line but someone can probly answer this better
                   
                   Local $timer_diff2 = TimerDiff( $script_start2 )  ;setting $timer_diff2 variable as the amount of time since the script has started its work 
             Until $timer_diff2 > 42000     ;if it has been more than 42 seconds
                   
                      Local $script_start = TimerInit()   ;resets our timer
                      Do  
                     ;variablen===============================================
                      $rot = PixelSearch(14, 55, 1024, 785, 0x810000)   ;same area and color not sure why 
                      $rot1 = PixelSearch(14, 55, 1024, 785, 0xFFA29D, 10) ; looking for a different color 
                     ;Variablen================================================
    
    
                 If IsArray($rot) = True Then   ; same as above
                      MouseMove($rot [0], $rot [1], 1)
                      MouseClick("right")
                   EndIf
    
    
                   If IsArray($rot1) = True Then; same idea but for the different color
                      MouseMove($rot1 [0], $rot1 [1], 1)
                   EndIf
    
    
                   Local $timer_diff = TimerDiff( $script_start ) ;starts TimerDiff
             Until $timer_diff > 218000   ; until 218 seconds
             
                   If GUICtrlRead($Checkbox_barrel) = $GUI_CHECKED Then AdlibUnRegister("Barrel")     ; if you were using barrel rolls it unloads the module so on the next run you are not running 2 of the same module
                      MouseUp("left")
                      Sleep(1000)
                      
                    space_ende()
    
    
    EndFunc
    Last edited by DjVandal; 05-03-2012 at 10:23 PM. Reason: underlined to find coments easier

  4. #1279
    vancejohnson's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi djvandal:

    Thanks much, and good news!

    Just got my 1st two completes on Makem Te, by adding ONE line.

    I'm not on a PC in which I can get the line numbers (so work with me...) but I noticed this section...

    " If IsArray($rot) = True Then ; same as above
    MouseMove($rot [0], $rot [1], 1)
    MouseClick("right")
    EndIf


    If IsArray($rot1) = True Then; same idea but for the different color
    MouseMove($rot1 [0], $rot1 [1], 1)
    EndIf
    "
    ... is missing MouseClick("right") from the second color or whatever. (so that tells me it is NOT acting upon that color)

    ....

    so I changed it to this..,

    If IsArray($rot) = True Then
    MouseMove($rot [0], $rot [1], 1)
    MouseClick("right")
    EndIf

    If IsArray($rot1) = True Then
    MouseMove($rot1 [0], $rot1 [1], 1)
    MouseClick("right")


    ..... and I finally shot down 14/14 turrets!

    Nice.


    next, I noticed that it is NOT using it's missles on anything besides the 4 Capital Ship Shield Generators.

    it just doesn't.

    BUT... by adding that line it actively targets the 14 turrets, which is good.

    (just talking out of my ass here, but I would think that MouseClick("right") means missles, but in this context, it seems to mean lasers)



    For the next trick, in order to make the ship survive better (at L20), it needs to periodically STOP shooting it's lasers, to regen shields, OR it needs a zig zag pattern, as occurs in (I believe) Drexel.



    If anyone can tell me how to add that, with the appropriate times/codes it woud be much obliged.

    Because right now, while it does appear to complete, it does so with just a tiny sliver of health (or dies before the end).


    By NOT shooting periodically, it will regen shields, and up the completion %, or the zig zag thing I mentioned.


    Any help is much appreciated.


    Anyway, heading to bed, and let Makem Te do it's work!


    Thanks again for the help, djvandal.



    P.S. I looked up those color codes, and I don't see how they match, but that's another thing I guess...

    http://clrcds.com/aaacf9/saturation
    http://clrcds.com/000081


    P.S.S. I noticed another portion was missing anoither item, but adding it made no difference. (So I don't think it mattered)

  5. #1280
    Navamaster's Avatar Private
    Reputation
    1
    Join Date
    May 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The Kalee mission is not working at all, not on 4.22, not the 5.11 versions, on a lvl46 smuggler, with all upgrades.

    The bot goes in, shoots about 20 bombers, and get totally destroyed just after it flies past the big imperial destroyer (the one that looks as the Makem Te one, on which you have to shoot the turrets down).

    It acts strange during the bombers phases, sometimes shotting each of the two waves down, sometimes shooting about 7-8 of each, turning the shield regeneration and the "don't target me" ability in a weird fashion...

    Tried to run with details set on high+bloom, low+bloom, high and low... still goes 0-47...
    Somehow it just feels strange, since all of the previous missions (except Drexel, since I just quick grinded the levels) - it did very well, and it still does the Pakuni defense flawlessly...

    Did someone had similar problems?

  6. #1281
    DjVandal's Avatar Member
    Reputation
    1
    Join Date
    Feb 2007
    Posts
    117
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice fix man trying to sort out how it is coded in other missions to start stop shooting i think it may involve ending the current script until a timer variable then restarting the pixelsearch


    it looks like endIF kills the script if x = false so you would need to break into seperate functions and timer variables

    seems like alot of work though for less than a day of botting i would assume once you start upgradeing survivability goes way up
    Last edited by DjVandal; 05-04-2012 at 12:18 AM.

  7. #1282
    billco's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    bot has stoped auto repeating the mission , was working, now it only dose 1 mission ? rebooted my comp same thing was working all good up till now. anyone elce having a prob

  8. #1283
    DjVandal's Avatar Member
    Reputation
    1
    Join Date
    Feb 2007
    Posts
    117
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    try standard mission loop

  9. #1284
    Schmafu's Avatar Private
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    mhmm, seeme most of you try to fix the missions for the republic missions
    ... maybe I should also join the galactic republic

  10. #1285
    billco's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DjVandal View Post
    try standard mission loop
    fixed i had to reinstall the bot as when it crashed one time before it stoped must of did somethink . all good now
    Last edited by billco; 05-04-2012 at 02:47 AM.

  11. #1286
    micmac99'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)
    Hi,

    after all you guys helping out I will also throw my 50 cents in.

    My Fix for Makem Te
    Sleep(34000)
    Send("{1 1}")

    If GUICtrlRead($Checkbox_barrel) = $GUI_CHECKED Then AdlibRegister ("Barrel",500)

    MouseDown("left")
    Local $script_start2 = TimerInit()
    Do
    ;variablen===============================================
    $rot = PixelSearch(14, 55, 1024, 785, 0x810000, 10)
    $rot1 = PixelSearch(14, 55, 1024, 785, 0xFFA29D, 10)
    ;Variablen================================================

    If IsArray($rot) = True Then
    MouseMove($rot [0], $rot [1], 1)
    MouseClick("right")
    EndIf

    Local $timer_diff2 = TimerDiff( $script_start2 )
    Until $timer_diff2 > 42000

    Local $script_start = TimerInit()
    Do
    ;variablen===============================================
    $rot = PixelSearch(14, 55, 1024, 785, 0x810000, 10)
    $rot1 = PixelSearch(14, 55, 1024, 785, 0xFFA29D, 10)
    ;Variablen================================================

    If IsArray($rot) = True Then
    MouseMove($rot [0], $rot [1], 1)
    MouseClick("right")
    EndIf

    If IsArray($rot1) = True Then
    MouseMove($rot1 [0], $rot1 [1], 1)
    EndIf

    Local $timer_diff = TimerDiff( $script_start )
    Until $timer_diff > 218000

    If GUICtrlRead($Checkbox_barrel) = $GUI_CHECKED Then AdlibUnRegister("Barrel")
    MouseUp("left")
    Sleep(1000)

    space_ende()

    EndFunc
    the 10 tells pixelsearch to also use red varietys :-) Working pretty well. I didn use Kalee after TheGafs new release but here are my adjustments from the old version.

    Sleep(43000)

    If GUICtrlRead($Checkbox_barrel) = $GUI_CHECKED Then AdlibRegister ("Barrel",500)

    AdlibRegister ("Scam",82000)
    AdlibRegister ("Scam2",233000)
    AdlibRegister ("EMP",83000)

    MouseDown("left") ;shield aus
    Send("{1 1}")

    Local $script_start = TimerInit()

    Do
    Kalee3()


    Local $timer_diff = TimerDiff( $script_start )
    Until $timer_diff > 7000


    MouseUp("left") ;shield an
    Send("{2 1}")
    Sleep(9000)
    MouseDown("left") ;shield aus
    Send("{1 1}")

    Local $script_start7 = TimerInit()

    Do
    Kalee4()


    Local $timer_diff7 = TimerDiff( $script_start7 )
    Until $timer_diff7 > 27000


    MouseUp("left") ;shield an
    Send("{2 1}")
    Sleep(11000)
    MouseDown("left") ;shield aus
    Send("{1 1}")

    Local $script_start2 = TimerInit()

    Do
    Kalee1()

    Local $timer_diff2 = TimerDiff( $script_start2 )
    Until $timer_diff2 > 38000


    MouseUp("left") ;shield an
    Send("{2 1}")
    Sleep(23000)
    MouseDown("left") ;shield aus
    Send("{1 1}")

    Local $script_start3 = TimerInit()

    Do
    Kalee1()

    Local $timer_diff3 = TimerDiff( $script_start3 )
    Until $timer_diff3 > 31000


    MouseUp("left") ;shield an
    Send("{2 1}")
    Sleep(18000)
    MouseDown("left") ;shield aus
    Send("{1 1}")

    Local $script_start4 = TimerInit()

    Do
    Kalee3()

    Local $timer_diff4 = TimerDiff( $script_start4 )
    Until $timer_diff4 > 46000


    MouseUp("left") ;shield an
    Send("{2 1}")
    Sleep(17000)
    MouseDown("left") ;shield aus
    Send("{1 1}")

    Local $script_start5 = TimerInit()

    Do
    Kalee4()

    Local $timer_diff5 = TimerDiff( $script_start5 )
    Until $timer_diff5 > 5000

    Local $script_start6 = TimerInit()

    Do
    Kalee2()

    Local $timer_diff6 = TimerDiff( $script_start6 )
    Until $timer_diff6 > 30000

    MouseUp("left") ;shield an
    Send("{2 1}")
    Sleep (35000)




    If GUICtrlRead($Checkbox_barrel) = $GUI_CHECKED Then AdlibUnRegister("Barrel")
    AdlibUnRegister("Scam")
    AdlibUnRegister("Scam2")
    AdlibUnRegister("EMP")

    Sleep(1000)

    space_ende()






    EndFunc
    Some adjustments when and how long to use the shield. Have FUN. MAIN REASON bot is not accepting after mission is done you have to make your OWN accept.png for germans annehmen.png.
    Last edited by micmac99; 05-04-2012 at 09:21 AM.

  12. #1287
    Orianbeter's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok ok guys
    just pasting the code into the thread will couse for most people systax errors
    pleasue use [*code][*/code]
    Code:
    this is the code
    2:
    is there any coder out there which plays for the empire?
    3: any mission not working for everyone? ill try to fix it if its republic
    Last edited by Orianbeter; 05-04-2012 at 08:18 AM.

  13. #1288
    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)
    Sullust is not working me, Empire Sith Marauder, havent test Aeten, but i think thats working

  14. #1289
    vancejohnson's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi all:

    Posting up my fix for Makem Te...

    Last night, it got 63-16.
    (that is a nice upgrade from 0-infinity)

    Also, probably most importantly, this is only with Makem Te gear as listed on Lucky's minimum gear list.

    - Makem Te (Level 20)

    Missile Magazine Grade 1 (Level 17)
    Beam Charger Grade 1 (Level 15)
    Beam Generator Grade 1 (Level 14)
    Energy Shield Grade 1 (Level 16)
    Shield Regenerator Grade 1 (Level 16)
    Ship Armor Grade 1 (Level 14)


    EDITING... apparently I cannot upload files, dunno. here's the full text of my makem te.au3 file....

    -----------------------------------------------------------------------------
    Func Makem_go()
    WinActivate("Star Wars™: The Old Republic™")
    Makem_Main()
    EndFunc

    Func Makem_Main()

    $x1 = 0
    $y1 = 0
    $x2 = 0
    $y2 = 0
    $x3 = 0
    $y3 = 0

    Sleep(1000)
    Send("{SPACE 1}")
    Sleep(1000)
    MouseMove(518, 600) ; Stuhl
    Sleep(1200)
    Sleep(300)
    MouseClick("right")
    Sleep(300)
    MouseClick("right")
    Sleep(5000)
    MouseMove(567, 260) ; Galaxiekarte
    Sleep(500)
    MouseClick("left")
    MouseClick("left")
    Sleep(2000)
    MouseMove(708, 400) ; ;Makem Te
    Sleep(2000)
    MouseClick("left")
    MouseClick("left")
    MouseMove(861, 674) ; Jetzt Reisen
    Sleep(2000)
    MouseClick("left")
    MouseClick("left")
    MouseMove(475, 445) ; Ja
    Sleep(1000)
    MouseClick("left")
    Sleep(32000)
    Send("{1 1}")

    If GUICtrlRead($Checkbox_barrel) = $GUI_CHECKED Then AdlibRegister ("Barrel",500)

    MouseDown("left")
    Local $script_start2 = TimerInit()
    Do
    ;variablen===============================================
    $rot = PixelSearch(14, 55, 1024, 785, 0x810000)
    ;Variablen================================================

    If IsArray($rot) = True Then
    MouseMove($rot [0], $rot [1], 1)
    MouseClick("right")
    EndIf

    If IsArray($rot1) = True Then
    MouseMove($rot1 [0], $rot1 [1], 1)
    MouseClick("right")
    EndIf

    Local $timer_diff2 = TimerDiff( $script_start2 )
    Until $timer_diff2 > 42000

    Local $script_start = TimerInit()
    Do
    ;variablen===============================================
    $rot = PixelSearch(14, 55, 1024, 785, 0x810000)
    $rot1 = PixelSearch(14, 55, 1024, 785, 0xFFA29D, 10)
    ;Variablen================================================

    If IsArray($rot) = True Then
    MouseMove($rot [0], $rot [1], 1)
    MouseClick("right")
    EndIf

    If IsArray($rot1) = True Then
    MouseMove($rot1 [0], $rot1 [1], 1)
    MouseClick("right")
    EndIf

    Local $timer_diff = TimerDiff( $script_start )
    Until $timer_diff > 218000

    If GUICtrlRead($Checkbox_barrel) = $GUI_CHECKED Then AdlibUnRegister("Barrel")
    MouseUp("left")
    Sleep(1000)

    space_ende()

    EndFunc
    Last edited by vancejohnson; 05-04-2012 at 09:58 AM. Reason: cannot post a file

  15. #1290
    Orianbeter's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My Feedback to Bolsar
    Timing is quite ok 4 me i think...
    sucess:
    unequiped: dies at 1:50 bevor end, one schlied generator to go, everything else destroyed, no bonus ob, flightpath ist quite ok
    lvl 1: completes the mission, but the last schield generator still left...

Similar Threads

  1. Play World of Warcraft for Free
    By Matt in forum World of Warcraft Exploits
    Replies: 22
    Last Post: 10-26-2006, 04:25 PM
  2. Download most programs for free (Not Subscriptions!!)
    By =sinister= in forum World of Warcraft Guides
    Replies: 7
    Last Post: 08-22-2006, 08:16 AM
  3. www.wowith.com for FREE
    By Snor11 in forum World of Warcraft Exploits
    Replies: 22
    Last Post: 08-19-2006, 02:09 AM
  4. Train skill for free!!!
    By Krazzee in forum World of Warcraft Exploits
    Replies: 14
    Last Post: 06-15-2006, 12:07 AM
All times are GMT -5. The time now is 03:42 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