diff options
author | Fate <fate-tmw@googlemail.com> | 2009-05-30 12:18:30 +0000 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2009-05-30 12:18:30 +0000 |
commit | f17c823d6f91ae535ebcadd8b5b369efea09b772 (patch) | |
tree | de58cdc249b70e95790f8c4eb48668d990f39e90 /npc/items/purification_potion.txt | |
parent | ba376b018e2a05412ae037d4dc976892e61cd088 (diff) | |
download | serverdata-f17c823d6f91ae535ebcadd8b5b369efea09b772.tar.gz serverdata-f17c823d6f91ae535ebcadd8b5b369efea09b772.tar.bz2 serverdata-f17c823d6f91ae535ebcadd8b5b369efea09b772.tar.xz serverdata-f17c823d6f91ae535ebcadd8b5b369efea09b772.zip |
Misc. fixes to magic, mostly suggested/pointed out by Kess
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."; |