:x @ 1..999 actors in the party.
You don't really have to change your style, it's mainly just a matter of taste

Here is a snippet which allows you to restrict movement to tiles with a specific terrain tag:
http://paste-bin.com/view/ebcdfe7aJust put
<t> in the name of an event and it will be restricted to tiles of the terrain tag it starts on.
<t=4> prevents the event from moving onto tiles which do not have terrain tag 4.
<t=-2> prevents the event from moving onto tiles with terrain tag 2.
You can also restrict the movement of the player by using script calls:
$game_player.terrain_tag = 3 # Only allow movement to tiles with terrain tag 3
$game_player.terrain_tag = -5 # Prevent movement onto tiles with terrain tag 5
To remove the restriction set the terrain tag to 0:
$game_player.terrain_tag = 0You can also change the events if you want. ($game_
map.events[event_id])
@Seox: I am glad it was helpful ^^
*hugs*
- Zeriab