Someone had requested I post the macro I use for my JM6-DD on the forums. It's a 5x autocannon setup- I ran 6x for the longest time, switched to 5x one day and never went back.
You lose a bit of firepower but heat, ammo, and speed concerns go away!
To clarify, as requested: This is an Autohotkey script, downloadable from this site:
http://www.autohotkey.com/
Without further adue...
Quote
#MaxThreadsPerHotkey, 2
looping = 0
$3::
keywait, 3
looping := !looping
if (!looping)
Return
loop
{ If (!looping)
Break
send, {5 down}
sleep, 96
send, {4 down}
sleep, 96
send, {3 down}
sleep, 96
send, {2 down}
sleep, 96
send, {1 down}
sleep, 96
}
Send, {5 up}
Send, {4 up}
Send, {3 up}
Send, {2 up}
Send, {1 up}
return
This activates on hitting the 3 key and runs through a full cycle before stopping. The dwell of 96ms is calculated based off having the 5% weapon cooldown perk, otherwise I'd have it at about 101-102.
ENSURE YOU RUN AS ADMINISTRATOR OR IT WILL NOT WORK!
I can't take credit for creating the script, nor will I claim the post is original. I just know there's at least one lad looking for it under my name
-Dorn
Edited by Dorn, 02 May 2013 - 09:08 AM.