sweetgum83/scripts/quest/21712.js
2024-01-19 03:56:28 -05:00

35 lines
1.6 KiB
JavaScript

var status = -1;
function start(mode, type, selection) {
if (mode == -1 || mode == 0 && type > 0) {
qm.dispose();
return;
}
if (mode == 1) {
status++;
} else {
if (status == 2) {
qm.sendNext("You still don't understand what's going on? I'll explain it to you again if you talk to me one more time.");
qm.dispose();
return;
}
status--;
}
if (status == 0) {
qm.sendNext("#t4032315#... #rThis puppet is making a strange noise#k. You can't hear it with your ears, of course, since it can only be heard by the #o1210102#s. I believe it's this noise that changed the personality of the #o1210102#s.");
} else if (status == 1) {
qm.sendAcceptDecline("The #o1210102#s that have been affected by the noise have turned cynical. They've started fighting the non-affected #o1210102#s, which has made all #o1210102#s prepare for combat. #bThe reason for all these changes in the #o1210102#s is this puppet#k! Do you understand?");
} else if (status == 2) {
qm.forceStartQuest();
qm.sendNext("I wonder what triggered this in the first place. There is no way this puppet was naturally created, which means someone planned this. I should keep an eye on the #o1210102#s.", 9);
} else if (status == 3) {
qm.sendPrev("#b(You were able to find out what caused the changes in the #o1210102#s. You should report to #p1002104# and deliver the information you've gathered.)#k", 2);
} else if (status == 4) {
qm.dispose();
}
}
function end(mode, type, selection) {
qm.dispose();
}