summaryrefslogtreecommitdiff
path: root/npc/items
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2011-12-12 02:52:03 +0100
committerReid <reidyaro@gmail.com>2011-12-12 02:52:03 +0100
commit28caa31d156e06c346388711faa87a20b529664d (patch)
treefe38ec227d84b4d8b147e441d1f646b5155bc94a /npc/items
parentf6cbf58b4cf7d62f52d3d37627625220a533b0c0 (diff)
downloadserverdata-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/items')
-rw-r--r--npc/items/PoisonedWater.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/npc/items/PoisonedWater.txt b/npc/items/PoisonedWater.txt
index 6986e27ac..66e7280f3 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;
}