29 lines
601 B
JavaScript
29 lines
601 B
JavaScript
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) {
|
|
qm.sendNext("Some bats seems to accompany this tree wherever it goes. Creepy...");
|
|
qm.forceCompleteQuest();
|
|
} else if (status == 1) {
|
|
qm.dispose();
|
|
}
|
|
}
|
|
}
|
|
|
|
function end(mode, type, selection) {
|
|
qm.dispose();
|
|
} |