Author: Meâ„¢
Version: 1.0
This Mini-Tutorial was created as I have read quite some general support threads about: How can I stop the player from moving? Now, In RMXP there is a so super simple command for it.
Disable the movement
Instead of blocking the player in, setting his face lock on and putting him on an impassable tile, you can simply use the event code below. Hé! What happens? The player moves towards... himself. Yes, that is impossible. The player will be blocked (movement) until it is enabled.
Code:
@>[color=darkred]Set Move Route: Player[/color]
: [color=darkred]: $>Move toward Player[/color]
Enable the movement
To (re)-enable the players movement, you can simply use the event code below. This will unblock (movement) him, until you block it again...
Code:
@>[color=darkred]Set Move Route: Player[/color]
: [color=darkred]: $>Turn away from Player[/color]
Meâ„¢