搜索：

            case goLith: {
                showIntro(c, "Effect/Direction3.img/goLith/Scene" + (c.getPlayer().getGender() == 0 ? "0" : "1"));
                break;
            }

替換：

            case goLith: {
                c.getPlayer().saveLocation(WORLDTOUR);
                showIntro(c, "Effect/Direction3.img/goLith/Scene" + (c.getPlayer().getGender() == 0 ? "0" : "1"));
                break;
            }

搜索：

                if (c.getPlayer().getMapId() == 104000000) {
                    c.getSession().write(UIPacket.IntroDisableUI(false));
                    c.getSession().write(UIPacket.IntroLock(false));
                    c.getSession().write(MaplePacketCreator.enableActions());
                    c.getSession().write(EtcPacket.MapNameDisplay(c.getPlayer().getMapId()));
                }


替換：

                if (c.getPlayer().getMapId() == 104000000) {
                    c.getSession().write(UIPacket.IntroDisableUI(false));
                if (c.getPlayer().getSavedLocation(WORLDTOUR) == 2010000) {
                    c.getSession().write(UIPacket.IntroLock(false));//關閉坐船動畫鎖屏
                    c.getPlayer().clearSavedLocation(WORLDTOUR); //刪除標記地圖
                    }
                    c.getSession().write(MaplePacketCreator.enableActions());
                    c.getSession().write(EtcPacket.MapNameDisplay(c.getPlayer().getMapId()));
                }

頁首：

import static server.maps.SavedLocationType.WORLDTOUR;