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.
This commit is contained in:
@@ -22,5 +22,6 @@
|
||||
function act(){
|
||||
rm.changeMusic("Bgm09/TimeAttack");
|
||||
rm.spawnMonster(9420513, -146, 225);
|
||||
rm.getEventInstance().setIntProperty("boss", 1);
|
||||
rm.mapMessage(5, "As you wish, here comes Capt Latanica.");
|
||||
}
|
||||
@@ -2,10 +2,14 @@
|
||||
* 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.spawnMonster(9420542,-527,637);
|
||||
rm.changeMusic("Bgm09/TimeAttack");
|
||||
rm.mapMessage(6, "Beware! The furious Targa has shown himself!");
|
||||
rm.schedule("summonBoss", 3200);
|
||||
}
|
||||
}
|
||||
@@ -2,10 +2,14 @@
|
||||
* 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.spawnMonster(9420547,-238,636);
|
||||
rm.changeMusic("Bgm09/TimeAttack");
|
||||
rm.mapMessage(6, "Beware! The furious Scarlion has shown himself!");
|
||||
rm.schedule("summonBoss", 3200);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user