Post Reply 
 
Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
MH 3rd PC Optimized Controlls without a controller
11-07-2014, 04:18 AM (This post was last modified: 11-07-2014 04:35 AM by fgeds.)
Post: #6
RE: MH 3rd PC Optimized Controlls without a controller
Does it actually work? i have not clicked on the .exe but the .ahk version does nothing more than redirecting mouse movements to "left" and "right". And controls.ini isnt needed. Will work with any. Whether or not it works, depends on too many things to say it with certainty. To bind triangle(assuming S) to lmb, Rbutton(assuming Q) to rmb and left-shift, paste this code to the second line of the script, so it looks like this (checked works for me)
Code:
CoordMode, Mouse, Screen

;pause this section
F10::Suspend

;binds S to LMB
LButton::
sendinput {S down}
sleep, 50
sendinput {S up}
return

;binds Q to RMB
RButton::
sendinput {Q down}
sleep, 50
sendinput {Q up}
return

;binds Q to left shift
LShift::
sendinput {Q down}
sleep, 50
sendinput {Q up}
return
F10 will pause. Changing "S" or "Q" to another key will make that another key be pressed. Generally i dont like longer autohotkey scripts filled with conditionals, bound to break somewhere during heavy button action, that is MH3rd.

youll probably will have to use f10, to launch ppsspp because mouse buttons become blocked heh.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: MH 3rd PC Optimized Controlls without a controller - fgeds - 11-07-2014 04:18 AM

Forum Jump: