diff options
author | Reid <reidyaro@gmail.com> | 2011-12-12 02:52:03 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2011-12-12 02:52:03 +0100 |
commit | 28caa31d156e06c346388711faa87a20b529664d (patch) | |
tree | fe38ec227d84b4d8b147e441d1f646b5155bc94a /npc | |
parent | f6cbf58b4cf7d62f52d3d37627625220a533b0c0 (diff) | |
download | serverdata-28caa31d156e06c346388711faa87a20b529664d.tar.gz serverdata-28caa31d156e06c346388711faa87a20b529664d.tar.bz2 serverdata-28caa31d156e06c346388711faa87a20b529664d.tar.xz serverdata-28caa31d156e06c346388711faa87a20b529664d.zip |
Correct bracelet and knife item on item_db
Remove debug lines on PoisonedWater script.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/items/PoisonedWater.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/npc/items/PoisonedWater.txt b/npc/items/PoisonedWater.txt index 6986e27a..66e7280f 100644 --- a/npc/items/PoisonedWater.txt +++ b/npc/items/PoisonedWater.txt @@ -2,14 +2,12 @@ // Authors: // Alastrim, Vasily_Makarov, Reid // Description: -// Heal of 25hp and add 1/4 bad luck to be poisoned. +// Heal of 15hp and add 1/4 bad luck to be poisoned. function script usePoisonedWater { set @temp, rand(4); if (!@temp) sc_start sc_poison, 1, 50; - if (!@temp) message strcharinfo(0); if (@temp) itemheal 15, 0; - if (@temp) message strcharinfo(0); set @temp, 0; return; } |