58 lines
817 B
Plaintext
58 lines
817 B
Plaintext
;**********************************
|
|
;*** Cheat code defined actions ***
|
|
;**********************************
|
|
|
|
{InputAction:FlyingMode
|
|
KeyJustPressed(B)
|
|
}
|
|
|
|
{InputAction:FlyingModeForward
|
|
KeyPressed(Up)
|
|
}
|
|
|
|
{InputAction:FlyingModeBackward
|
|
KeyPressed(Down)
|
|
}
|
|
|
|
{InputAction:FlyingModeRight
|
|
And
|
|
KeyPressed(Right)
|
|
KeyReleased(LeftCtrl)
|
|
}
|
|
|
|
{InputAction:FlyingModeLeft
|
|
And
|
|
KeyPressed(Left)
|
|
KeyReleased(LeftCtrl)
|
|
}
|
|
|
|
{InputAction:FlyingModeUp
|
|
KeyPressed(Q)
|
|
}
|
|
|
|
{InputAction:FlyingModeDown
|
|
KeyPressed(W)
|
|
}
|
|
|
|
{InputAction:FlyingModeStrafeRight
|
|
And
|
|
KeyPressed(LeftCtrl)
|
|
KeyPressed(Right)
|
|
}
|
|
|
|
{InputAction:FlyingModeStrafeLeft
|
|
And
|
|
KeyPressed(LeftCtrl)
|
|
KeyPressed(Left)
|
|
}
|
|
|
|
{InputAction:FlyingModeDoubleSpeed
|
|
KeyPressed(LeftShift)
|
|
}
|
|
|
|
{InputAction:MemoryStackLog
|
|
And
|
|
KeyPressed(LeftCtrl)
|
|
KeyJustPressed(A)
|
|
}
|