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.
11 lines
281 B
JavaScript
11 lines
281 B
JavaScript
var eventName = "Trains";
|
|
var toMap = 200090100;
|
|
|
|
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);
|
|
}
|
|
} |