diff options
-rw-r--r-- | db/re/item_db.conf | 2 | ||||
-rw-r--r-- | npc/003-1/oldwell.txt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 3b62b512d..df7dc8499 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -2035,7 +2035,7 @@ item_db: ( // sc_start(SC_POISON, 600000, 0, 5000); // Usage: // sc_start(<effect type>, <ticks>, <value 1>{, <rate>, <flag>{, <GID>}}) - sc_start SC_POISON, 9000, 30, 6700; + sc_start SC_POISON, 9000, 0, 6700; @min = 18; @max = 40; @delay = 3; diff --git a/npc/003-1/oldwell.txt b/npc/003-1/oldwell.txt index b78a22c55..59042b3dc 100644 --- a/npc/003-1/oldwell.txt +++ b/npc/003-1/oldwell.txt @@ -12,14 +12,14 @@ if (.@count == 0) close; - .@empty = countitem("EmptyBottle"); + .@empty = countitem(EmptyBottle); if (.@empty < .@count) goto L_NotEnoughBottles; getinventorylist; inventoryplace BottleOfSewerWater, .@count; - delitem "EmptyBottle", .@count; + delitem EmptyBottle, .@count; getitem "BottleOfSewerWater", .@count; dispbottom("Eek, Sewer Water! What the?! Better not drink this!"); close; |