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,25 +29,25 @@ function start() {
if (prev == null) {
var start = parseInt(eim.getProperty("entryTimestamp"));
var diff = Date.now() - start;
var points = 1000 - Math.floor(diff / (100 * 60));
if(points < 100) points = 100;
if (points < 100) {
points = 100;
}
cm.getGuild().gainGP(points);
}
eim.clearPQ();
}
else {
} else {
cm.sendOk("This is your final challenge. Defeat the evil lurking within the Rubian and return it to me. That is all.");
}
}
else {
} else {
cm.sendOk("This is your final challenge. Defeat the evil lurking within the Rubian and let your instance leader return it to me. That is all.");
}
}
else
} else {
cm.warp(990001100);
}
cm.dispose();
}