1
Gameplay / Rapid Fire - Left Click
« on: September 08, 2013, 05:40:01 am »
Hi,
So with a tiny bit of experimentation I found it was possible to have the carronade, mortor and traditionally click to fire weapons act like the gatling gun, flamer, etc which are click and hold to fire types of weapons.
The most universal way this can be done is through using software such as autohotkey which allows you to define your own global shortcuts.
For example this script enables the insert key to toggle rapid fire left click
Certain mouse drivers also support this type of integration.
So with a tiny bit of experimentation I found it was possible to have the carronade, mortor and traditionally click to fire weapons act like the gatling gun, flamer, etc which are click and hold to fire types of weapons.
The most universal way this can be done is through using software such as autohotkey which allows you to define your own global shortcuts.
For example this script enables the insert key to toggle rapid fire left click
Quote
Ins::SuspendFound at: http://www.autohotkey.com/board/topic/39855-rapidfire-left-click-script/
LButton::
Loop
{
SetMouseDelay 30
Click
If (GetKeyState("LButton","P")=0)
Break
}
Certain mouse drivers also support this type of integration.