Fixed WK charges not overriding one another and some concurrency issues within MapleMap and EventInstanceManager. New feature: job level cap, limits EXP gain until job advancement is done. New tool: MapleQuestItemFetcher, searches through the server files for missing quest items and reports the results.
11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
importPackage(Packages.server.life);
|
|
|
|
function start(ms){
|
|
var mobId = 9300344;
|
|
var player = ms.getPlayer();
|
|
var map = player.getMap();
|
|
|
|
if(map.countMonster(mobId) == 0) {
|
|
map.spawnMonsterOnGroundBelow(MapleLifeFactory.getMonster(mobId), new java.awt.Point(680, 258));
|
|
}
|
|
} |