diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-19 23:57:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-19 23:57:26 -0300 |
commit | 5d7dddbabf6b78e68d6270ab967b454c10e7f398 (patch) | |
tree | e2ea18f82b94159505eb437c797238618033c9a4 /npc/001-1 | |
parent | fc95fff35ac48c5eff4e663d1f7cbccfd530d1be (diff) | |
download | serverdata-5d7dddbabf6b78e68d6270ab967b454c10e7f398.tar.gz serverdata-5d7dddbabf6b78e68d6270ab967b454c10e7f398.tar.bz2 serverdata-5d7dddbabf6b78e68d6270ab967b454c10e7f398.tar.xz serverdata-5d7dddbabf6b78e68d6270ab967b454c10e7f398.zip |
Fix Bif IDs to finish Aeros EventMaster, fix minor error.
Diffstat (limited to 'npc/001-1')
-rw-r--r-- | npc/001-1/eventmaster.txt | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/npc/001-1/eventmaster.txt b/npc/001-1/eventmaster.txt index a9d95d213..2f58168bb 100644 --- a/npc/001-1/eventmaster.txt +++ b/npc/001-1/eventmaster.txt @@ -55,8 +55,8 @@ L_Spawn: "1x Golden/Night Scorpion, 2x Santa Slime, 5x Copper Slime", // 11 "(agr) 2x Fallen Guards", // 12 - "10x Clover Path, 5 groups of 5 random small Bifs", // 13 - "4 groups of 5 random Bifs + 1 group of 5 random Big Bifs"; // 14 + "10x Clover Path, 5 groups of 5 random Bifs", // 13 + "5x Bifs, 4 groups of 5 random Bifs"; // 14 switch (@menu) { case 1: @@ -128,14 +128,23 @@ L_Spawn: @log_spawns=@log_spawns+2; break; - //"10x Clover Path, 5 groups of 5 random small Bifs", // 12 - //"4 groups of 5 random Bifs + 1 group of 5 random Big Bifs"; // 13 + //"10x Clover Path, 5 groups of 5 random Bifs", // 13 + //"5x Bifs, 4 groups of 5 random Bifs"; // 14 case 13: spawner(l("Clover Field"), 1028, 10); + spawner(l("Mysterious Bif"), rand(1098,1118), 5); + spawner(l("Mysterious Bif"), rand(1098,1118), 5); + spawner(l("Mysterious Bif"), rand(1098,1118), 5); + spawner(l("Mysterious Bif"), rand(1098,1118), 5); + spawner(l("Mysterious Bif"), rand(1098,1118), 5); @log_spawns=@log_spawns+35; break; case 14: - spawner(l("Piou"), 1002, 20); + spawner(l("Bif"), 1058, 5); + spawner(l("Mysterious Bif"), rand(1098,1118), 5); + spawner(l("Mysterious Bif"), rand(1098,1118), 5); + spawner(l("Mysterious Bif"), rand(1098,1118), 5); + spawner(l("Mysterious Bif"), rand(1098,1118), 5); @log_spawns=@log_spawns+25; break; } |