[MV] Parallel Worlds 2.0
About
Memorizing a position on the map.
It is possible for a character in the group to memorize the position of the map where he is currently. This must be done through a skill. specific.
1) Configure a database skill to be activated in the menu.
2) This skill should not work in the battle menu.
3) This skill must be configured to call a common event.
4) The common event must contain only the script call:
$gameParty.memorizePosition().
A map position memorized in this way is stored in the character itself. This means that each character can store a specific map position. The stored information is:
* MapId
* x coordinate
* y coordinate
* player direction
Remember the map position saved
It is possible to configure an skill to teleport the player to a previously memorized map position. This can be done as follows:
1) Configure the database skill to be activated in the menu.
2) This skill should not work in the battle menu.
3) This skill must be configured to call a common event.
4) Enter the tag in the skill's note field:
* skillId is the ability that was used for the character to memorize a position on the map.
5) The common event must contain only the script call:
$gameParty.rememberPosition().
Advanced Settings
Each character can memorize a position on the map by skill. This means that if the same character has two different skills that memorize positions, he can memorize two different positions.
There is no limit to how many positions a character can memorize. But for each different position you will need a different ability to memorize.