Using AHK scripts for automation in online games can lead to account bans if the software detects "unnatural" input patterns. Always use these tools responsibly and check the AutoHotkey v2 documentation for the most reliable coding practices. Beginner Tutorial | AutoHotkey v1

: If you are writing the AHK script yourself, use the IniRead command to pull these values into your code: autohotkey IniRead, Delay, wtf.ahk.cfg, General, ActionDelay Use code with caution. Copied to clipboard

; ========================================== ; WTF.AHK CONFIGURATION FILE ; ========================================== ; This file stores user preferences for the wtf.ahk script. ; Edit values below to customize your automation experience. [General] ; Toggle the main script on/off (1=On, 0=Off) Enabled=1 ; Delay in milliseconds between rapid actions ActionDelay=15 [Hotkeys] ; Use standard AHK syntax (e.g., ^ is Ctrl, ! is Alt, + is Shift) ; Trigger the "WTF" macro sequence MainTrigger=XButton1 ; Panic key to kill all running AHK processes KillSwitch=Esc [MouseSettings] ; Sensitivity for cursor tracking features (1-10) TrackingSensitivity=7 ; Enable auto-clicking when held (1=True, 0=False) AutoClick=1 [GameSpecific] ; Set window title to ensure script only runs in-game TargetWindow=Old School RuneScape ; Speed of equipment switching (lower is faster) SwitchSpeed=100 Use code with caution. Copied to clipboard How to use this file

: Copy the code above into a new text file and save it exactly as wtf.ahk.cfg .