YANFLY ENGINE ACE - CALL EVENT

RPG Maker VX Ace

Call event is back from 2k, 2k3

  • YF
  • 12/15/2011 09:12 PM
  • 2480 views


Link to Script

This is a reproduced method from RPG Maker 2000 and RPG Maker 2003. It allows the game to call a page’s events as if it were a common event. These events can be drawn from any event on any map within the game.



call_event(event_id)
call_event(event_id, page_id)
call_event(event_id, page_id, map_id)

Replace event_id, page_id, and map_id with the ID’s of the actual events. To find out the event_id, double click the event to open up the event editor window. The ID should show up in the upper left corner. The page_id is the page the event is on. The first page is 1, not 0. The map_id can be found by opening the map properties window and it’ll show up in the title bar.

If the page ID is not present in the call event, the page will automatically be assumed to be page 1.

If the map ID is not present in the call event, the map the player is currently on will be used instead.

---

Original Blog Page