[AutoIt] Barbarian Iskatu Leveling menu

User Tag List

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 58
  1. #16
    Aikeelu's Avatar Contributor
    Reputation
    86
    Join Date
    Jun 2012
    Posts
    108
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xips View Post
    i think mine is getting bugged cause the lag dont know... how can i change the time that it clicks on tyrael and enter iskatu ??? Is there a way to slow the seconds?

    Another thing: is there a way to use it in full screen windowed mode?

    Thanks
    Are you using the first version on the main post or another version? if you're using mine, search for this part:

    Code:
    sleep(Random( 3000, 5000, 1 ))
       
         MouseClick("left",1000,430,1)                        ; click on tyreal
       
         sleep(Random( 800, 1200, 1 ))                                 ; cancel Tyreal's popup dialog
         send("{ESCAPE}")
         sleep(Random( 400, 700, 1 ))
         send("{ESCAPE}")
         sleep(Random( 500, 700, 1 ))
         MouseClick("left",524, 295)
         sleep(Random( 900, 1200, 1 ))
         
         MouseClick("left",918,296,1)                     ; click on the portal
    And increase the underlined sleep timers, they're in miliseconds so 3000 = 3sec, here's a example of the numbers you've to change:

    sleep(Random( 3000, 5000, 1 )


    I'm using it on 1920x1080 Windowed (Fullscreen)
    Last edited by Aikeelu; 06-23-2012 at 10:02 AM.

    [AutoIt] Barbarian Iskatu Leveling
  2. #17
    Mjibiza's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome thanks guys!

    Didnt work overly well in fullscreen, switched to windowed full and it works about 75% better. No idea why.

    Couple of questions,
    Can you do this with the monitor off? I wouldnt mind leaving it on while I sleep
    should do this without a follower?
    Any similar skills on other chars that this might work with.

  3. #18
    Aikeelu's Avatar Contributor
    Reputation
    86
    Join Date
    Jun 2012
    Posts
    108
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mjibiza View Post
    Awesome thanks guys!

    Didnt work overly well in fullscreen, switched to windowed full and it works about 75% better. No idea why.

    Couple of questions,
    Can you do this with the monitor off? I wouldnt mind leaving it on while I sleep
    should do this without a follower?
    Any similar skills on other chars that this might work with.
    Uhm I didn't tried turning off monitor but it should work lol. And ye i dont use follower, i preffer to get the hits to proc revenge faster

  4. #19
    Xips's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i dont know why but here isnt working very well.... Sometimes it misses Tyrael, and them get bugged... starts failing all the other times =/.

    What can i do? Slow down the time ??? Thanks.

  5. #20
    Esotericmilk's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys,

    I can't get this to work. Doesn't click on Tyrael to start the quest for some reason. Tried on both full-screen and full-screen windowed mode.

    Any ideas what's wrong?

    Many thanks!

  6. #21
    Aikeelu's Avatar Contributor
    Reputation
    86
    Join Date
    Jun 2012
    Posts
    108
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xips View Post
    i dont know why but here isnt working very well.... Sometimes it misses Tyrael, and them get bugged... starts failing all the other times =/.

    What can i do? Slow down the time ??? Thanks.
    Slow down the sleep timers for movements/loads or increase your movement speed. Is it happening always or when you do some runs?

    Originally Posted by Esotericmilk View Post
    Hey guys,

    I can't get this to work. Doesn't click on Tyrael to start the quest for some reason. Tried on both full-screen and full-screen windowed mode.

    Any ideas what's wrong?

    Many thanks!
    Is the mouse moving over him to click or just clicking without moving the mouse?

  7. #22
    Esotericmilk's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The mouse doesn't move over him, in fact it's quite far away from him. any ideas?

  8. #23
    Aikeelu's Avatar Contributor
    Reputation
    86
    Join Date
    Jun 2012
    Posts
    108
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Esotericmilk View Post
    The mouse doesn't move over him, in fact it's quite far away from him. any ideas?
    Try using this one, just tested and works fine, tell me if still not working

    Code:
    ;Iskatu barbarian Farm
    ;Required Skills:
    ;Slot1: War Cry - Charge!
    ;Slot2: Revenge - Vengeance is Mine
    ;Slot4: Earthquake - Giant's Stride
    ;Edition by Aikeelu, credits for the original to: K!ngp!n@Blizzhackers
    
    Global $Paused 
    HotKeySet("{HOME}", "TogglePause")
    HotKeySet("{END}", "Terminate") 
    
    While 1 
       Sleep(500) 
       ToolTip("Not Running Hit 'HOME' to start/pause 'END' to force end!", 0, 0)
    WEnd 
    
    Func TogglePause() 
       $Paused = NOT $Paused 
       While $Paused 
          ToolTip("Running!", 0, 0)
          
         Sleep(Random( 2000, 4000, 1 ))
         MouseClick("left",Random(78,385,1),Random(398,437,1))    ; click 'resume game'
         Sleep(Random( 4000, 6000, 1 ))
         MouseClick("left", 1550, 900)                        ; go backwards to initialize position
         sleep(Random( 2000, 3000, 1 ))
         MouseClick("left",115,55)                           ; first click
         Sleep(Random( 4500, 5500, 1 ))
         MouseClick("left",150,145)                        ; second click
         Sleep(Random( 4700, 5700, 1 ))
         MouseClick("left",810,260,1)                        ; third click
      
         sleep(3000)                                    ; cancel Tyreal's dialog
         send("{SPACE}")
         sleep(Random( 400, 900, 1 ))
         send("{SPACE}")                                 ; cancel Imperius' dialog
         sleep(Random( 400, 800, 1 ))
         send("{SPACE}")
         sleep(Random( 3000, 5000, 1 ))
       
         MouseClick("left",1000,430,1)                        ; click on tyreal
       
         sleep(Random( 800, 1200, 1 ))                                 ; cancel Tyreal's popup dialog
         send("{ESCAPE}")
         sleep(Random( 400, 700, 1 ))
         send("{ESCAPE}")
         sleep(Random( 500, 700, 1 ))
         MouseClick("left",524, 295)
         sleep(Random( 900, 1200, 1 ))
         
         MouseClick("left",918,296,1)                     ; click on the portal
         sleep(Random( 2500, 3500, 1 ))
         send("{ESCAPE}")                               ; cancel cinematic
         sleep(Random( 400, 600, 1 ))
         MouseClick("left",Random(850,910,1),Random(350,377,1))   ; click 'Ok'
         sleep(Random( 700, 1200, 1 ))
        
         If PixelGetColor(1578,111) = 16634255 Then         ; in options menu. Portal must have failed
           send("{ESCAPE}")                            
           sleep(1000)
           send("{ESCAPE}")                               
           sleep(2000)
           MouseClick("left", 926, 244)                     ; click portal again
           sleep(4000)
           send("{ESCAPE}")                               ; cancel cinematic
           sleep(1000)
           MouseClick("left",Random(850,910,1),Random(350,377,1))   ; click 'Ok'
         sleep(1000)
         endif
       
         sleep(Random( 4500, 5700, 1 ))                                    ; combat
         send("2")
         sleep(Random( 1000, 2000, 1 ))
         send("2")
         sleep(Random( 500, 1500, 1 ))
         send("2")
         sleep(Random( 500, 1500, 1 ))
         send("2")
         sleep(Random( 1000, 2000, 1 ))
         send("{1}")
         sleep(Random( 1000, 3000, 1 ))
         send("{4}")
         sleep(Random( 2000, 3000, 1 ))
         send("2")
         sleep(Random( 1000, 2000, 1 ))
         send("{2}")                                     ; use big AE DMG spell for Iskatu
         sleep(Random( 2000, 3000, 1 ))
         send("{2}")
         sleep(Random( 2000, 3000, 1 ))
         send("{2}")
         sleep(Random( 2000, 3000, 1 ))
         send("{2}")
       
         MouseClick("left",990, 650)                        ; move a little bit to pick up gold
       
         sleep(Random( 3000, 5000, 1 ))                                    ; wait to ensure quest completes
         send("t")
         sleep(Random( 7200, 7900, 1 ))   
         send("{ESCAPE}")
         sleep(Random( 1000, 2000, 1 )) 
         MouseClick("left",Random(800,1110,1),Random(560,590,1))   ; click 'leave game'
         sleep(Random( 6500, 7500, 1 ))
         MouseClick("left",Random(70,390,1),Random(465,510,1))      ; click 'change quest'
         sleep(Random( 1500, 2500, 1 ))
         MouseClick("left",Random(375,790,1),Random(595,635,1))   ; click 'Fall of the High Heavens' quest
         sleep(Random( 1500, 2500, 1 ))
         MouseClick("left",Random(1040,1365,1),Random(840,885,1))   ; click 'Select Quest'
         sleep(Random( 1500, 2500, 1 ))
         MouseClick("left",Random(755,940,1),Random(610,650,1))   ; click 'Ok'
       
        WEnd 
    EndFunc 
    
    Func Terminate() 
        Exit 0 
    EndFunc

  9. #24
    Esotericmilk's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Still doesn't work... seems like he initially runs too far, past Tyrael and stands pretty much next to Imperious.
    I did a quick video capture so you can take a look, excuse the quality it's poor I know :

  10. #25
    Xips's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mine is getting same problem as Esotericmilk (only a few couple of times it works)....

    Aikeelu how can i slow down (which values should i slow down or increase, to make it work ?? Can u point them for me plz ).

    Another thing: im using full windowed mode 1920x1080... should i use full screen mode, or windowed mode only ????
    Thanks man

  11. #26
    Aikeelu's Avatar Contributor
    Reputation
    86
    Join Date
    Jun 2012
    Posts
    108
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Maybe the game load is too fast... Before starting the run the bot have to go forward a bit before start going to tyrael, instead of running directly to him... It should do something like this:



    Then it starts the run

    Search at the script replace this:

    Code:
    MouseClick("left",Random(78,385,1),Random(398,437,1))    ; click 'resume game'
         Sleep(Random( 4000, 6000, 1 ))

    For this:

    Code:
    MouseClick("left",Random(78,385,1),Random(398,437,1))    ; click 'resume game'
         Sleep(Random( 8000, 9000, 1 ))]
    Resolution should be exactly this way:

  12. #27
    Xips's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Now its working but it has just a little problem...

    When it enters the portal, sometimes it presses ESC to fast (at the part to skip the dialogue, before Iskatu starts), making that the full movie runs and getting bugged =/... Where do i have to change to slow it down, the moment it presses ESC to skip the part.

    THANKS FOR THE HELP MAN =D

  13. #28
    Aikeelu's Avatar Contributor
    Reputation
    86
    Join Date
    Jun 2012
    Posts
    108
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Search this:

    Code:
         sleep(Random( 2500, 3500, 1 ))
         send("{ESCAPE}")                               ; cancel cinematic
    And replace for

    Code:
    sleep(Random( 4500, 6500, 1 ))
         send("{ESCAPE}")                               ; cancel cinematic


    To increase any sleep timer you just have to increase the miliseconds number, in this case it's 2500, 3500 ----> 4500, 6500, if you need to increase any other sleep timer just do the same, this ones are for my pc and they may change for each one

    You're welcome

  14. #29
    Xips's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well i'hve increseaded the times and stuff... it works for a while... I left running and went to the gym.

    When i got back, it had changed the difficult from Normal to Hell, and was changing for another quest (act II i think).

    My question: how can this happens ??? I mean, why did it changed the difficult and why changed quest? Maybe someone moved the mouse (problably impossible).

    I think this happens when he misses clicking teleport...

    Thanks =/

    P.S: how can i record the script working ??? (them i put on youtube to u see my problem).
    Last edited by Xips; 06-25-2012 at 01:06 PM.

  15. #30
    Esotericmilk's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Aikeelu that's awesome! I played around with the sleep timers and have got it working almost perfectly now.
    I guess the problem was my laggy connection - connecting to the EU servers from Japan.
    Thanks again.

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [Selling] Selling Diablo3 account with barbarian paragon level 100
    By lelos in forum Diablo 3 Buy Sell Trade
    Replies: 3
    Last Post: 11-18-2012, 09:14 AM
  2. AutoIT Barbarian Script (Royal Crypts)
    By Amagicalman in forum Diablo 3 Bots Questions & Requests
    Replies: 6
    Last Post: 06-09-2012, 12:34 PM
  3. *REQUEST* WIZ AUTOIT 1366x768 ISKATU
    By premon in forum Diablo 3 Bots and Programs
    Replies: 0
    Last Post: 06-09-2012, 10:23 AM
  4. AutoIT Barbarian Act III Script anyone?
    By Ashraven in forum Diablo 3 Bots Questions & Requests
    Replies: 0
    Last Post: 06-07-2012, 08:43 PM
All times are GMT -5. The time now is 09:46 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