diff options
Diffstat (limited to 'npc/012-1')
-rw-r--r-- | npc/012-1/flowerpentagram2.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/012-1/flowerpentagram2.txt b/npc/012-1/flowerpentagram2.txt index b7f6f99b..41fc2950 100644 --- a/npc/012-1/flowerpentagram2.txt +++ b/npc/012-1/flowerpentagram2.txt @@ -1,9 +1,9 @@ 012-1,143,70,0 script #FlowerPentagram2 NPC400,{ - if (OrumQuest >= 31) goto L_PlacedFifthFlower; + if (getq(MagicQuest_DarkMage) >= 31) goto L_PlacedFifthFlower; - if (OrumQuest > 20) goto L_PlacedSecondFlower; - if (OrumQuest == 20) goto L_SecondFlower; + if (getq(MagicQuest_DarkMage) > 20) goto L_PlacedSecondFlower; + if (getq(MagicQuest_DarkMage) == 20) goto L_SecondFlower; message strcharinfo(0), "There is something odd about this place."; end; @@ -35,7 +35,7 @@ L_Place: delitem "PurpleSummonFlower", 1; mes "Remembering what happened the last time, you take a careful look around. Everything's calm. You proceed to place the second flower."; mes "Sensing a certain tension build up around you, you can't help but feel alarmed."; - OrumQuest = 21; + setq(MagicQuest_DarkMage, 21); close2; areamonster "012-1", 140, 64, 146, 73, "", 1105, 2, "#FlowerPentagram2::OnSquirrelDeath"; areamonster "012-1", 140, 64, 146, 73, "", 1106, 2, "#FlowerPentagram2::OnMushroomDeath"; |