Hi all,

This plugin allows you to fast travel between different locations in your game. Fast travel points can be separated by category. It can handle as many fast travel points as you want, and it also allows you to set gold or item costs to use the travel (optional). You can also show/hide fast travel locations via plugin command.

Please see terms of use here: Terms of Use

Requires CGMZ Core plugin: CGMZ Core

Happy RPG Making!

StatusReleased
CategoryTool
PlatformsHTML5
Rating
Rated 5.0 out of 5 stars
(3 total ratings)
AuthorCasper Gaming
Made withRPG Maker
TagsRPG Maker
Average sessionA few minutes
LanguagesEnglish, Spanish; Latin America, Chinese
InputsKeyboard, Mouse, Gamepad (any), Touchscreen
LinksHomepage, Community, Patreon, YouTube

Download

Download NowName your own price

Click download now to get access to the following files:

Fast Travel
External

Development log

Comments

Log in with itch.io to leave a comment.

Hi, Casper! I just wanted to report a bug I found; when using this plugin alongside your Item Pop Up, it throws an error message when you click on a location to go anywhere; "Type Error: Cannot read property "id" of null."

This happens even in Fast Travel's demo, once I add the item pop up plugin. Before adding it, the Fast Travel works perfectly fine! 

Hi, this is actually a bug in Item Popup, not Fast Travel. I will fix this asap, thank you for the bug report. If you want to fix it yourself you can search for alias_CGMZItemPopup_GameParty_gainItem in CGMZ Item Popup's js file and replace the function with this:

const alias_CGMZItemPopup_GameParty_gainItem = Game_Party.prototype.gainItem;
Game_Party.prototype.gainItem = function(item, amount, includeEquip) {
    alias_CGMZItemPopup_GameParty_gainItem.apply(this, arguments);
    if(item && amount > 0) {
        const type = (DataManager.isItem(item)) ? "item" : (DataManager.isWeapon(item)) ? "weapon" : (DataManager.isArmor(item)) ? "armor" : "invalid";
        const id = item.id;
        if(this.CGMZItemPopup_shouldPop(id, type)) {
            $cgmzTemp.addItemPopupToQueue({type: type, id: id});
        }
    }
};

It works! You're a genius, thank you so much! ٩(^ᗜ^ )و ´-

I ran into a bug on the online demo: "

Error

Uncaught TypeError: Cannot read properties of null (reading 'scale')" when trying to fast travel to the first village.

(1 edit)

Hi, I am not able to reproduce this, it might be itch.io had temporary problems delivering an image or some other resource to you or your internet connection lost connection or something.

Does it allow custom images / 3d models for the fast travel image or is it just the base map

It shows a custom image.

I wanted to ask, which will be the next plugin to come out?

Hi,
It will most likely be the skill shop to be fully released. The next alpha plugin will be Battle Result Events as that received the most votes on my patreon poll.