Improved Alliance invitations now using "invite popups" just like buddy, party and guild invites. Pet autopot now properly uses up pots from the inventory, fetching from other inventory slots when one place has been completely used up but the "stop criteria" hasn't been fulfilled yet. Pet autopot now properly detects pots with healing factor defined by the character's pool. Fixed old exploit with mineral/jewel crafters. Patched Doorway's questlines.
17 lines
412 B
JavaScript
17 lines
412 B
JavaScript
importPackage(Packages.server.life);
|
|
|
|
function start(ms) {
|
|
var pos = new java.awt.Point(461, 61);
|
|
var mobId = 9400612;
|
|
var mobName = "Marbas";
|
|
|
|
var player = ms.getPlayer();
|
|
var map = player.getMap();
|
|
|
|
if(map.getMonsterById(mobId) != null){
|
|
return;
|
|
}
|
|
|
|
map.spawnMonsterOnGroundBelow(MapleLifeFactory.getMonster(mobId), pos);
|
|
player.message(mobName + " has appeared!");
|
|
} |