Satisfactory

Satisfactory

View Stats:
Seb Jun 21, 2020 @ 7:26am
AUTORUN ?!
Literally about to quit this game because of how bad it is for my forearms lmao. For some reason this game interferes with my Logitech Gaming Software and I can't seem to make a working autorun macro for it..............

Anybody know a wae ? Ty.
Originally posted by Ragnaman:
added sleep time of 0.2s, without it the user does not manage to release 'w' key after double tapping the 'w' key, so the script lightning fast understood to hold down 'w' key before user released it, now works fine.

~w::
if (A_PriorHotkey != "~w" or A_TimeSincePriorHotkey > 200)
{
KeyWait, w
return
}
Sleep, 200
Send, {lshift Down}
Send, {blind}{w Down}
KeyWait, s, D
Send, {w up}
Send, {lshift up}
return


(this is an autohotkey script: https://www.autohotkey.com/docs/AutoHotkey.htm )
(double tap 'w' key to autorun, hit 's' key to reset script)
< >
Showing 1-15 of 22 comments
Ragnaman Jun 21, 2020 @ 7:40am 
well, you could write an autohotkey script,
If you dont know how I can maybe help you out (and in turn actually help myself out because i want autorun as well).
Seb Jun 21, 2020 @ 8:02am 
Originally posted by Ragnaman:
well, you could write an autohotkey script,
If you dont know how I can maybe help you out (and in turn actually help myself out because i want autorun as well).
true, haven't taken the time to tbh. I know how to, not a pro but I could manage lol. You wanna make it or should I ? :D
Ragnaman Jun 21, 2020 @ 8:05am 
Originally posted by Seboli ^-^:
Originally posted by Ragnaman:
well, you could write an autohotkey script,
If you dont know how I can maybe help you out (and in turn actually help myself out because i want autorun as well).
true, haven't taken the time to tbh. I know how to, not a pro but I could manage lol. You wanna make it or should I ? :D
Im reading documentation, thinking of triggering it by shift+alt+w,
then the script would hold down shift + w key combination until any other key is pressed (or wasd),

hardest part is figuring out how to make the script run continuously until other keys are pressed, so reading into that.

EDIT: i think i will just wait until w or s key is pressed to stop the script, so that you can strafe and do other things while autorunning.
Last edited by Ragnaman; Jun 21, 2020 @ 8:11am
Seb Jun 21, 2020 @ 8:11am 
Originally posted by Ragnaman:
Originally posted by Seboli ^-^:
true, haven't taken the time to tbh. I know how to, not a pro but I could manage lol. You wanna make it or should I ? :D
Im reading documentation, thinking of triggering it by shift+alt+w,
then the script would hold down shift + w key combination until any other key is pressed (or wasd),

hardest part is figuring out how to make the script run continuously until other keys are pressed, so reading into that.
why shift+alt+w instead of just one key ? e.g. mouse5 ?
Ragnaman Jun 21, 2020 @ 8:14am 
Originally posted by Seboli ^-^:
Originally posted by Ragnaman:
Im reading documentation, thinking of triggering it by shift+alt+w,
then the script would hold down shift + w key combination until any other key is pressed (or wasd),

hardest part is figuring out how to make the script run continuously until other keys are pressed, so reading into that.
why shift+alt+w instead of just one key ? e.g. mouse5 ?

well, i want the script to be useful for anyone. Think shift+alt+w is too bad ? Hmm, maybe the script could be triggered by multiple inputs.
Last edited by Ragnaman; Jun 21, 2020 @ 8:14am
Ragnaman Jun 21, 2020 @ 8:16am 
then again i might as well just use shift+w, but not sure if then there is a conflict (as script start trigger is the same keys the script holds down).
Seb Jun 21, 2020 @ 8:17am 
Originally posted by Ragnaman:
then again i might as well just use shift+w, but not sure if then there is a conflict (as script start trigger is the same keys the script holds down).
that's a no-go. We wanna still be able to walk/sprint over short distances like a few meters without having to toggle on the script
Seb Jun 21, 2020 @ 8:18am 
Originally posted by Ragnaman:
Originally posted by Seboli ^-^:
why shift+alt+w instead of just one key ? e.g. mouse5 ?

well, i want the script to be useful for anyone. Think shift+alt+w is too bad ? Hmm, maybe the script could be triggered by multiple inputs.
people can just change whatever key we use to their desired one, but whatever really. shift+alt+w could work for me :)
Ragnaman Jun 21, 2020 @ 8:20am 
Originally posted by Seboli ^-^:
Originally posted by Ragnaman:
then again i might as well just use shift+w, but not sure if then there is a conflict (as script start trigger is the same keys the script holds down).
that's a no-go. We wanna still be able to walk/sprint over short distances like a few meters without having to toggle on the script
yeah true
Seb Jun 21, 2020 @ 8:22am 
Originally posted by Ragnaman:
Originally posted by Seboli ^-^:
that's a no-go. We wanna still be able to walk/sprint over short distances like a few meters without having to toggle on the script
yeah true
looks like I got it. I used XButton2 which is mouse5. Just replace it with whatever key(s) you like :)

*XButton2::
SprintToggle := !SprintToggle
If (SprintToggle)
{ Send, {lshift Down}
Send, {Blind}{w Down}
}
else
{ Send, {lshift up}
Send, {w up}
}
return
Last edited by Seb; Jun 21, 2020 @ 8:23am
Seb Jun 21, 2020 @ 8:22am 
tested and it works perfectly in game, turns on and off just right and doesn't mess anything up.
Ragnaman Jun 21, 2020 @ 8:24am 
Hey nice,
I am looking into double tapping 'w' key to enable autorun :D
but I can reuse your logic once script starts so thx
Last edited by Ragnaman; Jun 21, 2020 @ 8:26am
Seb Jun 21, 2020 @ 8:25am 
Originally posted by Ragnaman:
Hey nice,
I am looking into double tapping 'w' key to enable autorun :D
Oh that'd be even better haha :D Let me know if you get it to work, I'm taking a food break lel
glowpiPe Jun 21, 2020 @ 8:40am 
you don't have a keyboard or mouse with buttons you can rebind in the software? I have 6 macro buttons on my keyboard and 14 extra buttons on my mouse i could just bind to "click to toggle shift+w" Much easier to do it in the mouse/keyboard software then using ahk, which also might get you banned in some other games if you forget to turn it off
Seb Jun 21, 2020 @ 8:45am 
Originally posted by glowpiPe:
you don't have a keyboard or mouse with buttons you can rebind in the software? I have 6 macro buttons on my keyboard and 14 extra buttons on my mouse i could just bind to "click to toggle shift+w" Much easier to do it in the mouse/keyboard software then using ahk, which also might get you banned in some other games if you forget to turn it off
I use Logitech but Satisfactory seems to mess it up lol it works for every other game :/ Made a Satisfactory profile but can't get a macro to work at all
< >
Showing 1-15 of 22 comments
Per page: 1530 50

Date Posted: Jun 21, 2020 @ 7:26am
Posts: 22