Fortnite Sprint Easier Topic is solved

Ask gaming related questions (AHK v1.1 and older)
Ian

Fortnite Sprint Easier

24 Apr 2018, 00:50

Hello,

Is there any way to make a hotkey for Fortnite that sprints when I click W?

My W on Fortnite is to move forward and Left Shift is my sprint but I want to combine my W to Sprint and Move Forward as well.
Rohwedder
Posts: 7630
Joined: 04 Jun 2014, 08:33
Location: Germany

Re: Fortnite Sprint Easier  Topic is solved

24 Apr 2018, 03:29

Hallo.
try:

Code: Select all

w::SendInput, {LShift Down}w{LShift Up}
Cakes
Posts: 23
Joined: 23 Apr 2018, 09:56

Re: Fortnite Sprint Easier

25 Apr 2018, 18:38

This is my run script for fortnite. It will autosprint when you hold w

Code: Select all

#IfWinActive Fortnite
w:: 
	Send {Shift down}{w down}
	KeyWait, w
	Send {Shift up}{w up}
Return
#IfWinActive
If you want it to toggle. it would be like this.

Code: Select all

w::
	KeyDown := !KeyDown
	If KeyDown
		Send {Shift down}{w down}
	Else
		Send  {Shift up}{w up}
Return

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 74 guests