Reformat and clean up npc scripts

This commit is contained in:
P0nk
2021-09-09 23:35:02 +02:00
parent 0c1545f81d
commit d893309b4f
665 changed files with 19932 additions and 19046 deletions

View File

@@ -39,42 +39,40 @@ function start() {
}
function action(mode, type, selection) {
if (mode == -1) {
cm.dispose();
} else {
if (mode == 0 && status == 0) {
cm.dispose();
return;
}
if (mode == 1)
status++;
else
status--;
if (status == 0) {
if(cm.isEventLeader()) {
if(!cm.getEventInstance().isEventTeamTogether()) {
cm.sendOk("One or more instance team members is missing, please wait for them to reach here first.");
cm.dispose();
}
else if(cm.hasItem(4001106, 30)) {
qty = cm.getItemQuantity(4001106);
cm.sendYesNo("Splendid! You have retrieved " + qty + " #t4001106# from this run, now your team will receive the fair amount of EXP from this action. Are you ready to get transported out?");
}
else {
cm.sendOk("Your party cannot finish this PQ yet, as you have not reached the minimum of 30 #t4001106#'s in hand yet.");
cm.dispose();
}
}
else {
cm.sendOk("Let your party leader talk to me to end this quest.");
cm.dispose();
}
} else if(status == 1) {
cm.removeAll(4001106);
cm.getEventInstance().giveEventPlayersExp(50 * qty);
cm.getEventInstance().clearPQ();
cm.dispose();
}
if (mode == -1) {
cm.dispose();
} else {
if (mode == 0 && status == 0) {
cm.dispose();
return;
}
if (mode == 1) {
status++;
} else {
status--;
}
if (status == 0) {
if (cm.isEventLeader()) {
if (!cm.getEventInstance().isEventTeamTogether()) {
cm.sendOk("One or more instance team members is missing, please wait for them to reach here first.");
cm.dispose();
} else if (cm.hasItem(4001106, 30)) {
qty = cm.getItemQuantity(4001106);
cm.sendYesNo("Splendid! You have retrieved " + qty + " #t4001106# from this run, now your team will receive the fair amount of EXP from this action. Are you ready to get transported out?");
} else {
cm.sendOk("Your party cannot finish this PQ yet, as you have not reached the minimum of 30 #t4001106#'s in hand yet.");
cm.dispose();
}
} else {
cm.sendOk("Let your party leader talk to me to end this quest.");
cm.dispose();
}
} else if (status == 1) {
cm.removeAll(4001106);
cm.getEventInstance().giveEventPlayersExp(50 * qty);
cm.getEventInstance().clearPQ();
cm.dispose();
}
}
}