Files
sweetgum-server/scripts/reactor/5511001.js
P0nk bcefd42093 Handle reactor scheduling outside of script
No longer need to make all invocations synchronized
2021-05-21 08:15:01 +02:00

10 lines
320 B
JavaScript

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