Reworked many aspects of the Malaysia/Singapore region (added DB data, enabled Latanica & Scarga expedition, fixed maps). Fixed some issues related with player warping.
15 lines
377 B
JavaScript
15 lines
377 B
JavaScript
/* @Author SharpAceX
|
|
* 5511000.js: Summons Targa.
|
|
*/
|
|
|
|
function summonBoss() {
|
|
rm.spawnMonster(9420542,-527,637);
|
|
rm.changeMusic("Bgm09/TimeAttack");
|
|
rm.mapMessage(6, "Beware! The furious Targa has shown himself!");
|
|
}
|
|
|
|
function act() {
|
|
if (rm.getReactor().getMap().getMonsterById(9420542) == null) {
|
|
rm.schedule("summonBoss", 3200);
|
|
}
|
|
} |