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

@@ -29,37 +29,38 @@ function start() {
function action(mode, type, selection) {
if (mode != 1) {
if (mode == 0)
if (mode == 0) {
cm.sendOk("Alright, see you next time.");
}
cm.dispose();
}
else {
} else {
status++;
if (cm.getPlayer().getMapId() == 682000000) {
if (status == 0) {
if (selection == 0)
if (selection == 0) {
cm.sendYesNo("Would you like to return back to #bcivilization#k? The fee is " + fee + " mesos.");
}
} else if (status == 1) {
if(cm.getMeso() >= fee) {
if (cm.getMeso() >= fee) {
cm.gainMeso(-fee);
cm.warp(600000000);
} else {
cm.sendOk("Hey, what are you trying to pull on? You don't have enough meso to pay the fee.");
}
cm.dispose();
}
} else {
if (status == 0) {
cm.sendYesNo("Would you like to go to the #bHaunted Mansion#k? The fee is " + fee + " mesos.");
} else if (status == 1) {
if(cm.getMeso() >= fee) {
if (cm.getMeso() >= fee) {
cm.gainMeso(-fee);
cm.warp(682000000, 0);
} else {
cm.sendOk("Hey, what are you trying to pull on? You don't have enough meso to pay the fee.");
}
cm.dispose();
}
}