Sea of Thieves Sword Lunge AHK

Vindeta

Hello world!
Member
Hello world!
Member
Status
Offline
Joined
Feb 17, 2021
Messages
388
Reaction score
71
Hello everyone!

Today i present to you a pretty simple ahk script that features Jump Lunge
Numpad 0 to lunge, Ctrl+Numpad 1 to reload the script quickly if you want to make changes to timings.

The code itself
and instruction how to use:
First of all install the latest version of AutoHotKey - [autohotkey.com]
After that copy and paste the code below in a new txt file and save it as "something.ahk"
Then launch the game and follow these steps:
1. Activate script. By double-clicking on it or right click and "Open as AHK"
2. Open the game and enjoy!
3. Profits.

Code:
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
 
Numpad0::
Send {RButton down}
Sleep,100
Send {LButton down}
Sleep,500
Send {LButton up}
Send {RButton up}
Sleep,1450
Send {Space}
 
^Numpad1::
Sleep,250
Reload
 
Top