Search found 6 matches

by Andretti
29 Nov 2022, 05:16
Forum: Ask for Help (v1)
Topic: Toggle right trigger on xbox one controller
Replies: 7
Views: 945

Re: Toggle right trigger on xbox one controller

The triggers are analog devices that cannot be set to act as hotkeys because they are not binary. You sample their state using GetKeyState() , where the key name is JoyZ . The nominal value when both are in released state is 50. The left trigger adds 1-50 to that value depending on how far it is pu...
by Andretti
28 Nov 2022, 18:35
Forum: Ask for Help (v1)
Topic: Toggle right trigger on xbox one controller
Replies: 7
Views: 945

Re: Toggle right trigger on xbox one controller

I do not have Xbox. Below is a general format that works on a keyboard. You may be able to adapt it. $x::Send % GetKeyState("x") ? "{x up}" : "{x down}" You might want to look at the other forum posts about Xbox, too. Thank you. But I can't find the correct designation for the xbox controller butto...
by Andretti
26 Nov 2022, 17:25
Forum: Ask for Help (v1)
Topic: Toggle right trigger on xbox one controller
Replies: 7
Views: 945

Toggle right trigger on xbox one controller

Hello.

I want RT on my xbox one controller to be on a toggle. So I tap it once and it remains held down until I tap it again. Can anyone please help me with the code?

Thank you.
by Andretti
20 Jul 2017, 11:42
Forum: Gaming Help (v1)
Topic: Change frequency auto click Topic is solved
Replies: 3
Views: 1154

Re: Change frequency auto click Topic is solved

Hallo, 1. Use one script, not two! q::Suspend $LButton:: While GetKeyState("LButton", "P") Click Return $e:: While GetKeyState("e", "P") Send, {e} Return 2. Learn AutoHotkey! Thank you. Now it works with only one hotkey to toggle. Are there any solutions for changing the frequency at which it auto ...
by Andretti
19 Jul 2017, 14:33
Forum: Gaming Help (v1)
Topic: Change frequency auto click Topic is solved
Replies: 3
Views: 1154

Change frequency auto click Topic is solved

Apparently some games can ban you if they detect inhuman inputs (such as 600 clicks/key strokes per second). I want to change the frequency at which autohotkey clicks to something reasonable such as 5 or 10. Along with the obvious thing I need to edit to further change the frequency. I am using this...

Go to advanced search