diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-10-10 15:03:50 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-10-10 15:03:50 -0300 |
commit | df0a935600cd37aa38c1fa3bdbde2fac1984368c (patch) | |
tree | 16ebdcfefabd2a770dd2dd2de37c1aed54fa59ab | |
parent | 391e0f58151a7b38f2761ae5d797ee97a16bdab1 (diff) | |
download | serverdata-df0a935600cd37aa38c1fa3bdbde2fac1984368c.tar.gz serverdata-df0a935600cd37aa38c1fa3bdbde2fac1984368c.tar.bz2 serverdata-df0a935600cd37aa38c1fa3bdbde2fac1984368c.tar.xz serverdata-df0a935600cd37aa38c1fa3bdbde2fac1984368c.zip |
Add SCFLAGs for drinks
-rw-r--r-- | db/re/item_db.conf | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index fd6b491d..e20395eb 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -711,7 +711,8 @@ item_db: ( Delay: 500 UseEffect: "EFFECT_HEAL" Script: <" - sc_start(SC_CONFUSION, 1800000, 1); // 30 minutes + // 30 minutes + sc_start(SC_CONFUSION, 1800000, 1, 10000, SCFLAG_NOAVOID|SCFLAG_FIXEDTICK); @min = 40; @max = 90; @delay = 5; @@ -899,7 +900,8 @@ item_db: ( Delay: 750 UseEffect: "EFFECT_HEAL" Script: <" - sc_start(SC_CONFUSION, 900000, 1); // 15 minutes + // 15 minutes + sc_start(SC_CONFUSION, 900000, 1, 10000, SCFLAG_NOAVOID|SCFLAG_FIXEDTICK); @min = 60; @max = 110; @delay = 8; |