Nihal quests + Reactor's mapitem detection + MapleQuestMesoFetcher
Improved quests and game progression in the Nihal Desert region. Reactors that uses map items now automatically detects those already on the ground after changing states. New tool: MapleQuestMesoFetcher. This tool parses the Quest.wz XML files, detecting and reporting quest ids from quests that does not properly checks for mesos to take from the player before completing the quest.
This commit is contained in:
32
scripts/npc/MagatiaPassword.js
Normal file
32
scripts/npc/MagatiaPassword.js
Normal file
@@ -0,0 +1,32 @@
|
||||
var status;
|
||||
|
||||
function start(){
|
||||
status = -1;
|
||||
action(1, 0, 0);
|
||||
}
|
||||
|
||||
function action(mode, type, selection){
|
||||
if(mode == -1 || (mode == 0 && status == 0)){
|
||||
cm.dispose();
|
||||
return;
|
||||
}
|
||||
else if(mode == 0)
|
||||
status--;
|
||||
else
|
||||
status++;
|
||||
|
||||
if(status == 0){
|
||||
cm.sendGetText("The door reacts to the entry pass inserted. #bPassword#k!");
|
||||
}
|
||||
else if(status == 1){
|
||||
if(cm.getText() == cm.getStringQuestProgress(3360, 0)){
|
||||
cm.setQuestProgress(3360, 1, 1);
|
||||
cm.warp((cm.getMapId() == 261010000) ? 261020200 : 261010000, "secret00");
|
||||
}
|
||||
else {
|
||||
cm.sendOk("#rWrong!");
|
||||
}
|
||||
|
||||
cm.dispose();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user