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

Shout-Out

User Tag List

Page 11 of 20 FirstFirst ... 789101112131415 ... LastLast
Results 151 to 165 of 299
  1. #151
    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 bts0uth View Post
    Yeah, I think its my PC or internet lagging out after like 10 games in a row or something.
    My load screens are quick, I can use the script you posted with tight timers for like 10 minutes perfectly fine. And then randomly a load screen will take 20-30 seconds or more, and it just ruins everything.

    I have been using this since 5 minutes after the thread started btw, I have put more like 4-5 hours trying to get it to work but for whatever reason it just won't on my PC

    I already tried adding a bunch of sleeps last night, it works fine for 10-15 minutes and then a load screen comes up that takes 40 seconnds and theres nothing you can do about it.

    edit: gotta go to work, I will try the newest script and mess with it when I get back.
    I didnt mean any harm, the statement "Nothing works" was just a sight for sore eyes. That was all!

    I can't fix the script for random server issues and sudden long load times, You can edit the file so that it loops the script for 5 minutes, then takes a 1 minute break and then loop again. You still run the risk of lagging out while the script is running though and that will still screw you over.



    [AHK][1920x1080]  ZK 1mil XP/hr AFKable!
  2. #152
    t2beatme's Avatar Member
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    27
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I had problems with one window closing and one window getting max sized. Played around with various sleep timers as suggested in the discussion of this thread and the script works like a charm. It takes about 16 seconds per run. I use minimum graphic settings. If any of you are too lazy or want to check it out be my guest. Thx all of you for making this happen! ;-)

    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(101,431)
    MouseClick, left,  851,  359   		;invite
    RandSleep(501,731)
    MouseClick, left,  1780,  890  		;accept invite - If too fast, increase sleeptimer one rule above this
    ; This next click is needed when you don't leave game with lowlvl correctly, this happens ad random to me
    ; When script did leave the game like its supposed to, nothing happens.
    RandSleep(301,431)
    MouseClick, left,  401, 615  
    RandSleep(301,431) 
    MouseClick, left,  -607,  22   		;select window left
    RandSleep(401,631)
    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							;Waittime for walking to adria, if pressing esc to fast/slow adjust (Depends on movespeed)
    RandSleep(101,431)
    Send, {ESC}					  		;close conversation
    RandSleep(101,431)
    Send, {ESC}					  		;close quest complete panel
    RandSleep(101,431)
    Send, {ESC}					  		;open menu
    RandSleep(101,431)
    MouseClick, left,  474,  569  		;click leave game
    RandSleep(101,231)
    MouseClick, left,  -392,  144   	;select window left
    RandSleep(101,231)
    sleep, 1500
    }
    return								;restart script
    
    RandSleep(x,y) {
    Random, rand, %x%, %y%
    Sleep %rand%
    }
    
    Pause:
    pause
    return

  3. #153
    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)
    Great work man, Cheers+Rep,
    Last edited by KuRIoS; 06-22-2012 at 07:57 AM.

  4. #154
    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 t2beatme View Post
    I had problems with one window closing and one window getting max sized. Played around with various sleep timers as suggested in the discussion of this thread and the script works like a charm. It takes about 16 seconds per run. I use minimum graphic settings. If any of you are too lazy or want to check it out be my guest. Thx all of you for making this happen! ;-)
    Good job!

    A lot of people do not realise the timers are set to work on MY setup. So if you have a longer loading time then me your script will screw up.
    I'd advice everyone to do a few runs manually and use a stopwatch to time the loading and waiting times, that should net them the same result as it did for you!
    I'm glad you like it.

    Originally Posted by nav4321 View Post
    Great work man, Cheers+Rep, rep me back too <3
    Thank you!
    I will not rep anybody back just because they repped me though, rep is something that has to be earned. If i go around giving everybody rep that reps me the system would collapse!
    Last edited by 08449; 06-22-2012 at 06:29 AM.



  5. #155
    t2beatme's Avatar Member
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    27
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How did you guys set up your fps? I got 150 front + back

  6. #156
    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)
    30/30 is fine.



  7. #157
    zoubiey's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    43
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 08449 View Post
    Try changing the color of the pixelsearch. Use windowspy. Aim for the purple on the robe of Adria.
    Will try that later, thanks!

  8. #158
    darktic's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    10
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    AHK script 1440x900 mod by Darktic

    Hi...
    So: I have rewritten your script to work with 1440x900 resolution. I had bugs with your script, but i have modified it.
    It works as follow:
    The leecher is requesting party from the lvl 60 char, the lvl 60 char accepts request and leecher accepts partyinvite.
    lvl 60 resumes game and leaves it. leecher turns in Quest and leaves game. It worked the whole night flawless and my DH is lvl 60 now. At lvl 54 this morning i changed
    difficulty at Hell.

    I know the invite method is a littlebit funny, but i have made it so, because my second account have no friends in list exept my first account and therefor it will ALWAYS work.
    No bugs because online friends and so. Left the lvl 60 char, right the leecher. Start at the leecher“s window.
    [AHK][1920x1080]  ZK 1mil XP/hr AFKable!-ahk-1440x900-1-jpg[AHK][1920x1080]  ZK 1mil XP/hr AFKable!-ahk-1440x900-2-jpg

    This is how i setup my windows. Windows are resized to minimum at windowmode and attached to each corner.

    Code:
    ; Script by 08449, also known as Adessis
    ; Modified by darktic 1440x900
    ; 6/22/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(801,931)
    MouseClick, right,  630,  218   	;rightclick friend
    RandSleep(501,731)
    MouseClick, left,  691,  296   		;Request invite from friend
    RandSleep(501,731)
    MouseClick, left,  -292,  11   		;select window left
    RandSleep(501,731)
    MouseClick, left,  698,  540   		;accept request  
    RandSleep(401,531) 
    MouseClick, left,  1331,  541   	;accept invite
    RandSleep(401,531)
    MouseClick, left,  -493,  256  	 	;resume game
    Sleep, 4000                    		;Waittime before highlvl joins game - Time this yourself and adjust accordingly!
    RandSleep(401,531)
    Send, {ESC}                    		;open menu
    RandSleep(1001,2031)
    MouseClick, left,  397,  346   		;click leave game
    RandSleep(401,531)
    MouseClick, left,  339,  380   		;confirm leave
    Sleep, 500							;Wait timer to make sure highlvl left game - if not, increase sleeptimer
    RandSleep(401,531)
    MouseClick, left,  1075, 12   		;select window right
    ;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, 8, 28, 396, 213,0x1E2438, 4, fast
    RandSleep(201,367)
    MouseClick, left,  %Px%,  %Py%   	;click adria
    Sleep, 3500							;Waittime for walking to adria, if pressing esc to fast/slow adjust (Depends on movespeed)
    RandSleep(201,431)
    Send, {ESC}					  		;close conversation
    RandSleep(201,431)
    Send, {ESC}					  		;close quest complete panel
    RandSleep(201,431)
    Send, {ESC}					  		;open menu
    RandSleep(201,431)
    MouseClick, left,  402,  348  		;click leave game
    RandSleep(201,231)
    sleep, 2500
    }
    return								;restart script
    
    RandSleep(x,y) {
    Random, rand, %x%, %y%
    Sleep %rand%
    }
    
    Pause:
    pause
    return
    When this script is too slow, it can be modified. But because several lags, i made it a littlebit slower.
    Attached Files Attached Files
    Last edited by darktic; 06-22-2012 at 07:17 AM. Reason: because of several mistypes :)

  9. #159
    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 darktic View Post
    Hi...
    So: I have rewritten your script to work with 1440x900 resolution. I had bugs with your script, but i have modified it.
    It works as follow:
    The leecher is requesting party from the lvl 60 char, the lvl 60 char accepts request and leecher accepts partyinvite.
    lvl 60 resumes game and leaves it. leecher turns in Quest and leaves game. It worked the whole night flawless and my DH is lvl 60 now. At lvl 54 this morning i changed
    difficulty at Hell.

    I know the invite method is a littlebit funny, but i have made it so, because my second account have no friends in list exept my first account and therefor it will ALWAYS work.
    No bugs because online friends and so. Left the lvl 60 char, right the leecher. Start at the leecher“s window.
    [AHK][1920x1080]  ZK 1mil XP/hr AFKable!-ahk-1440x900-1-jpg[AHK][1920x1080]  ZK 1mil XP/hr AFKable!-ahk-1440x900-2-jpg

    This is how i setup my windows. Windows are resized to minimum at windowmode and attached to each corner.

    When this scipt is too slow, it can be modified. But because several lags, i made it a littlebit slower.
    Glad it's working for you !



  10. #160
    darktic's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    10
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes I never worked with this proggy, took a littlebit time to figure out how this works... but thx for helping me

  11. #161
    t2beatme's Avatar Member
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    27
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could someone tell me the exact reward for this quest in hell: exp + gold?

  12. #162
    Jexstorm's Avatar Private
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Try to run the script v. 1.1 (works), but after 7 or sometimes 12 times the left window with the highlvl char minimize and the script cannot go further. Its possible that I forgot one important fact, but I think I did everything right. If the reason is that my computer loads not fast enough which sleeptimes have to customize?

  13. #163
    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 t2beatme View Post
    Could someone tell me the exact reward for this quest in hell: exp + gold?
    hell, 20K XP, 600 gold.
    10K more experience then normal, 500 gold less then normal.



  14. #164
    t2beatme's Avatar Member
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    27
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jexstorm View Post
    Try to run the script v. 1.1 (works), but after 7 or sometimes 12 times the left window with the highlvl char minimize and the script cannot go further. Its possible that I forgot one important fact, but I think I did everything right. If the reason is that my computer loads not fast enough which sleeptimes have to customize?
    It is most likey because of the sleep timings. Check this thread there are some hints I used to fix mine. Or just watch closely were the clicks/actions are happening to fast or kinda on the edge and raise the sleep timer in the script.

  15. #165
    t2beatme's Avatar Member
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    27
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 08449 View Post
    hell, 20K XP, 600 gold.
    10K more experience then normal, 500 gold less then normal.
    Thx man. I hate that I can't give you any rep with my rep power of 0 .

    The script works great. I am smiling just by randomly checking my computer. The true enemy now are any kind of pop up messages and slow blizz servers.

Page 11 of 20 FirstFirst ... 789101112131415 ... 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 09:41 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