Aran skill & mount quests + New player IDs + MapleSkillMakerFetcher
Aran skill and mount questlines fixed. Player ID starts counting from 20mil now, preventing clashes with map objects oid's (trying to solve the NPC disappearing issue). New tool: MapleSkillMakerFetcher. It compiles a SQL script file containing updated Maker data info from the inputted ItemMake.wz.xml. Updated Maker tables on the DB.
This commit is contained in:
23
scripts/portal/enterRider.js
Normal file
23
scripts/portal/enterRider.js
Normal file
@@ -0,0 +1,23 @@
|
||||
function enter(pi) {
|
||||
if(pi.isQuestStarted(21610) && pi.haveItem(4001193, 1) == 0) {
|
||||
var em = pi.getEventManager("Aran_2ndmount");
|
||||
if (em == null) {
|
||||
pi.message("Sorry, but the 2nd mount quest (Scadur) is closed.");
|
||||
return false;
|
||||
}
|
||||
else {
|
||||
if (em.getProperty("noEntry") == "false") {
|
||||
var eim = em.newInstance("Aran_2ndmount");
|
||||
eim.registerPlayer(pi.getPlayer());
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
pi.message("There is currently someone in this map, come back later.");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
pi.playerMessage(5, "Only attendants of the 2nd Wolf Riding quest may enter this field.");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user