diff options
Diffstat (limited to 'npc/055-1')
-rw-r--r-- | npc/055-1/flowerpentagram4.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/055-1/flowerpentagram4.txt b/npc/055-1/flowerpentagram4.txt index 86966c15..5b41e889 100644 --- a/npc/055-1/flowerpentagram4.txt +++ b/npc/055-1/flowerpentagram4.txt @@ -1,9 +1,9 @@ 055-1,141,89,0 script #FlowerPentagram4 NPC400,{ - if (OrumQuest >= 31) goto L_PlacedFifthFlower; + if (getq(MagicQuest_DarkMage) >= 31) goto L_PlacedFifthFlower; - if (OrumQuest > 26) goto L_PlacedFourthFlower; - if (OrumQuest == 26) goto L_FourthFlower; + if (getq(MagicQuest_DarkMage) > 26) goto L_PlacedFourthFlower; + if (getq(MagicQuest_DarkMage) == 26) goto L_FourthFlower; message strcharinfo(0), "Something is odd about this place."; end; @@ -39,7 +39,7 @@ L_Place: delitem "YellowSummonFlower", 1; mes "Worried about what will shift from the astral plane this time, you prepare yourself and put the flower in place."; mes "As expected, you feel the magical tension building up. They're coming."; - OrumQuest = 27; + setq(MagicQuest_DarkMage, 27); close2; areamonster "055-1", 133, 87, 144, 99, "", 1105, 1, "#FlowerPentagram4::OnSquirrelDeath"; areamonster "055-1", 133, 87, 144, 99, "", 1106, 1, "#FlowerPentagram4::OnMushroomDeath"; |