Hired Merchant & Player shop fixes + Owl of Minerva
Thanks to BenjixD DietStory's dev team, many bugs found by them have been patched (pirate quests, missing drop data, fly command, etc). Implemented Owl of Minerva. Fixed many issues with Hired Merchant and Player Shops. Fixed an error with the slot checking system. Added Wish Tickets (circa-2006 GMS event) to be dropped on AmoriaPQ.
This commit is contained in:
16
scripts/map/onUserEnter/100000006.js
Normal file
16
scripts/map/onUserEnter/100000006.js
Normal file
@@ -0,0 +1,16 @@
|
||||
importPackage(Packages.server.life);
|
||||
|
||||
function start(ms){
|
||||
|
||||
if(ms.getQuestStatus(2175) == 1){
|
||||
var mobId = 9300156;
|
||||
var player = ms.getPlayer();
|
||||
var map = player.getMap();
|
||||
|
||||
if(map.getMonsterById(mobId) != null){
|
||||
return;
|
||||
}
|
||||
|
||||
map.spawnMonsterOnGroundBelow(MapleLifeFactory.getMonster(mobId), new java.awt.Point(-1027, 216));
|
||||
}
|
||||
}
|
||||
15
scripts/map/onUserEnter/677000001.js
Normal file
15
scripts/map/onUserEnter/677000001.js
Normal file
@@ -0,0 +1,15 @@
|
||||
importPackage(Packages.server.life);
|
||||
|
||||
function start(ms) {
|
||||
|
||||
var mobId = 9400612;
|
||||
var player = ms.getPlayer();
|
||||
var map = player.getMap();
|
||||
|
||||
if(map.getMonsterById(mobId) != null){
|
||||
return;
|
||||
}
|
||||
|
||||
map.spawnMonsterOnGroundBelow(MapleLifeFactory.getMonster(mobId), new java.awt.Point(461, 61));
|
||||
player.message("Marbas has appeared!");
|
||||
}
|
||||
Reference in New Issue
Block a user