From 29bb178e6ac12d8edb32b89c336d46178421bd83 Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Fri, 23 Jan 2009 11:26:10 +0000 Subject: Adjust purification potion to not work early --- npc/items/purification_potion.txt | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 npc/items/purification_potion.txt (limited to 'npc/items') diff --git a/npc/items/purification_potion.txt b/npc/items/purification_potion.txt new file mode 100644 index 00000000..9f3c7e5e --- /dev/null +++ b/npc/items/purification_potion.txt @@ -0,0 +1,36 @@ +// + +function script PurificationPotion { + set @PURIFICATIONPOTION, 733; + + if (isat("011-1.gat", 88,67)) + goto L_Wyara_Pond; + +L_NoUse: + message strcharinfo(0), "You don't know what to do with this."; + getitem @PURIFICATIONPOTION, 1; + close; + +L_Wyara_Pond: + set @Q_MASK, NIBBLE_2_MASK; + set @Q_SHIFT, NIBBLE_2_SHIFT; + set @Q_status, (QUEST_MAGIC2 & @Q_MASK) >> @Q_SHIFT; + + if (@Q_status < 1) + goto L_NoUse; + if (@Q_status == 2) + set @Q_status, 3; + if (@Q_status < 2) + set @Q_status, 3; + + message strcharinfo(0), "You pour the potion into the pond."; + + set QUEST_MAGIC2, + (QUEST_MAGIC2 & ~(@Q_MASK) + | (@Q_status << @Q_SHIFT)); + return; + +L_NoUse: + message strcharinfo(0), "You don't know what to do with this."; + return; +} -- cgit v1.2.3-60-g2f50