Making an event move to another event?

● ARCHIVED · READ-ONLY
Started by awesomeblueman 9 posts View original ↗
  1. Hello all!

    I'm trying to make it so an event will walk to an "exit" event, no matter where they are on the map. I know there is the "Move to Player" Movement in the Movement map, but is there a way to have the event "move to target event?" Any help would be awesome!!
  2. I've moved this thread to MV Support. Thank you.

  3. not by default

    you either need a pathfinding plugin or you'll need to manually set the correct route (or by implementing a minor path logic by event instead of plugin)
  4. Andar said:
    not by default

    you either need a pathfinding plugin or you'll need to manually set the correct route (or by implementing a minor path logic by event instead of plugin)
    Would you happen to have a recommended pathfinder plugin or know an example of the path logic by event?
  5. It's even easier than that.

    https://forums.rpgmakerweb.com/index.php?posts/849064

    under Pathfinding.

    If you want to use the location of an event rather than a specific x, y destination, use $gameMap.event(id).x, $gameMap.event(id).y instead of just x and y, obviously replacing id with the actual id of the event you want to move to.
  6. I used it for RPG Maker MZ

    Very Easy, take the Script:

    $gameMap.event(4).locate($gameMap.event(2).x, $gameMap.event(2).y);

    So can Event 4 jump to Event 2 for example. You dont need a Plug In
  7. @TidusMK, please refrain from necro-posting in a thread. Necro-posting is posting in a thread that has not had posting activity in over 30 days. You can review our forum rules here. Thank you.