diff options
Diffstat (limited to 'npc/items/purification_potion.txt')
-rw-r--r-- | npc/items/purification_potion.txt | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/npc/items/purification_potion.txt b/npc/items/purification_potion.txt index 85b07010..09a854bd 100644 --- a/npc/items/purification_potion.txt +++ b/npc/items/purification_potion.txt @@ -1,4 +1,4 @@ -// THis is the function to use the PurificationPotion +// This is the function to use the PurificationPotion function script usePurificationPotion { if (isat("011-1.gat", 88,67)) @@ -16,10 +16,8 @@ L_Wyara_Pond: if (@Q_status < 1) goto L_NoUse; - if (@Q_status == 2) - set @Q_status, 3; - if (@Q_status < 2) - set @Q_status, 3; + if (@Q_status <= 2) + set @Q_status, @Q_status + 1; message strcharinfo(0), "You pour the potion into the pond."; |