Files
sweetgum-server/scripts/reactor/5511001.js
ronancpl 8fab2a6e3e Reworked Singapore/Malaysia + warp fix
Reworked many aspects of the Malaysia/Singapore region (added DB data,
enabled Latanica & Scarga expedition, fixed maps). Fixed some issues
related with player warping.
2017-07-14 20:40:06 -03:00

15 lines
369 B
JavaScript

/* @Author SharpAceX
* 5511001.js: Summons Scarlion.
*/
function summonBoss() {
rm.spawnMonster(9420547,-238,636);
rm.changeMusic("Bgm09/TimeAttack");
rm.mapMessage(6, "Beware! The furious Scarlion has shown himself!");
}
function act() {
if (rm.getReactor().getMap().getMonsterById(9420547) == null) {
rm.schedule("summonBoss", 3200);
}
}