Files
sweetgum-server/scripts/reactor/5511000.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
299 B
JavaScript

/* @Author SharpAceX
* 5511000.js: Summons Targa.
*/
function act() {
const targaMobId = 9420542;
if (rm.getReactor().getMap().getMonsterById(targaMobId) == null) {
rm.summonBossDelayed(targaMobId, 3200, -527, 637, "Bgm09/TimeAttack", "Beware! The furious Targa has shown himself!");
}
}