dude. this game is going to kill my mouse left click button. please for the love of god let us hold the button down to continue spawning units instead of rabid clicking like a crack addict. i dont want to have to buy a new mouse everytime i play this game!
Viewing post in Heroine Conquest comments
While I did not try the game, I feel you. Same problem with my mice. Always the button failing, even replaced it sometimes. They put the 1 cent cheaper switch in it, that is rated for less clicks.
I found two solutions to this.
First is the keyboard mouse in windows. If activated, you can push num pad 5 for mouseclick
Second is software to switch buttons any way you like. I use autohotkey, and that could even do a hold down a key to send left clicks while held down. very handy for games that do not allow reconfiguring keys as well.
If you use software, beware. Some might be detected as cheating software by some games. Though key remapping is usually not a problem, it is the same you can do with software shipped with your mouse or keyboard. If you have 5 mouse buttons, there is a need to make them usefull ;-)
A simple autofire would be this in ahk. ("Click" sends a left click). But you would lose the ability to do drag and drop and would accidentally do double clicks, if you put in on the left button itself. Better use an unused Mousebutton or a an unused key (just replace both "LButton" with "f" or "Space" or whatever). The winactive makes that one only work if the active window starts with the name Heroine (side effects include, that if the website you are browse starts the same, the remapping will occur there too)
#IfWinActive, Heroine LButton:: While GetKeyState("LButton", "P") { Click Sleep 200 } return #IfWinActive