I'm looking to do a feature that triggers when an event moves into a map region. Is this possible with this plugin using MV?
Viewing post in Collsion Altering Plugin[MV-MZ] comments
$gameMap.regionId( Math.round( $gameMap.event( ID ).x ), Math.round( $gameMap.event( ID ).y ) ) === REGION
The above code ran in a conditional branch will do what you want. :)
You will need to replace both instances of "ID" with the actual id of the evnet you want to get the coordinates of.
You will also need to replace "REGION" with the actual region id you want to e used. ^^