[AHK][1920x1080]  ZK 1mil XP/hr AFKable! menu

Shout-Out

User Tag List

Page 9 of 20 FirstFirst ... 5678910111213 ... LastLast
Results 121 to 135 of 299
  1. #121
    bts0uth's Avatar Active Member
    Reputation
    31
    Join Date
    Feb 2008
    Posts
    224
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JackLinks View Post
    After a few runs (5 min or so), when the follower (right-side window) is in the Main Menu it brings up the Esc Menu and exits the game. The script seems so basic, but I don't see where to correct this issue.
    This s exactly what is happening to me. 5 minutes then the right window just closes the game.

    [AHK][1920x1080]  ZK 1mil XP/hr AFKable!
  2. #122
    JackLinks's Avatar Corporal
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bts0uth View Post
    This s exactly what is happening to me. 5 minutes then the right window just closes the game.
    I increased the delay before invite/accept by a couple hundred ms and it's running flawless.

  3. #123
    bts0uth's Avatar Active Member
    Reputation
    31
    Join Date
    Feb 2008
    Posts
    224
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have tried changing everything. Nothing works.

  4. #124
    sym2oo1's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bts0uth View Post
    I have tried changing everything. Nothing works.

    same, ive tried increasing and adding random delays at different parts of the script, before after sending/accepting invites, and leaving the game and the right window is still closing on me every 10-20 mins or so...

  5. #125
    sp0t's Avatar Sergeant Major
    Reputation
    41
    Join Date
    May 2012
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    V1.2 rocks!!! But there are instances where the script would fail and close the lvlers window i cant trust being afk from it for more than 20 mins

  6. #126
    JackLinks's Avatar Corporal
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tweaked it to run overnight. I increased delays until it ran for 10 minutes without issues, then I increased delays a bit more for efficiency. I've had this running for 30 minutes now.

    Key changes:
    Follower joins highlvl's party directly from previous game without leaving to Main Menu (saves a lot of time)
    --This also removes the need for cancelling the quest reward notification, so I removed that as well (saves a bit of time)
    Increased delays (for overnight efficiency)
    Removed a delay before restarting the script. I'm not quite sure what it was for (saves some time)

    Issues:
    Rarely, while running to Adria it will click on Leah opening her chat dialogue - Fixes itself
    --Probably fixable, but not a big enough issue for me to put the time into

    Code:
    ; Script by 08449, also known as Adessis
    ; Version 1.2
    ; 6/21/2012
    ; Working with patch 1.03
    
    Hotkey, F2, Pause					; If different pausebutton is needed, replace F2 with hotkey code
    
    F1::								; If different pausebutton is needed, replace F1 with hotkey code
    loop
    {
    Send, o						   		;open friends
    RandSleep(818,1032)
    MouseClick, left,  851,  359   		;invite
    RandSleep(807,1092)
    MouseClick, left,  1780,  890  		;accept invite - If too fast, increase sleeptimer one rule above this
    RandSleep(301,511)
    MouseClick, left,  401, 615         ;Click to confirm leaving current game in order to join highlvl's party
    RandSleep(301,431) 
    MouseClick, left,  -607,  22   		;select window left
    RandSleep(827,1043)
    MouseClick, left,  181,  415  	 	;resume game
    Sleep, 4000                    		;Waittime before highlvl joins game - Time this yourself and adjust accordingly!
    RandSleep(101,431)
    Send, {ESC}                    		;open menu
    RandSleep(101,431)
    MouseClick, left,  474,  572   		;click leave game
    RandSleep(101,231)
    MouseClick, left,  422,  615   		;confirm leave
    Sleep, 500							;Wait timer to make sure highlvl left game - if not, increase sleeptimer
    RandSleep(401,531)
    ;SEARCH FOR ADRIA, you spawn at different locations so have to perform a pixelsearch
    ;Color might not work for everyone, use windowspy to find color that works for you
    Pixelsearch, Px, Py, 970, 40, 1145, 120,0x1E2438, 4, fast
    RandSleep(201,367)
    MouseClick, left,  %Px%,  %Py%   	;click adria
    Sleep, 3500							;Wait time for walking to adria, if pressing esc to fast/slow adjust (Depends on movespeed)
    RandSleep(101,431)
    Send, {ESC}					  		;close conversation
    RandSleep(101,231)
    MouseClick, left,  -392,  144   	;select window left
    RandSleep(514,628)
    }
    return								;restart script
    
    RandSleep(x,y) {
    Random, rand, %x%, %y%
    Sleep %rand%
    }
    
    Pause:
    pause
    return
    Last edited by JackLinks; 06-21-2012 at 11:31 PM.

  7. #127
    vtsimple's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks! ill test this out hopefully it works for me too

  8. #128
    sp0t's Avatar Sergeant Major
    Reputation
    41
    Join Date
    May 2012
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Jack, your tweak is working great so far. Thanks for this

  9. #129
    benogas's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a 37 inch monitor i play on, i have the resolution settings set to 1920x1080 both in game and on my screen. when i make the games as small as i can it just clicks off screen and isnt working slightly. any help would be great.

  10. #130
    mit's Avatar Active Member
    Reputation
    27
    Join Date
    Apr 2007
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone have this going on 1600x900 and if so, mind sharing the modified script?
    Mortui vivos docent. When you have eliminated the impossible, whatever remains, however improbable, must be the truth.

    Skype: tim.isaacs88

  11. #131
    JackLinks's Avatar Corporal
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by benogas View Post
    I have a 37 inch monitor i play on, i have the resolution settings set to 1920x1080 both in game and on my screen. when i make the games as small as i can it just clicks off screen and isnt working slightly. any help would be great.
    Check the OP. You need each client taking up half the screen.

  12. #132
    Dartan's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How are you guys able to get 2 Diablo3 screens on your desktop? I tried creating a shortcut and using -launch at the end of the string but it's not very stable.

  13. #133
    Sponge1547's Avatar Sergeant
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    same here he closes the right window after 5 min

  14. #134
    Daniel333's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone else ran into problem running the second client ?
    For some reason my second clients loading times are Extremely sluggish, i mean really Really slow. (5mins to load menu), but afterwards everything works great.
    And yes i'm running it as admin aswell.
    Last edited by Daniel333; 06-22-2012 at 02:00 AM.

  15. #135
    sp0t's Avatar Sergeant Major
    Reputation
    41
    Join Date
    May 2012
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I found that adding a delay before the high level char resumes game to be working wonders for me. I have been running it flawless for the past hour without any hiccups.

    Also note that blizzard servers can mess the cycle up.

Page 9 of 20 FirstFirst ... 5678910111213 ... LastLast

Similar Threads

  1. Replies: 72
    Last Post: 06-27-2012, 02:08 AM
  2. [AHK][1920x1080] ZK 1mil XP/hr AFKable!
    By 08449 in forum Diablo 3 Guides
    Replies: 301
    Last Post: 06-26-2012, 12:06 PM
  3. (lvl 78+)Train weapon skill inside instance AFKable & no pvp
    By gooofy in forum World of Warcraft Exploits
    Replies: 34
    Last Post: 02-20-2009, 04:25 PM
  4. Auto prospecting! AHK!
    By Speakerwire in forum World of Warcraft Guides
    Replies: 7
    Last Post: 01-05-2009, 03:38 PM
All times are GMT -5. The time now is 01:08 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