Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.
Original Source
- Original title: Orange "Move Character To"
- Original author: Hudell
- Original date: October 24, 2015
- Source thread: https://forums.rpgmakerweb.com/threads/orange-move-character-to.46735/
- Source forum path: Game Development Engines > RPG Maker Javascript Plugins > JS Plugin Releases (RMMV)
Summary
Orange - Move Character To 1.0 Hudell Introduction This plugin adds a plugin command and a script call that you can use to move the player or an NPC to a specific position on the map, regardless of route
Archived First Post
Orange - Move Character To 1.0
Hudell
Introduction
This plugin adds a plugin command and a script call that you can use to move the player or an NPC to a specific position on the map, regardless of route
How to Use
First of all, activate the plugin on your plugin manager.
When you want to move an NPC, Create a new Move Route and add the following script call to it:
this.setDestination(x, y);
Make sure to replace x and y by the x and y position you want to move the character to.
You can add several destinations on the same move route and the character will go to all of them in order. Example:
this.setDestination(10, 10);
this.setDestination(10, 15);
this.setDestination(15, 15);
this.setDestination(15, 10);
Make sure to add those lines as 4 separate script calls, because if you don't, the character will go straight to the last position.
If you check the "Repeat" option of the move route, this event should now walk in a square route. If you stay on it's way, it will automatically walk around you.
Also check this other plugin that should make this one faster.
Plugin
Get it from here
License
Free for any game.
Downloads / Referenced Files
Log in to download
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadLicense / Terms Note
License Free for any game.
Creator Claims / Removal
If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.
Replies (0)
No replies yet.
0
replies
1
view
Topic Summary
Loading summary...