Files
sweetgum-server/scripts/npc/world0/2133004.js
ronancpl 6791a3d475 Client clean-up + PiratePQ Implementation
Major update on client packets, now properly making unseen killed
monsters not appear as residual on a player's client. Many updates
revolving the PiratePQ environment as well.
2017-04-12 15:32:55 -03:00

23 lines
404 B
JavaScript

var status = -1;
function start() {
action(1,0,0);
}
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();
}