Added MagatiaPQ. Fixed a bug on Dojo where parties quitting the boss fight without completing until rest point couldn't not start Dojo again w/o reforming the party. Fixed issues with 2nd job NPC scripts. Reverted command layout to use "!" and "@" again.
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
var eventName = "AirPlane";
|
|
var toMap = 540010002;
|
|
|
|
function start(ms) {
|
|
var em = ms.getClient().getEventManager(eventName);
|
|
|
|
//is the player late to start the travel?
|
|
if(em.getProperty("docked") == "false") {
|
|
ms.getClient().getPlayer().warpAhead(toMap);
|
|
}
|
|
}
|