source
Source for my MapleSolaxiaV2 (v83 MapleStory).
This commit is contained in:
13
scripts/map/onUserEnter/677000009.js
Normal file
13
scripts/map/onUserEnter/677000009.js
Normal file
@@ -0,0 +1,13 @@
|
||||
importPackage(Packages.server.life);
|
||||
|
||||
function start(ms) {
|
||||
spawnMob(251, -841, 9400613, ms.getPlayer().getMap());
|
||||
}
|
||||
|
||||
function spawnMob(x, y, id, map) {
|
||||
if(map.getMonsterById(id) != null)
|
||||
return;
|
||||
|
||||
var mob = MapleLifeFactory.getMonster(id);
|
||||
map.spawnMonsterOnGroudBelow(mob, new java.awt.Point(x, y));
|
||||
}
|
||||
Reference in New Issue
Block a user