A few personal kbin.social userscripts: https://greasyfork.org/en/users/1113682-h2so4

  • 1 Post
  • 1 Comment
Joined 2Y ago
cake
Cake day: Jun 13, 2023

help-circle
rss

@derekabutton Definitely! I tested it out, but couldn’t get it to work in the first try, so took the lazy route and just hardcoded the sequence in.


Playing a lot of RDR2 for the first time. The minigame “Five Finger Filet” annoys the hell outta me. So wrote an AutoHotKey script for it. It goes about 12 fillets(?) per round.
Playing a lot of RDR2 for the first time. The minigame "Five Finger Filet" annoys the hell outta me. So wrote an AutoHotKey script for it. It goes about 12 fillets(?) per round. `[#NoEnv](https://kbin.social/tag/NoEnv) ; Recommended for performance and compatibility with future AutoHotkey releases. ; [#Warn](https://kbin.social/tag/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. keys := ["s", "d", "a", "s", "a"] SetKeyDelay, 0, 50 ^a:: While !(GetKeyState("x", "P")) { for key, val in keys { Send {w down} Sleep 50 Send {w up} Sleep 100 Send {%val% down} Sleep 50 Send {%val% up} Sleep 100 } }` Read Dead Redemption 2 Five Finger Fillet AutoHotKey script (change the keys array every round). Edit: Just realized hashtags work! [\#RDR2](https://kbin.social/tag/RDR2) [\#AutoHotKey](https://kbin.social/tag/AutoHotKey)
fedilink