Reformat and clean up quest scripts

This commit is contained in:
P0nk
2021-09-09 23:36:54 +02:00
parent a78ca88a02
commit 3f43fe82d0
249 changed files with 4361 additions and 4247 deletions

View File

@@ -12,43 +12,43 @@ var status = -1;
function start(mode, type, selection) {
status++;
if (mode != 1) {
if(type == 1 && mode == 0)
status -= 2;
else{
qm.sendOk("You don't seem to follow instructions well. Come see me when you are ready.");
qm.dispose();
return;
}
}
if (status == 0)
qm.sendAcceptDecline("Now you'll be able to penetrate the spiny vine barrier of Mushroom Forest, but before that, #bMinister of Home Affairs#k wants to have a word with you. Please go see him immediately.");
else if (status == 1){
qm.forceStartQuest();
qm.sendOk("Good luck.");
} else if (status == 2){
qm.dispose();
}
if (mode != 1) {
if (type == 1 && mode == 0) {
status -= 2;
} else {
qm.sendOk("You don't seem to follow instructions well. Come see me when you are ready.");
qm.dispose();
return;
}
}
if (status == 0) {
qm.sendAcceptDecline("Now you'll be able to penetrate the spiny vine barrier of Mushroom Forest, but before that, #bMinister of Home Affairs#k wants to have a word with you. Please go see him immediately.");
} else if (status == 1) {
qm.forceStartQuest();
qm.sendOk("Good luck.");
} else if (status == 2) {
qm.dispose();
}
}
function end(mode, type, selection) {
status++;
if (mode != 1) {
if(type == 1 && mode == 0)
status -= 2;
else{
qm.dispose();
return;
}
}
if (status == 0)
qm.sendOk("I have been keeping up on your fabulour work. I am aware that you have successfully created the #bKiller Mushroom Spores#k, which penetrates through the unpenetrable barrier of the forest. Congratulations!");
else if (status == 1){
qm.forceCompleteQuest();
qm.gainExp(2500);
qm.sendOk("The problem now is to figure out how to enter the castle.");
} else if (status == 2) {
qm.dispose();
if (mode != 1) {
if (type == 1 && mode == 0) {
status -= 2;
} else {
qm.dispose();
return;
}
}
if (status == 0) {
qm.sendOk("I have been keeping up on your fabulour work. I am aware that you have successfully created the #bKiller Mushroom Spores#k, which penetrates through the unpenetrable barrier of the forest. Congratulations!");
} else if (status == 1) {
qm.forceCompleteQuest();
qm.gainExp(2500);
qm.sendOk("The problem now is to figure out how to enter the castle.");
} else if (status == 2) {
qm.dispose();
}
}