Friday the 13th: The Game [ E Button HOLDER ]

Posts 110 of 10 · Page 1 of 1
Friday the 13th: The Game [ E Button HOLDER ]
I need a script that holds E for 7 sec, then pauses it for 3 sec, then starts holding it again for 7 sec. like forever.



I need it for farming.
Already got the auto repair AHK
I just need that script.
Quote Originally Posted by xXGhostXx1230 View Post
I need a script that holds E for 7 sec, then pauses it for 3 sec, then starts holding it again for 7 sec. like forever.



I need it for farming.
Already got the auto repair AHK
I just need that script.
Anyone ?
Why the hell you keep spamming the forum with threads like this? Google how to code a ahk...
Quote Originally Posted by An0m4ly_15 View Post
Why the hell you keep spamming the forum with threads like this? Google how to code a ahk...
Come on, just please tell me the script.

lazy to learn how to code
loop
{
send {e down}
sleep 7000
send {e up}
sleep 3000
}

Something like that for AHK, I'm sure someone will correct it.
Quote Originally Posted by mpgwhoop View Post
loop
{
send {e down}
sleep 7000
send {e up}
sleep 3000
}

Something like that for AHK, I'm sure someone will correct it.
Good, but let me edit it.

F3::

loop
{
send {e down}
sleep 7000
send {e up}
sleep 3000
}

F3 = the key to start that script.
Quote Originally Posted by mpgwhoop View Post
loop
{
send {e down}
sleep 7000
send {e up}
sleep 3000
}

Something like that for AHK, I'm sure someone will correct it.
Thanks for that script.
Really appreciate it.
wouldn't a setkeydelay work better? I'm assuming he wants it for breaking free of jason so a continual press/release is needed so a delay of say 1 milisecond between presses for 10 seconds would work better then the current press once wait 7 seconds and press again?

#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.

F3::

Loop, 30
{
send {e down}
SetKeyDelay, 0, 1
}

}


or if you want to just hold down F3

F3::

Loop, 30
{
send {e down}
SetKeyDelay, 0, 1
Return
}
Just a Question, sorry for off-topic.

Everyone who is using Steamcrack has problems with f13 ingame Voice Chat right?
Quote Originally Posted by hure1233 View Post
Just a Question, sorry for off-topic.

Everyone who is using Steamcrack has problems with f13 ingame Voice Chat right?
Yes sir.
Its annoying.
The guy just speaking to me, and im like: ........ xD
this needs to be solved

And I rather lose my clothing pack DLC, just to hear the others.
Posts 110 of 10 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?