sweetgum83/scripts/quest/3941.js

102 lines
3.3 KiB
JavaScript
Raw Normal View History

2024-01-19 08:56:28 +00:00
/*
This file is part of the HeavenMS MapleStory Server
Copyleft (L) 2016 - 2019 RonanLana
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/>.
*/
/* Steal queen's silk
*/
function isTigunMorphed(ch) {
const BuffStat = Java.type('client.BuffStat');
return ch.getBuffSource(BuffStat.MORPH) == 2210005;
}
var status = -1;
function start(mode, type, selection) {
if (mode == -1) {
qm.dispose();
} else {
if (mode == 0 && type > 0) {
qm.dispose();
return;
}
if (mode == 1) {
status++;
} else {
status--;
}
if (status == 0) {
if (!isTigunMorphed(qm.getPlayer())) {
qm.sendNext("What's this? I can't simply give the Queen's silk to anyone, claiming they will hand it at once to the queen. Get out of my sights.");
status = 1;
return;
}
qm.sendNext("Tigun, what are you doing here?");
} else if (status == 1) {
if (!isTigunMorphed(qm.getPlayer())) {
qm.sendNext("What's this? I can't simply give the Queen's silk to anyone, claiming they will hand it at once to the queen. Get out of my sights.");
return;
}
qm.sendNext("The Queen wants her silk right now? Alright, I have them here. Hold on a moment.");
qm.forceStartQuest();
} else if (status == 2) {
qm.dispose();
}
}
}
function end(mode, type, selection) {
if (mode == -1) {
qm.dispose();
} else {
if (mode == 0 && type > 0) {
qm.dispose();
return;
}
if (mode == 1) {
status++;
} else {
status--;
}
if (status == 0) {
if (!isTigunMorphed(qm.getPlayer())) {
qm.sendNext("What's this? I can't simply give the Queen's silk to anyone, claiming they will hand it at once to the queen. Get out of my sights.");
qm.dispose();
return;
}
if (qm.canHold(4031571, 1)) {
qm.gainItem(4031571);
qm.sendNext("There you go. Please deliver to the queen as soon as possible, Tigun, she gets really mad if things get delayed.");
qm.forceCompleteQuest();
} else {
qm.sendNext("Hey, you're lacking space to hold this, man. I will stay with it while you arrange your backpack...");
}
} else if (status == 1) {
qm.dispose();
}
}
}