Event OnControlDown(string control)
If control == "forward" || control == "Sprint"
debug.messagebox("Stage 1")
if playerRef.issprinting()
debug.messagebox("stage 2")
endif
endif
EndEvent
If you press your sprint key first then your move forward key you see "stage 1" but you never see the "stage 2" message.
But If you press your forward key first then your sprint key you then see the "stage 2" message.
How am I going to know for sure that the player just started sprinting?