Search found 23 matches

by Cakes
28 Jan 2019, 11:08
Forum: Gaming Help (v1)
Topic: Can someone help me with a macro for Dead by Daylight?
Replies: 2
Views: 2609

Re: Can someone help me with a macro for Dead by Daylight?

Hey,

https://www.autohotkey.com/boards/viewtopic.php?f=18&t=42961
I'll warn you that I was banned from the game for using it. All I had was some toggle keys and some duplicated keys they don't offer in game. It makes me sad they don't offer options like this for people with disabilities.
by Cakes
08 Aug 2018, 08:40
Forum: Gaming Help (v1)
Topic: No "recoil" fortnite
Replies: 8
Views: 11232

Re: No "recoil" fortnite

Considering this thread has plenty of views, I'd imagine that this sort of script would be very sought after. Why not make a general template recoil script so these gamers have something to work off of? I'd imagine for many it's their first exposure to AHK, so it could be pinned to the top. 1) Grea...
by Cakes
03 Aug 2018, 13:00
Forum: Ask for Help (v1)
Topic: Global Toggle? Topic is solved
Replies: 3
Views: 1426

Re: Global Toggle? Topic is solved

How could I make toggle global? The problem I'm having is if I don't turn the toggle off before pressing another key, it keeps going. I want to ensure when another key is pressed it turns off any previously toggled keys. #MaxThreadPerHotKey 2 toggle := 0 *v:: toggle := !toggle if (toggle) ToolTip, ...
by Cakes
02 Aug 2018, 14:04
Forum: Ask for Help (v1)
Topic: Global Toggle? Topic is solved
Replies: 3
Views: 1426

Global Toggle? Topic is solved

How could I make toggle global? The problem I'm having is if I don't turn the toggle off before pressing another key, it keeps going. I want to ensure when another key is pressed it turns off any previously toggled keys. *v:: toggle:=toggle if (toggle) ToolTip, Blah else { Tooltip } while (toggle) {...
by Cakes
30 Jul 2018, 11:28
Forum: Gaming Help (v1)
Topic: [Fortnite] Move + Sprint Topic is solved
Replies: 22
Views: 15929

Re: [Fortnite] Move + Sprint Topic is solved

zxmperini wrote:then how exactly u guys walk??? :?:
crouch?

Always run has been added to the game. It's under settings.
by Cakes
28 Jul 2018, 12:29
Forum: Gaming Help (v1)
Topic: DBD (Dead by Daylight) Working Struggle and Wiggle Macros Topic is solved
Replies: 3
Views: 16414

Re: DBD (Dead by Daylight) Working Struggle and Wiggle Macros Topic is solved

You can turn toggle off by pressing either key. You may need to edit group policy in windows to show balloon tool tips. global toggle #MaxThreadsPerHotkey 2 *z:: toggle := !toggle if (toggle) ToolTip, Hook`nStruggle, 100, 150 while (toggle) { Send {Space} Sleep, 50 } ToolTip return *x:: toggle := !t...
by Cakes
06 Jul 2018, 18:06
Forum: Gaming Help (v1)
Topic: Fortnite Double pump Topic is solved
Replies: 4
Views: 2595

Re: Fortnite Double pump Topic is solved

It works good but I can't turn it off whenever I use it Here this changes it from a toggle to a hold. I found it worked better. #MaxThreadsPerHotkey 2 MButton:: While GetKeyState("MButton","P") { Gosub, Dpump } return #MaxThreadsPerHotkey 1 Dpump: { Send {4} Sleep, 800 Send {LButton} GoSub, Sprint ...
by Cakes
11 Jun 2018, 11:11
Forum: Gaming Help (v1)
Topic: [Fortnite] Move + Sprint Topic is solved
Replies: 22
Views: 15929

Re: [Fortnite] Move + Sprint Topic is solved

evilC wrote:You can get it one line shorter
~w::LShift
noice. I'm glad I learned a bit before you posted this. This is the correct answer for sure.
by Cakes
11 Jun 2018, 10:13
Forum: Gaming Help (v1)
Topic: Fortnite Double pump Topic is solved
Replies: 4
Views: 2595

Re: Fortnite Double pump Topic is solved

Ok, so there was some issue for sure. This is my working copy. Replace whatever keys you want. I'm looking forward to being thirsted by my own script. #IfWinActive Fortnite #MaxThreadsPerHotkey 2 MButton:: toggle := !toggle Loop { if !toggle break else Gosub, Dpump } return #MaxThreadsPerHotkey 1 Dp...
by Cakes
11 Jun 2018, 10:06
Forum: Gaming Help (v1)
Topic: [Fortnite] Move + Sprint Topic is solved
Replies: 22
Views: 15929

Re: [Fortnite] Move + Sprint Topic is solved

Hey All, I have learned a little more about AHK and with the help of some of the members, I was able to break the sprint down to 2 binds. I had issues with the KeyWait thread blocking other hotkeys. Here you go! #IfWinActive Fortnite ~w::Send {LShift down} ~w up::Send {LShift up} #IfWinActive I'm ad...
by Cakes
04 Jun 2018, 12:49
Forum: Ask for Help (v1)
Topic: KeyWait blocking other hotkeys Topic is solved
Replies: 3
Views: 1036

Re: KeyWait blocking other hotkeys Topic is solved

I think this is a good read for you: Why you should avoid while(GetKeyState("a", "P")) to detect release of key Wow, this is good to know. I had no idea about threads but this explains a lot. I was able to get it to work by splitting hotkeys between ~w and ~w up Besides that, using a toggle variabl...
by Cakes
04 Jun 2018, 10:48
Forum: Ask for Help (v1)
Topic: KeyWait blocking other hotkeys Topic is solved
Replies: 3
Views: 1036

Re: KeyWait blocking other hotkeys Topic is solved

I tried the changes below but it has the same problem.

Code: Select all

KeyWait, w 
to

Code: Select all

While GetKeyState("w", "P")
    Sleep -1
by Cakes
04 Jun 2018, 09:50
Forum: Ask for Help (v1)
Topic: KeyWait blocking other hotkeys Topic is solved
Replies: 3
Views: 1036

KeyWait blocking other hotkeys Topic is solved

Hey, I'm looking for some help. I have spent hours trying to figure out how to get around this. I have two hotkeys ~w and MButton. If w is down then the Mbutton hotkey works fine. However, If I press MButton then w, The script pauses until I release w. I thought it was the KeyWait but it still happe...
by Cakes
02 Jun 2018, 10:04
Forum: Gaming Help (v1)
Topic: Fortnite Double pump Topic is solved
Replies: 4
Views: 2595

Re: Fortnite Double pump Topic is solved

I'm trying to use a code in fortnite to Double pump the key bid is 'f' . Though it doesn't work when i jump or move only when i stand still, i guess this is because i'm pressing w,a,s,d,space,shift the same time as my key bind 'f'. So how would i incorporate this into my code: f:: lbutton_count++ I...
by Cakes
28 May 2018, 14:33
Forum: Gaming Help (v1)
Topic: [Fortnite] Move + Sprint Topic is solved
Replies: 22
Views: 15929

Re: [Fortnite] Move + Sprint Topic is solved

This thread seems really popular so I made another improvement to the script. I found if you shoot or build, it will cancel the sprint. I was able to correct this by re-applying the sprint if left click is pressed while w is still down. #IfWinActive Fortnite ;Auto sprint ~w:: Send {Shift down} KeyWa...
by Cakes
24 May 2018, 10:01
Forum: Gaming Help (v1)
Topic: [Fortnite] Move + Sprint Topic is solved
Replies: 22
Views: 15929

Re: [Fortnite] Move + Sprint Topic is solved

can someone tell me how to apply these hotkeys into the game? i never used macros or hotkeys before. thanks. Firstly download autohotkey. Now make a new autohotkey file and paste what I had written earlier in that script. Run the script and expect the instructed. Cheers! :D My pinky is really start...
by Cakes
15 May 2018, 06:38
Forum: Gaming Help (v1)
Topic: Evolve run script Topic is solved
Replies: 4
Views: 1398

Re: Evolve run script Topic is solved

I made a few improvements to prevent toggle getting out of sync. #IfWinActive ahk_exe Evolve.exe ;Toggle run on XButton1:: if !GetKeyState("w") Send {w down} return ;Secondary jump XButton2:: Send {Space down} KeyWait, Xbutton2 Send {Space up} return ;Toggle run off ~s:: if GetKeyState("w") Send {w ...
by Cakes
14 May 2018, 17:32
Forum: Gaming Help (v1)
Topic: [Fortnite] Move + Sprint Topic is solved
Replies: 22
Views: 15929

Re: [Fortnite] Move + Sprint Topic is solved

This is the script I made for fortnite. Thanks to all the people who posted here. #IfWinActive, Fortnite { *W:: SendInput, {Shift down}{W down} KeyWait, W SendInput, {Shift up}{W up} return F11:: Suspend, Toggle F12:: ExitApp } I improved the script. works much cleaner now #IfWinActive Fortnite ;Au...
by Cakes
14 May 2018, 17:25
Forum: Gaming Help (v1)
Topic: Binding "Left shift and w " for fortnite Topic is solved
Replies: 1
Views: 1221

Re: Binding "Left shift and w " for fortnite Topic is solved

Code: Select all

#IfWinActive Fortnite
;Auto sprint
~w:: 
		Send {Shift down}
		KeyWait, w
		Send {Shift up}
return
#IfWinActive
by Cakes
25 Apr 2018, 18:38
Forum: Gaming Help (v1)
Topic: Fortnite Sprint Easier Topic is solved
Replies: 2
Views: 1710

Re: Fortnite Sprint Easier Topic is solved

This is my run script for fortnite. It will autosprint when you hold w #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. w:: KeyDown := !KeyDown If KeyDown Send {Shift down}{w down} Else Send {Shi...

Go to advanced search