Zol'tun Kulle infinite turn in XP (Post-nerf) menu

User Tag List

Page 6 of 10 FirstFirst ... 2345678910 LastLast
Results 76 to 90 of 137
  1. #76
    cloudstrife007's Avatar Active Member CoreCoins Purchaser
    Reputation
    27
    Join Date
    Jun 2012
    Posts
    243
    Thanks G/R
    2/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You should make the video private unless you have the link to it. This makes it not searchable on youtube, thus not spreading it to get nerfed quicker.

    Zol'tun Kulle infinite turn in XP (Post-nerf)
  2. #77
    TanookiLover's Avatar Member
    Reputation
    11
    Join Date
    May 2012
    Posts
    172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok, it's working perfectly, you just have to do it all within 20 secs or you get the error and it puts your status back


    I can't get it to work using Batch's way

  3. #78
    coreisforpoorkids's Avatar Banned
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    dope works for me

  4. #79
    coreisforpoorkids's Avatar Banned
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol.......

  5. #80
    Naus's Avatar Corporal
    Reputation
    5
    Join Date
    Jun 2012
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would it be asking too much for someone to make a single computer script?

    It's fairly inconvenient for me to set up 2 VMs for the sole purpose of this.

  6. #81
    Mcmoneygrubber's Avatar Member
    Reputation
    3
    Join Date
    Nov 2011
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So this was just a copy paste from a guide that was moved to elite, okidoki.
    Gonna rep that guy, not a copy/paste post.

  7. #82
    TTC's Avatar Banned
    Reputation
    4
    Join Date
    Jun 2012
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi This Works great thanks stoped working just now ?

  8. #83
    TTC's Avatar Banned
    Reputation
    4
    Join Date
    Jun 2012
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could someone quote me i need help it kicks my fiend when i start it

  9. #84
    Aquitaine's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Naus View Post
    Would it be asking too much for someone to make a single computer script?

    It's fairly inconvenient for me to set up 2 VMs for the sole purpose of this.
    This is what I've adapted so far, I used elexor's AHK script as a way to learn what does what. All of the credit goes to him when it works, the breaking is most likely my fault as I've not done this type of thing before and it was assembled piecemeal. This definitely won't be plug and play but if you wanted a spot to start from for your own adaptation it might help.

    The script breaks quite often. About 25% - 33% of the time the leecher's resume is greyed out completely breaking everything and I haven't been able to figure out the timing. This is my first time using AHK so I don't know if there's any way to throw some error checking or not. For now I've just been fixing the problem manually and restarting the script.

    This is using two 800x600 windows on a 1080P resolution screen. Since AHK bases the coords off the active window I've used a lot of desktop selections to switch between them. You'll need to plug in your own desktop values but the in game options should be similar at the same resolution.

    Code:
    WinBx :=500									;position of boosters window
    WinBy :=19
    
    WinLx :=1500									;position of leechers window
    WinLy :=19
    
    SocialLx :=1882
    SocialLy :=591
    
    DesktopBx :=100									;set this to an empty desktop space
    DesktopBy :=1000
    
    DesktopLx :=500									;set this to an empty desktop space
    DesktopLy :=900
    
    
    ^p::Pause									;pause bot
    
    
    Numpad1::									;hotkey to start the script
    
    Loop 99999									;times to loop about 16 seconds per run
    {
    	
    	MouseClick, left,  %SocialLx%,  %SocialLy%				;open social menu on leecher
    	Sleep, 500
    	MouseClick, right,  650,  225					        ;select booster
    	Sleep, 500
    	MouseClick, left,  718,  305						;request invite
    	Sleep, 500
    	MouseClick, left,  %DesktopLx%,  %DesktopLy%				;refocus to desktop from leech
    	Sleep, 500
    	MouseClick, left,  %WinBx%,  %WinBy%					;select booster
    	Sleep, 500
    	MouseClick, left,  705,  545						;accept request
    	Sleep, 500
    	MouseClick, left,  %DesktopBx%,  %DesktopBy%				;refocus to desktop from booster
    	Sleep, 500
    	MouseClick, left,  %WinLx%,  %WinLy%					;select leecher
    	Sleep, 500
    	MouseClick, left,  705,  545						;accept join
    	Sleep, 500
    	MouseClick, left,  %DesktopLx%,  %DesktopLy%				;refocus to desktop from leech
    	Sleep, 500
    	MouseClick, left,  %WinBx%,  %WinBy%					;select booster
    	Sleep, 200
    	Send, {ESC}								;open menu
    	Sleep, 100
    	MouseClick, left,  410,  350						;leave game
    	Sleep, 1000
    	MouseClick, left,  350,  380						;confirm
    	Sleep, 1500
    	MouseClick, left,  140,  260						;resume game
    	Sleep, 200
    	MouseClick, left,  %DesktopBx%,  %DesktopBy%				;refocus to desktop from booster
    	Sleep, 500
    	MouseClick, left,  %WinLx%,  %WinLy%					;select leecher
    	Sleep, 1500
    	MouseClick, left,  140,  260						;resume game
    	Sleep, 4000
    
    	PixelSearch, Px, Py, 9, 31, 802, 532, 0x1C2033, 3, Fast 		;find and click npc 100% accurate
    	MouseClick, left, %Px%, %Py%
    	Sleep, 4000								;Skip through dialog 
    	Send {Space}											
    	Sleep, 98		
    	Send {Space}
    	Sleep, 192
    	Send {Space}
    	Sleep, 125
    	Send {Space}
    	Sleep, 142
    	Send {Space}
    
    
    	Sleep, 200
    	MouseClick, left,  %DesktopLx%,  %DesktopLy%				;refocus to desktop from leech
    	Sleep, 500
    	MouseClick, left,  %WinBx%,  %WinBy%					;select booster
    	Sleep, 500
    	MouseClick, left,  410,  380						;dismiss error
    	Sleep, 500
    	MouseClick, left,  140,  260						;resume game
    	Sleep, 200
    	MouseClick, left,  %DesktopBx%,  %DesktopBy%				;refocus to desktop from booster
    	Sleep, 500
    	MouseClick, left,  %WinLx%,  %WinLy%					;select leecher
    	Sleep, 5000
    	MouseClick, left,  410,  380						;dismiss error
    	Sleep, 200
    	Send, {ESC}								;open menu
    	Sleep, 200
    	MouseClick, left,  410,  350						;leave game
    	Sleep, 500
    	MouseClick, left,  %DesktopLx%,  %DesktopLy%				;refocus to desktop from leech
    	Sleep, 2000
    }

  10. #85
    08449's Avatar Contributor

    Reputation
    100
    Join Date
    Feb 2007
    Posts
    244
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nav4321 View Post
    No, but i'm sure i know few of them in OC that will Auto it it, 08849 for example, hes a genius with it.

    Zol'tun Kulle infinite turn in XP (Post-nerf)-tumblr_m5w4nxujom1rqwv86o2_500-png

    The name is 449, 08-449. Not 08849!



  11. #86
    nav4321's Avatar Elite User
    CoreCoins Purchaser
    Reputation
    365
    Join Date
    Jan 2008
    Posts
    1,259
    Thanks G/R
    2/19
    Trade Feedback
    63 (94%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hahha, Sorry bout that brother :P but when you gonna script this! cant wait for it

  12. #87
    nav4321's Avatar Elite User
    CoreCoins Purchaser
    Reputation
    365
    Join Date
    Jan 2008
    Posts
    1,259
    Thanks G/R
    2/19
    Trade Feedback
    63 (94%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by majinpvegeta View Post
    You should make the video private unless you have the link to it. This makes it not searchable on youtube, thus not spreading it to get nerfed quicker.
    I'm gonna put the video on private, tonight.

  13. #88
    Goldpen223's Avatar Master Sergeant
    Reputation
    23
    Join Date
    Apr 2012
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anyone confirm about how long this takes to go from 1-40, etc? Versus how long it took pre-patch 1.0.3a? Thanks!

  14. #89
    Ignorance's Avatar Member
    Reputation
    63
    Join Date
    Sep 2007
    Posts
    45
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Seems like this would be tough to bot with the "matchmaking" error it can give at any random time.

  15. #90
    nav4321's Avatar Elite User
    CoreCoins Purchaser
    Reputation
    365
    Join Date
    Jan 2008
    Posts
    1,259
    Thanks G/R
    2/19
    Trade Feedback
    63 (94%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Edited: @goldpen, yes the mismatch error is very random.
    Last edited by nav4321; 06-29-2012 at 06:10 AM.

Page 6 of 10 FirstFirst ... 2345678910 LastLast

Similar Threads

  1. Replies: 250
    Last Post: 07-23-2012, 01:51 PM
  2. Need help on Eu for Quest Zol'tun Kulle
    By johnstylez in forum Diablo 3 General
    Replies: 4
    Last Post: 07-13-2012, 10:31 AM
  3. Replies: 2
    Last Post: 07-08-2012, 01:32 PM
All times are GMT -5. The time now is 02:57 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