Added code support for Kites. Reviewed concurrent access issues with pet autopot. Addressed PlayerStorage issue where characters would not be properly deregistered from channel PlayerStorage in certain situations. Implemented harp quest (questid 3314) because of reasons. Added SFX to signalize KC/NLC subway departing/approaching. Changed traveling time values to work similarly to GMS. Properly developed the PlayerNPC feature in the source. Added autodeployable PlayerNPC system and Hall of Fame. Solved a glitch with NLC mayor's quiz questline that would allow a player to restart the quiz as many times one would see fit. Added a custom server flag that allows overwriting the ToT 999 mobs to a new value (technically it doesn't overwrite, rather sets the player at quest start with 999 - n credited mobs). Fixed permanent pets expiring after a while. Added code support for Cash Shop Surprise item. Reviewed login handler system as a whole, protecting many exposed flaws. Solved a bug with ULTRA_THREE_SNAILS sometimes taking wrong etc shell from inventory.
67 lines
2.1 KiB
JavaScript
67 lines
2.1 KiB
JavaScript
importPackage(Packages.tools);
|
|
|
|
var Orbis_btf;
|
|
var Train_to_Orbis;
|
|
var Orbis_docked;
|
|
var Ludibrium_btf;
|
|
var Train_to_Ludibrium;
|
|
var Ludibrium_docked;
|
|
var Orbis_Station;
|
|
var Ludibrium_Station;
|
|
|
|
//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() {
|
|
Orbis_btf = em.getChannelServer().getMapFactory().getMap(200000122);
|
|
Ludibrium_btf = em.getChannelServer().getMapFactory().getMap(220000111);
|
|
Train_to_Orbis = em.getChannelServer().getMapFactory().getMap(200090110);
|
|
Train_to_Ludibrium = em.getChannelServer().getMapFactory().getMap(200090100);
|
|
Orbis_docked = em.getChannelServer().getMapFactory().getMap(200000121);
|
|
Ludibrium_docked = em.getChannelServer().getMapFactory().getMap(220000110);
|
|
Orbis_Station = em.getChannelServer().getMapFactory().getMap(200000100);
|
|
Ludibrium_Station = em.getChannelServer().getMapFactory().getMap(220000100);
|
|
|
|
scheduleNew();
|
|
}
|
|
|
|
function scheduleNew() {
|
|
em.setProperty("docked", "true");
|
|
Orbis_docked.setDocked(true);
|
|
Ludibrium_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(Train_to_Ludibrium.getId());
|
|
Ludibrium_btf.warpEveryone(Train_to_Orbis.getId());
|
|
Orbis_docked.broadcastShip(false);
|
|
Ludibrium_docked.broadcastShip(false);
|
|
|
|
em.setProperty("docked","false");
|
|
Orbis_docked.setDocked(false);
|
|
Ludibrium_docked.setDocked(false);
|
|
|
|
em.schedule("arrived", rideTime); //The time that require move to destination
|
|
}
|
|
|
|
function arrived() {
|
|
Train_to_Orbis.warpEveryone(Orbis_Station.getId(), 0);
|
|
Train_to_Ludibrium.warpEveryone(Ludibrium_Station.getId(), 0);
|
|
Orbis_docked.broadcastShip(true);
|
|
Ludibrium_docked.broadcastShip(true);
|
|
scheduleNew();
|
|
}
|
|
|
|
function cancelSchedule() {
|
|
}
|