summaryrefslogtreecommitdiff
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
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.
-rw-r--r--db/item_db.txt4
-rw-r--r--npc/items/PoisonedWater.txt4
2 files changed, 3 insertions, 5 deletions
diff --git a/db/item_db.txt b/db/item_db.txt
index 247f67bf..4a181ebf 100644
--- a/db/item_db.txt
+++ b/db/item_db.txt
@@ -19,10 +19,10 @@
708, Tortugasshell, Tortugas shell, 0, 3, 100, 50, 35, , , , , , , , , , , 0, {}, {}, ,
709, Tortugastongue, Tortugas tongue, 0, 3, 25, 10, 5, , , , , , , , , , , 0, {}, {}, ,
1300, Usedshirt, Used shirt, 0, 5, 100, 25, 50, , 2, , , 0, 2, 512, , 0, , 0, {}, {}, ,
-1301, Sailortanktop, Sailor tank top, 0, 5, 2000, 220, 40, , 3, , , 0, 2, 512, , 0, , 0, {}, {}, ,
+1301, Sailortanktop, Sailor tank top, 0, 5, 2000, 250, 40, , 3, , , 0, 2, 512, , 0, , 0, {}, {}, ,
1302, Sailorshirt, Sailor shirt, 0, 5, 7500, 950, 75, , 4, , , 0, 2, 512, , 0, , 0, {}, {}, ,
1800, Boots, Boots, 0, 5, 1000, 150, 30, , 1, , , 0, 2, 64, , 0, , 0, {}, {}, ,
-2000, Bracelets Bracelets, 0, 5, 2000, 500, 30, , 2, , , , 2, 4, , 0, , 0, {}, {}, ,
+2000, Bracelets, Bracelets, 0, 5, 2000, 250, 30, , 1, , , 0, 2, 4, , 0, , 0, {}, {}, ,
2200, Usedshort, Used short, 0, 5, 80, 20, 35, , 2, , , 0, 2, 1, , 0, , 0, {}, {}, ,
2900, Bandana, Bandana, 0, 5, 500, 100, 13, , 1, , , 0, 2, 256, , 0, , 0, {}, {}, ,
3500, Knife, Knife, 0, 4, 50, 25, 50, 10, , , , 0, 2, 2, 1, 1, 1, 0, {}, {}, ,
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;
}