12-24-2013, 04:33 AM
Would you believe you can do that with events???
Here's a basic event code that can make a character move down-left or up-right: (and you set the trigger to 'player touch')
You'd have an event with this code on every navigatable step in your steps. Some concessions will be needed if you want to let the player move straight up from the top of the steps, down from the bottom most steps, or left/right from either or. But this should help without the need of a script.
Here's a basic event code that can make a character move down-left or up-right: (and you set the trigger to 'player touch')
Code:
@>Button Input Processing: [0025]
@>Conditional Branch: Variable [0025] == 2
@>Set Move Route: Player
: :$>Move Lower Left
@>
: Else
@>Conditional Branch: Variable [0025] == 4
@>Set Move Route: Player
: :$>Move Lower Left
@>
: Else
@>Conditional Branch: Variable [0025] == 6
@>Set Move Route: Player
: :$>Move Upper Right
@>
: Else
@>Conditional Branch: Variable [0025] == 4
@>Set Move Route: Player
: :$>Move Lower Left
@>
: Branch End
@>
: Branch End
@>
: Branch End
@>
: Branch End
@>
You'd have an event with this code on every navigatable step in your steps. Some concessions will be needed if you want to let the player move straight up from the top of the steps, down from the bottom most steps, or left/right from either or. But this should help without the need of a script.