[AHK] Infinite ZK script as of June 29 (1 pc, 2 clients) menu

User Tag List

Page 2 of 15 FirstFirst 123456 ... LastLast
Results 16 to 30 of 217
  1. #16
    Batch's Avatar Sergeant
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Darknight48458 View Post
    im having an issue, ive opened notepad, pasted the code saved as whatever.ahk, ran autohotkey after having all the correct setups through diablo, click the left window, run the script.. and everything just sits there ><
    press f1 to start. f2 to pause

    [AHK] Infinite ZK script as of June 29 (1 pc, 2 clients)
  2. #17
    Darknight48458's Avatar Active Member
    Reputation
    19
    Join Date
    Apr 2008
    Posts
    130
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    worked, ty, will update with how well it runs.

  3. #18
    Batch's Avatar Sergeant
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Same setup as OP with a couple of exceptions

    toggle friends = f
    close all open windows = o

    i added a couple of small things for less babysitting. if the resume button stays greyed out due to lag or whatever, it will recover during the next iteration.

    as always, you may need to play with timings to get it to work correctly for you

    Code:
    ; Script 
    
    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, f						   		;open friends
    RandSleep(101,431)
    MouseClick, left,  851, 358 ;invite
    ;Sleep, 500
    RandSleep(501,831) 
    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(501,831)
    MouseClick, left,  401, 615  
    
    
    RandSleep(501,701)
    Send, {ESC}                    		;open menu
    RandSleep(101,211)
    MouseClick, left,  474,  572   		;click leave game
    RandSleep(101,201)
    MouseClick, left,  422,  615   		;confirm leave
    Sleep, 3500							;Wait timer to make sure highlvl left game - if not, increase sleeptimer
    MouseClick, right,  460,  423   		;leave party
    RandSleep(401,531)
    MouseClick, left,  530,  587   		; confirm leave
    RandSleep(401,531)
    MouseClick, left,  400,  616  		; confirm leave again
    RandSleep(401,531)
    
    
    MouseClick, left,  -407,  476   		;select window left
    RandSleep(401,631)
    Send, {ESC}    
    RandSleep(401,631)
    Send, {ESC}                    		;open menu
    RandSleep(401,631)
    MouseClick, left,  474,  572   		;click leave game
    RandSleep(401,631)
    MouseClick, left,  422,  615   		;confirm leave
    RandSleep(2600,2800)
    MouseClick, left,  181,  415  	 	;resume game left
    RandSleep(150,300)
    
    
    MouseClick, left,  1121,  415  	 	;resume game right side
    RandSleep(100,200)
    Send, o					;close all windows right side   this is incase resume was greyed out on previous run
    RandSleep(100,200)
    MouseClick, left,  162, 415  	 	;resume game right side
    RandSleep(401,631)
    MouseClick, left,  -407,  476   		;select window left
    Sleep, 5100
    
    
    ;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(401,667)
    MouseClick, left,  %Px%,  %Py%   	;click adria
    Sleep, 3500							;Waittime for walking to adria, if pressing esc to fast/slow adjust (Depends on movespeed)
    ;RandSleep(401,631)
    Send, {ESC}					  		;close conversation
    RandSleep(801,1031)
    Send, {ESC}					  		;close conversation
    RandSleep(401,631)
    
    
    MouseClick, left,  -407,  476   		;select window left
    Sleep, 5000                    		;Waittime before highlvl joins game - Time this yourself and adjust accordingly!
    MouseClick, left,  1445,  574  	 	;resume game right side
    RandSleep(401,531)
    Send, {ESC}  
    sleep, 500
    
    
    
    
    MouseClick, left,  -407,  476   		;select window left
    RandSleep(401,631)
    sleep, 500
    }
    return								;restart script
    
    
    RandSleep(x,y) {
    Random, rand, %x%, %y%
    Sleep %rand%
    }
    
    
    Pause:
    pause
    return

  4. #19
    Darknight48458's Avatar Active Member
    Reputation
    19
    Join Date
    Apr 2008
    Posts
    130
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    BATCH's script:


    EDIT: Okay, fixed the issue with running around, i had to set my keyindings to what you stated, now im assuming im having a sleep /delay issue, it brings up my friends screen fast, and then points at the correct friend and shoots to the leecher window, but no invite was sent.. which sleep timer do i need to adjust?

    basically, i cannot get it to send the invite
    Last edited by Darknight48458; 06-29-2012 at 09:36 PM.

  5. #20
    Batch's Avatar Sergeant
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the first one. try 250,550

    Send, f ;open friends
    RandSleep(101,431)

  6. #21
    Darknight48458's Avatar Active Member
    Reputation
    19
    Join Date
    Apr 2008
    Posts
    130
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Batch View Post
    the first one. try 250,550

    Send, f ;open friends
    RandSleep(101,431)
    it still doesnt send an invite.

    It opens friends, points at friend, and thats it.. moves to the other screen and runs normally, it seems as if its not even right clicking the friend name to send the invite, just points at them and moves on.

  7. #22
    Qruz's Avatar Sergeant
    Reputation
    7
    Join Date
    May 2012
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm an idiot for criticizing the OP - I forgot to change the sleeptimer in the beginning of the script. Changed it from 500 to 1500. Works like charm.

  8. #23
    Darknight48458's Avatar Active Member
    Reputation
    19
    Join Date
    Apr 2008
    Posts
    130
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i still cannot get it to invite

  9. #24
    Batch's Avatar Sergeant
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Darknight48458 View Post
    it still doesnt send an invite.

    It opens friends, points at friend, and thats it.. moves to the other screen and runs normally, it seems as if its not even right clicking the friend name to send the invite, just points at them and moves on.
    its not supposed to right click. its supposed to click the square icon on the right side. this is the invite shortcut

  10. #25
    tofuzion'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)
    i'm trying to run the script and having problem my booster after resume game he always in The Terminus ... not in Town . anyone experience this issue ?? thanks

  11. #26
    Darknight48458's Avatar Active Member
    Reputation
    19
    Join Date
    Apr 2008
    Posts
    130
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tofuzion View Post
    i'm trying to run the script and having problem my booster after resume game he always in The Terminus ... not in Town . anyone experience this issue ?? thanks
    when you go to kill zk, and to enter the portal in the terminus, go to the bottom side to enter the portal, not the top, otherwise you get a checkpoint at Leah


    Originally Posted by Batch View Post
    its not supposed to right click. its supposed to click the square icon on the right side. this is the invite shortcut
    okay, it looks like its clicking just to the left of that shortcut button, not sure why, screen settings are all set as stated in original post.

  12. #27
    tofuzion'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)
    Thanks Darknight i been trying to fix this problem the past hours..

  13. #28
    tsoul's Avatar Active Member
    Reputation
    16
    Join Date
    Mar 2011
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Darknight48458 View Post
    okay, it looks like its clicking just to the left of that shortcut button, not sure why, screen settings are all set as stated in original post.
    Make sure the windows are as small as possible (and the correct 16:9 ratio) before u half-max them via the {WINDOWS}+{ARROW} key. If that doesn't work, then use window spy (part of ahk) to increase the x coord to the correct number

  14. #29
    Darknight48458's Avatar Active Member
    Reputation
    19
    Join Date
    Apr 2008
    Posts
    130
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tsoul View Post
    Make sure the windows are as small as possible (and the correct 16:9 ratio) before u half-max them via the {WINDOWS}+{ARROW} key. If that doesn't work, then use window spy (part of ahk) to increase the x coord to the correct number
    yeah, for some reason, they werent as small as possible before i window+arrow, which threw it off slightly, and i ran batch's profile and it got out of synch after about 5 runs, though, probably an issue on my end.

    EDIT: Also just encountered an issue where it closed out my "runner" window
    Last edited by Darknight48458; 06-29-2012 at 10:14 PM.

  15. #30
    tsoul's Avatar Active Member
    Reputation
    16
    Join Date
    Mar 2011
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Darknight48458 View Post
    EDIT: Also just encountered an issue where it closed out my "runner" window
    I think most of these problems are because i made my script with really tight timing, for the fastest runs possible. I can make a version which relaxes this a little if needed.

Page 2 of 15 FirstFirst 123456 ... LastLast

Similar Threads

  1. [Tutorial] [coding-CE] infinite mana script
    By dabnoj in forum Devilian Exploits|Hacks
    Replies: 0
    Last Post: 03-23-2016, 04:01 PM
  2. AHK nice cm script
    By mrdruids in forum Diablo 3 Bots and Programs
    Replies: 1
    Last Post: 09-05-2013, 10:12 AM
  3. Replies: 9
    Last Post: 07-12-2012, 02:21 PM
  4. [AHK] Infinite ZK script as of June 29 (1 pc, 2 clients)
    By tsoul in forum Diablo 3 Exploits
    Replies: 127
    Last Post: 07-02-2012, 01:52 PM
All times are GMT -5. The time now is 04:37 AM. 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