Tool Hate Instruments mouse controls? Here is a way with keyboard!

AhmedAhmedEG

Terrarian
So I made an AutoHotkey script to do the the 6 sounds with the keys:- u,i,o,p,[,]

I compiled it to an exe so no need to download AutoHotkey, you need an 1080p or 768p monitor or you will have to manually change the coordinates in the script.

Here's The exe for 1080p monitors: Terraria Instruments Keybinder.exe

And here's the exe for 768p monitors: Terraria Instruments Keybinder 768p.exe



And her's the script if you want it:-



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



SendMode Event

SetMouseDelay, 25



u::

MouseMove, 960, 585, 0

Click

return



i::

MouseMove, 960, 645, 0

Click

return



o::

MouseMove, 960, 740, 0

Click

return



p::

MouseMove, 960, 845, 0

Click

return



[::

MouseMove, 960, 920, 0

Click

return



]::

MouseMove, 960, 1015, 0

Click

return
 
Back
Top Bottom