I'm playing Apex and I want to use the single-fire using the Mwheeldown that auto-fires for me. But whenever I use the script I'm using now, it fucks up when I'm looting or scrolling through settings. Is there a way I can, for example, press the key "ALT" once and it will activate the WheelDown to fire and press "ALT" again so it becomes inactive? Like a pause and resume.
SendMode, Input
WheelDown::
Loop, 6
{
Send, {LButton Down}
Sleep, 20
Send, {LButton Up}
Sleep, 20
}
return
Need help activating and deactivating this script. Topic is solved
-
- Posts: 4
- Joined: 21 Aug 2019, 03:53
- Sir Teddy the First
- Posts: 94
- Joined: 05 Aug 2019, 12:31
- Contact:
Re: Need help activating and deactivating this script.
There you go:
The script is turned off by default, meaning you have to press the Alt-Key to activate it.
If you want to change this behaviour, just change "ScriptRunning := false" to "true".
Code: Select all
SendMode, Input
ScriptRunning:= false
Alt::
ScriptRunning := !ScriptRunning
return
#If ScriptRunning
WheelDown::
Loop, 6
{
Send, {LButton}
Sleep, 20
Send, {RButton}
Sleep, 20
}
return
#If
If you want to change this behaviour, just change "ScriptRunning := false" to "true".


-
- Posts: 4
- Joined: 21 Aug 2019, 03:53
Re: Need help activating and deactivating this script.
thanks brother slr
-
- Posts: 4
- Joined: 21 Aug 2019, 03:53
Re: Need help activating and deactivating this script.
@Sir Teddy the First
Hey bro, it's a bit late but whenever I use this it removes aiming down sights. When I right click for ADS and use the script it goes back to hipfire.
Hey bro, it's a bit late but whenever I use this it removes aiming down sights. When I right click for ADS and use the script it goes back to hipfire.
Re: Need help activating and deactivating this script. Topic is solved
@communitygarbage That's because the script sends right-click again.

-
- Posts: 4
- Joined: 21 Aug 2019, 03:53
Re: Need help activating and deactivating this script.
@Dumitas Ohhh, I fixed it. Thanks brother
Who is online
Users browsing this forum: CR3ALITY and 6 guests