What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

happyfriet

Active Member
Joined
Jan 14, 2013
Messages
1,271
Reaction score
19
Is there still not an easy way to convert massive amount of currency at the vendor ? Like stacks at a time ?
If not, is there maybe something here to could help so that I don't have to click my mouse 5k times in a row ? :D

Cheers :p
 
Code:
; AutoHotkey Version: 1.x

; Language: English

; Platform: Win9x/NT ; Author: A.N.Other <[email protected]>

;

; Script Function:

; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)

;

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.

SendMode Input ; Recommended for new scripts due to its superior speed and reliability.

SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

$a::

SetDefaultMouseSpeed, 0

Loop

{

BlockInput, MouseMoveOff

if not GetKeyState("a", "P")

break

BlockInput, off

SendEvent {Control Down}

SendEvent {Click}

SendEvent {Control Up}

}

return
AHK script, hold "A" and be happy. I use mainly for faster trades when RMTding, but it works too for currency buying.
 
Awsome! Thank you :)

never used AHK before, but this makes life sooo easy :D
 
Last edited:
I'm using auto clicker fast as fuck too xD but i think ill use this ahk too :)
 
Last edited:
Back
Top