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.
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
var status = -1;
|
|
|
|
function start() {
|
|
action(1, 0, 0);
|
|
}
|
|
|
|
function action(mode, type, selection) {
|
|
if(cm.isQuestStarted(3927)) {
|
|
cm.sendNext("If I had an iron hammer and a dagger, a bow and an arrow...");
|
|
cm.setQuestProgress(3927, 1);
|
|
}
|
|
|
|
cm.dispose();
|
|
} |