Results 1 to 1 of 1
  1. #1
    l3g4cywulf
    l3g4cywulf is offline
    Guest
    Join Date
    2015 Dec
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Wink PW Pack open AutoHotkey script

    First, let me say this is my first post, so apologies if this has been done before.

    I have never liked having to repeatedly click to open packs especially on private servers. I also don't like the mouse-clicker scripts. I have been working on and improving this .ahk for a few months and would like to share:

    For set up drag your packs onto slots in the Fkeys, I use F5-F8, nut if you want to use any of to F1-F8 keys by all means make it work for you. You will also notice a ";" (semicolon) on the lines for F6-F8, those lines are just commented out. If you wish to use them just remove the ";".

    To start/stop the hotkey press F11 (chosen because PW client doesn't use this key)

    using this script you can also continue to play the game as long as you don't need the buttons your packs are on. Happy gaming!!
    Code:
    ===Begin===
    ;======================================   
    ; Written by Tad Peterson
    ;   
    ; This script is for opening packs, should 
    ; work on any PW server private or retail.
    ;
    ;======================================
    
    #MaxThreadsPerHotkey 5		; Do not change this, it will stop functioning.
    
    F11:: 						;Set button to start/stop script. I use F11 since it is not used in PWI.
    #MaxThreadsPerHotkey 2
    if toggle 
    {
    	toggle := false				; Do not change this section.
    	return
    }
    toggle := true
    Loop 
    {
    	if toggle
    		Sleep 500			; More can be added here if desired
    		SendInput {F5}		; Best to use SendInput and whatever button you choose.
    		Sleep 1000			; 1000 = 1 second, this is in miliseconds.
    		;SendInput {F6}		; If you want to not use a line add ";" at beginning of line.
    		;Sleep 1000
    		;SendInput {F7}
    		;Sleep 1000
    		;SendInput {F8}
    		Sleep 4500			
    	if not toggle
    		break
    }
    toggle := false
    Return
    ===End===
    Tried to attach the .ahk file and it wouldn't go, but it did take a .zip file.

    Please register or login to download attachments.


Similar Threads

  1. [max script] open and edit .mdatr files of metin2
    By Baso in forum Game Models and Graphic
    Replies: 2
    Last Post: 2015-06-26, 09:38 PM
  2. [Bot] AutoHotKey Metin2 Fishing bot
    By mizanyx in forum General Game Research
    Replies: 0
    Last Post: 2013-06-24, 02:04 AM
  3. Dragon Nest Autohotkey Anti-Afk Script
    By inesbrasil in forum Dragon Nest Bots, Hacks, Cheats
    Replies: 0
    Last Post: 2012-08-20, 03:26 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •