Made NPCs now work properly on multiworld system. Solved multiple issues regarding Player Shops not giving back items properly when owner exits. Added restriction on changing channels at FM rooms, preventing shop owner entering Cash Shop.
27 lines
586 B
JavaScript
27 lines
586 B
JavaScript
var status = -1;
|
|
|
|
function start(mode, type, selection) {
|
|
action(1, 0, 0);
|
|
}
|
|
|
|
function action(mode, type, selection) {
|
|
if (mode == 1) {
|
|
status++;
|
|
} else {
|
|
cm.dispose();
|
|
return;
|
|
}
|
|
if (status == 0) {
|
|
if (cm.isQuestStarted(28219)) {
|
|
cm.sendYesNo("Would you like to move to Valefor's Strolling Place?");
|
|
} else {
|
|
cm.sendOk("The entrance is blocked by a strange force.");
|
|
cm.dispose();
|
|
}
|
|
} else {
|
|
if(cm.haveItem(4032485, 1)) cm.gainItem(4032485, -1);
|
|
if(cm.haveItem(4001355, 1)) cm.gainItem(4001355, -1);
|
|
cm.warp(677000008,0);
|
|
cm.dispose();
|
|
}
|
|
} |