diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-29 21:05:20 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-29 21:05:20 -0300 |
commit | 4d3b2c5c8f6ace701bd843c610deca7b86dbb7c5 (patch) | |
tree | 438d9a82ce2ec1b455309ace638bdc896fe2cd2f /db | |
parent | c4e873ae7437f995aeaf1ee65f081f73cf59b473 (diff) | |
download | serverdata-4d3b2c5c8f6ace701bd843c610deca7b86dbb7c5.tar.gz serverdata-4d3b2c5c8f6ace701bd843c610deca7b86dbb7c5.tar.bz2 serverdata-4d3b2c5c8f6ace701bd843c610deca7b86dbb7c5.tar.xz serverdata-4d3b2c5c8f6ace701bd843c610deca7b86dbb7c5.zip |
Fix Saulc's share of pipeline errors
Diffstat (limited to 'db')
-rw-r--r-- | db/re/item_db.conf | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 518d5b11c..2009945e1 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -2029,7 +2029,13 @@ item_db: ( Delay: 450 UseEffect: "EFFECT_HEAL" Script: <" - sc_start2 SC_POISON, 1, 30, 6666; + // Read the documentation, Saulc + // Example: + // This will poison the invoking character for 10 minutes at 50% chance. + // 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; @min = 18; @max = 40; @delay = 3; |