Links:
https://docs.google....JLdXZZVXc#gid=0
At ROF of 450 you could in theory rig a key macro to fire off LMB clicks 7.5 times per second. Which I believe is rather faster than I could personally achieve. You could sustain fire for 2.13 seconds which would use all 16 rounds. Combined with heatsink mod and/or Adrenhaline rush this could be sustained further. Or possibly Accuracy could be used to increase the potential ROF.
Using
http://www.autohotkey.com/download/
I have created the following script basically if you hold shift + left mouse button you get a shot off every 20ms It seems to work ok. Tested with Mattock with Turian soldier + marksman and its quite nice.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases
#Warn ; Recommended for catching common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
$LShift::
~$LButton:: ; Make the F1 key into a hotkey (the $ symbol facilitates the "P" mode of GetKeyState below).
; Since no number is specified with it, this is an infinite loop unless "break" or "return" is encountered inside.
while (GetKeyState("LButton","P") and GetKeyState("LShift","P"))
{
MouseClick , Left, , , 1, , D ; Click the left mouse button at the cursor's current position.
Sleep 10
MouseClick , Left, , , 1, , U
Sleep 10
}
return
Disclaimer: Use at your own risk. Suggest you read some
Here is a better script using Capslock as a toggle.
#NoEnv
#Warn
SendMode Input
SetWorkingDir %A_ScriptDir%
Toggle:=0
$Capslock::Toggle:=!Toggle
~$LButton::
while (GetKeyState("LButton","P") and Toggle)
{
MouseClick , Left, , , 1, , D
Sleep 10
MouseClick , Left, , , 1, , U
Sleep 10
}
return
Modifié par nepereta, 26 mars 2012 - 06:17 .





Retour en haut







