Hello guys I want to write a Lua Script thats repeating the codeblock below as long as I'm holding a specific key (best would be G-Key, but is not that important) and instantly stopps when I release the key. As a workaround I just made it that it repeats 6 times and stops, but thats not actually what I want.
Thank you very much!
if event == "G_PRESSED" and arg == 5 then
for i=1,6 do
if i == 1 then
end
PressKey("r")
Sleep(math.random(50, 100))
ReleaseKey("r")
Sleep(math.random(2300, 2450))
PressKey("r")
Sleep(math.random(50, 100))
ReleaseKey("r")
Sleep(math.random(100, 175))
if i == 6 then
OutputLogMessage("Finished!... ")
end
end
end
I assume you are using GHUB and having both a Logitech keyboard and a Logitech mouse (both devices are programmable via GHUB).
Step 1.
Make sure you're not using MouseButton#4 ("back") in the game.
If you don't use MB#4 in the game, just skip "Step 1".
If some action is assigned to MB#4 in the game, do the following:
(let assume the
F12
key is not currently used)bind
F12
to your physical MB#4bind the old action to
F12
instead of MB#4Now when you press physical MB#4, the game sees
F12
and activates your old action.Step 2.
Goto GHUB (mouse device, assignments section)
Unbind "Back" from MB#4 (if you have not done it already in Step 1)
Step 3.
Goto GHUB (keyboard device, assignments section, SYSTEM tab)
Bind "Back" to key G5
Step 4.
The script.
UPDATE:
Script for toggling G5: