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.
10 lines
382 B
JavaScript
10 lines
382 B
JavaScript
function enter(pi) {
|
|
var mapobj = pi.getWarpMap(104000004);
|
|
if(pi.isQuestActive(21733) && pi.getQuestProgress(21733, 9300345) == 0 && mapobj.countMonsters() == 0) {
|
|
mapobj.spawnMonsterOnGroundBelow(Packages.server.life.MapleLifeFactory.getMonster(9300345), new java.awt.Point(0, 0));
|
|
}
|
|
|
|
pi.playPortalSound();
|
|
pi.warp(104000004, 1);
|
|
return true;
|
|
} |