25-10-2006, 01:17 AM
HandleKeyPresses handles all the pressing of keys in Mirage, I havn't opened it up, but I'm pretty sure it handles it there, since it handles what happens when you press enter to pick up an item and such.
[EDIT] Guess I was wrong. I finally stopped being lazy, and actually opened my source and looked in handlekeypresses, I will now look for the correct location.
[EDIT 2] I think it is this code:
In:
Though, I'm prolly wrong. Dunno.
[EDIT] Guess I was wrong. I finally stopped being lazy, and actually opened my source and looked in handlekeypresses, I will now look for the correct location.
[EDIT 2] I think it is this code:
Code:
If KeyCode = vbKeyControl Then
ControlDown = True
End If
In:
Code:
Sub CheckInput(ByVal KeyState As Byte, ByVal KeyCode As Integer, ByVal Shift As Integer)
Though, I'm prolly wrong. Dunno.