AHK for inventory hold/toggle

Posts 16 of 6 · Page 1 of 1
AHK for inventory hold/toggle
Much the same way you AHK masterminds modded and implemented the fast ADS feature, is there any scripts that can turn the toggle inventory to hold. So when pressing the I button and inventory opens but closes when you release the I button.
isHeld = 0;

Tab::
If isHeld = 0;
Send {tab}
isHeld = 1;
Return

Tab Up::
If isHeld = 1;
Send {tab}
isHeld = 0;
Return
There you go.
Thanks so much for this , it does work as requested. It conflicts a little with other keys, for example if you are holding the sprint and hit the inventory key it returns to a toggle function. Great work though, thanks again.
Does anyone have something like that?


- - - Updated - - -

what code is this?
Posts 16 of 6 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?