summaryrefslogtreecommitdiff
path: root/world/map/npc/017-1
diff options
context:
space:
mode:
authorJessica Tölke <jtoelke@mail.upb.de>2013-06-09 20:23:17 +0200
committerJessica Tölke <jtoelke@mail.upb.de>2013-06-09 20:23:17 +0200
commit8ac35610a416d3937ccf4b3b74a61622382e8162 (patch)
tree3d164dac261ab8db71c7ac1cdd9616004242e5e6 /world/map/npc/017-1
parenteab663dff8d2d0fb9506a373238c8ee26115da22 (diff)
downloadserverdata-8ac35610a416d3937ccf4b3b74a61622382e8162.tar.gz
serverdata-8ac35610a416d3937ccf4b3b74a61622382e8162.tar.bz2
serverdata-8ac35610a416d3937ccf4b3b74a61622382e8162.tar.xz
serverdata-8ac35610a416d3937ccf4b3b74a61622382e8162.zip
Add mob limit logic to the 5 pentagram spawns too.
Diffstat (limited to 'world/map/npc/017-1')
-rw-r--r--world/map/npc/017-1/flowerpentagram1.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/world/map/npc/017-1/flowerpentagram1.txt b/world/map/npc/017-1/flowerpentagram1.txt
index d0cda333..3815b179 100644
--- a/world/map/npc/017-1/flowerpentagram1.txt
+++ b/world/map/npc/017-1/flowerpentagram1.txt
@@ -23,6 +23,13 @@ L_FirstFlower:
goto L_Close;
L_Place:
+ set @localMonsterCount,
+ mobcount("017-1.gat", "#FlowerPentagram1::OnSquirrelDeath") +
+ mobcount("017-1.gat", "#FlowerPentagram1::OnScorpionDeath") +
+ 2; // the mobcount function has an offset of -1, so we add 2 to have the actual amount of monsters
+ if (@localMonsterCount > 2)
+ goto L_MonstersAlive;
+
if (countitem("OrangeSummonFlower") < 1)
goto L_NoFlower;
delitem "OrangeSummonFlower", 1;
@@ -46,6 +53,13 @@ OnScorpionDeath:
callfunc "MobPoints";
end;
+L_MonstersAlive:
+ mes "As you get closer to the place, you feel an unnerving presence.";
+ mes "The place has recently been used to summon something! And the beings are still near!";
+ next;
+ mes "You should get rid of them before attempting the summoning yourself.";
+ goto L_Close;
+
L_NoFlower:
mes "You don't have the flower with you. Where did you put it?";
mes "If you can't find it again, you'll have to tell Orum.";
@@ -62,5 +76,6 @@ L_PlacedFifthFlower:
goto L_Close;
L_Close:
+ set @localMonsterCount, 0;
close;
}