Properly developed the Marriage feature in the source. Added TRAVEL_RATE server flag, a modifier for the travel frequency rate. Corrected stance for players in 3rd party view when entering a map to work similarly as GMS. Fixed mobs spamming skills incoherently. Added code support for old GMS-like PQ NPCs, where party leaders just need to click once to start a new PQ. Implemented podium system for the Hall of Fame PlayerNPCs. Improved character load-out system, now using way less queries to the DB in the process. Fixed birthday field for accounts not being read correctly. Further implemented the incomplete yet-existing Scissors of Karma mechanic. Fixed Duey not propagating item flags when packaging an item. Added a custom buyback system. Refactored the character creation system, now offering support for Maple Life. Fixed some issues with the PlayerNPC positioning system. Added server flag allowing AP assignment for novices (beginners under level 11). Fixed Strategy Time (GPQ) announcement being sent twice to guilds in certain cases. Tweaked mount EXP system now awarding it accordingly with the amount of tiredness healed. Removed the randomness aspect of closeness gain when feeding the pet, now acting accordingly with amount of fullness gained. Fixed an exploit with Arwen script. Fixed travel-back from Florina forcefully sending players to Lith Harbor in certain situations. Thoroughly reviewed job skill questlines for Explorers and Aran. Localhost edit: removed MTS block in certain maps (useful for the buyback system). Localhost edit: removed party blocks for novices. Localhost edit: removed AP assigning block for novices. Localhost edit: removed speed cap. Localhost edit: removed Maker block popping up when inputting ATK gems on non-weapons.
89 lines
3.1 KiB
JavaScript
89 lines
3.1 KiB
JavaScript
/*
|
|
This file is part of the OdinMS Maple Story Server
|
|
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
|
Matthias Butz <matze@odinms.de>
|
|
Jan Christian Meyer <vimes@odinms.de>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation version 3 as published by
|
|
the Free Software Foundation. You may not use, modify or distribute
|
|
this program under any other version of the GNU Affero General Public
|
|
License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
importPackage(Packages.tools);
|
|
|
|
var Orbis_btf;
|
|
var Genie_to_Orbis;
|
|
var Orbis_docked;
|
|
var Ariant_btf;
|
|
var Genie_to_Ariant;
|
|
var Ariant_docked;
|
|
|
|
//Time Setting is in millisecond
|
|
var closeTime = 4 * 60 * 1000; //The time to close the gate
|
|
var beginTime = 5 * 60 * 1000; //The time to begin the ride
|
|
var rideTime = 5 * 60 * 1000; //The time that require move to destination
|
|
|
|
function init() {
|
|
closeTime = em.getTransportationTime(closeTime);
|
|
beginTime = em.getTransportationTime(beginTime);
|
|
rideTime = em.getTransportationTime(rideTime);
|
|
|
|
Orbis_btf = em.getChannelServer().getMapFactory().getMap(200000152);
|
|
Ariant_btf = em.getChannelServer().getMapFactory().getMap(260000110);
|
|
Genie_to_Orbis = em.getChannelServer().getMapFactory().getMap(200090410);
|
|
Genie_to_Ariant = em.getChannelServer().getMapFactory().getMap(200090400);
|
|
Orbis_docked = em.getChannelServer().getMapFactory().getMap(200000151);
|
|
Ariant_docked = em.getChannelServer().getMapFactory().getMap(260000100);
|
|
Orbis_Station = em.getChannelServer().getMapFactory().getMap(200000100);
|
|
|
|
scheduleNew();
|
|
}
|
|
|
|
function scheduleNew() {
|
|
em.setProperty("docked", "true");
|
|
Orbis_docked.setDocked(true);
|
|
Ariant_docked.setDocked(true);
|
|
|
|
em.setProperty("entry", "true");
|
|
em.schedule("stopEntry", closeTime); //The time to close the gate
|
|
em.schedule("takeoff", beginTime); //The time to begin the ride
|
|
}
|
|
|
|
function stopEntry() {
|
|
em.setProperty("entry","false");
|
|
}
|
|
|
|
function takeoff() {
|
|
Orbis_btf.warpEveryone(Genie_to_Ariant.getId());
|
|
Ariant_btf.warpEveryone(Genie_to_Orbis.getId());
|
|
Orbis_docked.broadcastShip(false);
|
|
Ariant_docked.broadcastShip(false);
|
|
|
|
em.setProperty("docked","false");
|
|
Orbis_docked.setDocked(false);
|
|
Ariant_docked.setDocked(false);
|
|
|
|
em.schedule("arrived", rideTime); //The time that require move to destination
|
|
}
|
|
|
|
function arrived() {
|
|
Genie_to_Orbis.warpEveryone(Orbis_Station.getId(), 0);
|
|
Genie_to_Ariant.warpEveryone(Ariant_docked.getId(), 1);
|
|
Orbis_docked.broadcastShip(true);
|
|
Ariant_docked.broadcastShip(true);
|
|
|
|
scheduleNew();
|
|
}
|
|
|
|
function cancelSchedule() {
|
|
} |