KEventual VX + ACE - Printable Version +- Save-Point (https://www.save-point.org) +-- Forum: Material Development (https://www.save-point.org/forum-8.html) +--- Forum: Scripts Database (https://www.save-point.org/forum-39.html) +---- Forum: RPGMaker VX/VXAce (RGSS2/3) Engines (https://www.save-point.org/forum-117.html) +---- Thread: KEventual VX + ACE (/thread-11458.html) |
KEventual VX + ACE - kyonides - 01-02-2025 KEventual VX + ACE
by Kyonides
Introduction This scriptlet of mine allows you to copy local or external events to the current map. It is quite easy to use. By the way, you can also delete them or restore them at will! And the best thing of all is that your new set of events will be right there waiting for you next them you enter that map! Without call the same setup event over and over again! Script Calls Note: You can use @event_x or @event_y for the current event's XY coordinates. Add a copy of an Event present on the Current Map: Code: copy_event(OtherMapID, EventID, NewEventID, NewX, NewY) Add a copy of an Event available on a Different Map: Code: add_event(OtherMapID, EventID, NewEventID, NewX, NewY) Delete any Event present on the Current Map: Code: delete_event(EventID) Restore any Event that was once present on the Current Map: Code: restore_event(EventID) Secondary Features Just some innocent error messages, that's all! Screenshots Terms & Conditions Free for use in ANY game. Due credit is mandatory. Mention this forum in your game credits. That's it! |