Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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?

(+1)

$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. ^^