Reformat and clean up portal scripts

This commit is contained in:
P0nk
2021-09-09 23:35:59 +02:00
parent d893309b4f
commit a78ca88a02
435 changed files with 2712 additions and 2287 deletions

View File

@@ -2,18 +2,19 @@
@Author: kevintjuh93
*/
function enter(pi) {
if (pi.isQuestStarted(21000)) {
//lol nexon does this xD
pi.teachSkill(20000017, 0, -1, -1);
pi.teachSkill(20000018, 0, -1, -1);
//nexon sends updatePlayerStats Stat.AVAILABLESP 0
pi.teachSkill(20000017, 1, 0, -1);
pi.teachSkill(20000018, 1, 0, -1);
//actually nexon does enableActions here :P
pi.playPortalSound(); pi.warp(914000200, 1);
return true;
} else {
pi.message("You can only exit after you accept the quest from Athena Pierce, who is to your right.");
return false;
}
if (pi.isQuestStarted(21000)) {
//lol nexon does this xD
pi.teachSkill(20000017, 0, -1, -1);
pi.teachSkill(20000018, 0, -1, -1);
//nexon sends updatePlayerStats Stat.AVAILABLESP 0
pi.teachSkill(20000017, 1, 0, -1);
pi.teachSkill(20000018, 1, 0, -1);
//actually nexon does enableActions here :P
pi.playPortalSound();
pi.warp(914000200, 1);
return true;
} else {
pi.message("You can only exit after you accept the quest from Athena Pierce, who is to your right.");
return false;
}
}