Multi World NPCs + patch on Player interactions
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.
This commit is contained in:
27
scripts/npc/9201130.js
Normal file
27
scripts/npc/9201130.js
Normal file
@@ -0,0 +1,27 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user