Files
sweetgum-server/scripts/npc/world0/2133004.js
ronancpl 7863994a13 Clean-up Patch
Bug correction on some quests.
2017-04-04 17:14:20 -03:00

19 lines
363 B
JavaScript

var status = -1;
function action(mode, type, selection) {
if (mode == 1) {
status++;
} else {
status--;
}
switch(cm.getPlayer().getMapId()) {
case 930000500:
if (!cm.haveItem(4001163)) {
cm.sendNext("Get me the Purple Stone of Magic from here.");
} else {
cm.warpParty(930000600);
}
break;
}
cm.dispose();
}