Easy and extremely fast leveling (10--60) (55-56 in 15 minutes with no help) menu

User Tag List

Page 7 of 38 FirstFirst ... 34567891011 ... LastLast
Results 91 to 105 of 560
  1. #91
    kickasskid54's Avatar Active Member
    Reputation
    50
    Join Date
    Nov 2008
    Posts
    236
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Milkshakes00 View Post
    This is the autoIt script I've been running with it all day. Started at 11, now at 41 on my Witch Doctor, only using the Grasp of the Dead ability set to your right click, if you have a ranged snare, set it to right click. Run the script, hit 'Resume Game' to load into D3, hit the - key, and let it do it's work. It's set up to that even if you die, it will leave, and rejoin the game and continue. It slows down the bot as a whole, but it's more efficient than having the script error out randomly. Page UP pauses the script, Page DOWN ends the script.

    (This is for 1920x1080. The D3 window MUST be your active window, don't bother running it without having the D3 window as your active window. This means you can't do anything on the computer while it's running, unfortunately. I *CAN* change this if someone can get ahold of the ControlID for Diablo 3 in AutoIt. I haven't been able to yet.)

    The ranged ability that snares/

    Code:
    Global $Paused
    
    HotKeySet("-", "Leave") ;script can be stopped by pressing -
    HotKeySet("{PGUP}", "Pause") ;script can be stopped by pressing -
    HotKeySet("{PGDN}", "Stop")
    
    $go = True
    $Leave = False
    
    While $go
       if($Leave) Then
    	  Send("{space}")
     	  MouseClick("left", 1587, 878)
    	  Sleep(2000)
    	  MouseClick("right", 1717, 852)
    	  Sleep(2000)
    	  MouseClick("left", 299, 35)
    	  Sleep(4000)
    	  Send("{Escape}")
          MouseClick("left", 956, 579)
    	  Sleep(13000)
    	  MouseClick("left", 230, 416)
    	  Sleep(6000)
       EndIf
    WEnd
    
    Func Pause()
       $Leave = False
    EndFunc
    
    Func Stop() ;to allow the script to stop
        Exit
    EndFunc 
     
    Func Leave()
        $Leave = True
    EndFunc
    I changed your code to this (slight change);

    Code:
    Global $Paused
    
    HotKeySet("-", "Leave") ;script can be stopped by pressing -
    HotKeySet("{PGUP}", "Pause") ;script can be stopped by pressing -
    HotKeySet("{PGDN}", "Stop")
    
    $go = True
    $Leave = False
    
    While $go
       if($Leave) Then
    	  Send("{space}")
    	  Sleep(6000)
     	  MouseClick("left", 1587, 878)
    	  Sleep(2000)
    	  MouseClick("right", 1717, 852)
    	  Sleep(2000)
    	  MouseClick("left", 299, 35)
    	  Sleep(4000)
    	  Send("{Escape}")
          MouseClick("left", 956, 579)
    	  Sleep(3000)
    	  MouseClick("left", 230, 416)
    	  Sleep(6000)
       EndIf
    WEnd
    
    Func Pause()
       $Leave = False
    EndFunc
    
    Func Stop() ;to allow the script to stop
        Exit
    EndFunc 
     
    Func Leave()
        $Leave = True
    EndFunc
    And it works so much better, the meteor comes down right as the mobs enter the area. It could be player specific, due to computer, internet, etc.

    Easy and extremely fast leveling (10--60) (55-56 in 15 minutes with no help)
  2. #92
    Milkshakes00's Avatar Active Member
    Reputation
    29
    Join Date
    May 2012
    Posts
    87
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickasskid54 View Post
    I changed your code to this (slight change);

    Code:
    Global $Paused
    
    HotKeySet("-", "Leave") ;script can be stopped by pressing -
    HotKeySet("{PGUP}", "Pause") ;script can be stopped by pressing -
    HotKeySet("{PGDN}", "Stop")
    
    $go = True
    $Leave = False
    
    While $go
       if($Leave) Then
    	  Send("{space}")
    	  Sleep(6000)
     	  MouseClick("left", 1587, 878)
    	  Sleep(2000)
    	  MouseClick("right", 1717, 852)
    	  Sleep(2000)
    	  MouseClick("left", 299, 35)
    	  Sleep(4000)
    	  Send("{Escape}")
          MouseClick("left", 956, 579)
    	  Sleep(3000)
    	  MouseClick("left", 230, 416)
    	  Sleep(6000)
       EndIf
    WEnd
    
    Func Pause()
       $Leave = False
    EndFunc
    
    Func Stop() ;to allow the script to stop
        Exit
    EndFunc 
     
    Func Leave()
        $Leave = True
    EndFunc
    And it works so much better, the meteor comes down right as the mobs enter the area. It could be player specific, due to computer, internet, etc.
    Hey, whatever works, eh? Mine runs flawlessly; should have put a minor disclaimer that things aren't going to work every time on every system.
    Glad my code went to some use.

    My recommendation is to keep the 13000 timer between the leave and remaking, just incase you die. With 13000, it gives you the room to leave a game even while dead and continue botting.

  3. #93
    Bips186's Avatar Member
    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)
    Looking for someone who can unlock hell for me. Please PM me your battletag!

    Can do the same for your toons after.
    Last edited by Bips186; 05-26-2012 at 03:39 AM.

  4. #94
    Shykon's Avatar Contributor
    Reputation
    102
    Join Date
    Dec 2007
    Posts
    322
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Milkshakes00 View Post
    Hey, whatever works, eh? Mine runs flawlessly; should have put a minor disclaimer that things aren't going to work every time on every system.
    Glad my code went to some use.

    My recommendation is to keep the 13000 timer between the leave and remaking, just incase you die. With 13000, it gives you the room to leave a game even while dead and continue botting.
    Can anyone tell me exactly how this is done? I downloaded autoit > pressed script editor > pasted that code > saved it > ran it in 86x and 64x....nothing? How?


  5. #95
    kickasskid54's Avatar Active Member
    Reputation
    50
    Join Date
    Nov 2008
    Posts
    236
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Shykon View Post
    Can anyone tell me exactly how this is done? I downloaded autoit > pressed script editor > pasted that code > saved it > ran it in 86x and 64x....nothing? How?
    With his script, you need to hit the hyphen between 0 and = .

  6. #96
    Shykon's Avatar Contributor
    Reputation
    102
    Join Date
    Dec 2007
    Posts
    322
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks. Works kinda...but i guess it assumes your snare has a range? As wizard i want to snare, but frost nova is an aoe melee range skill. How can i alter the script to run melee range and snare?


  7. #97
    tester88's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, Im using 1024x768, If im to use the script how can i obtain the coordinates? Thanks
    Im a wizard also

  8. #98
    Shykon's Avatar Contributor
    Reputation
    102
    Join Date
    Dec 2007
    Posts
    322
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    or if theres a way to macro it to get co,ords it would also be easy to adjust this for wizard?


  9. #99
    Marracus's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looking for someone to kill Diablo on Nightmare, and unlock this act on hell for me...
    I will do the same for you or pay some gold. EU server

  10. #100
    Shykon's Avatar Contributor
    Reputation
    102
    Join Date
    Dec 2007
    Posts
    322
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok guys. Need some help to edit the above script: need it to skip the guards speechk, run directly with the guard to the bottom east corner (just on the bottom line of the circle where the meteor lands), frost nova and run out straight away. Anyone?


  11. #101
    Marracus's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did this get nurfed?
    I cant seem to kill them with the meteor on Hell, or will i have to do some dmg myself?
    Any advices on how to with a Barbarian if so?

  12. #102
    tester88's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It works on the small creeps in nightmare, but not the big ones. I get about 11k exp from it.

  13. #103
    ajxphilbert's Avatar Private
    Reputation
    1
    Join Date
    May 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone make one for 1440X900 screen resolutions? I've been trying to but i keep failing! AHK please?

  14. #104
    Marracus's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Paying anyone to make me a AutoIt or AHK script for Barbarian on Hell difficulty.
    1920x1080 res.
    Youll get either Gold or $ paypal.

    Pm me.

  15. #105
    Salido's Avatar Member
    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)
    Can somebody tell me how to run the script?

    I just downloaded AutoIt, i create a new proyect and copy the codes that are in this post.

    Then I compile it and run it as x64... but nothing happens.


    PS: sorry for my bad english

Page 7 of 38 FirstFirst ... 34567891011 ... LastLast

Similar Threads

  1. [Selling] Pokemon Go Boosting/Level up service. (Fast, Cheap, Easy) and Egg hatching service.
    By Foreatic in forum Pokemon GO Buy Sell Trade
    Replies: 0
    Last Post: 09-09-2016, 01:08 AM
  2. Extreme Fast Leveling
    By mrgrap2 in forum World of Warcraft Exploits
    Replies: 10
    Last Post: 11-12-2014, 08:23 PM
  3. Extremly fast leveling
    By lolilolilol in forum Diablo 3 Guides
    Replies: 0
    Last Post: 02-26-2014, 04:36 PM
  4. [Buying] Need a Personnal and extremly fast PL for Mist of pandaria release
    By Midnightzz in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 08-03-2012, 04:35 PM
  5. [Exploit] Cap WSG flag easy and fast (Rogue + lock)
    By KuRIoS in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 05-18-2006, 11:43 AM
All times are GMT -5. The time now is 10:08 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