diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-25 10:18:39 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-25 10:18:39 -0300 |
commit | c2c2892dec22e197478cf12255f10a16a094e82b (patch) | |
tree | 61ffcb6f52990feb3f86ab7f72c94f0e754eccef | |
parent | 525e5a17d2497931c7f5bf3d02f1ffa26219dd31 (diff) | |
download | serverdata-c2c2892dec22e197478cf12255f10a16a094e82b.tar.gz serverdata-c2c2892dec22e197478cf12255f10a16a094e82b.tar.bz2 serverdata-c2c2892dec22e197478cf12255f10a16a094e82b.tar.xz serverdata-c2c2892dec22e197478cf12255f10a16a094e82b.zip |
Replace backbone function from plushroom and chagashroom
They no longer displace the respective haste and str potions
-rw-r--r-- | db/re/item_db.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 92229b481..5528dbda5 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -434,7 +434,7 @@ item_db: ( Delay: 1000 UseEffect: "EFFECT_HEAL" Script: <" - sc_start SC_ATTHASTE_POTION1, 15000, 5; + callfunc("SC_Bonus", 15, SC_ATTHASTE_POTION1, 5); @min = 30; @max = 60; @delay = 3; @@ -1887,7 +1887,7 @@ item_db: ( // SC_PLUSATTACKPOWER is not caught by client but works. // SC_STRUP is caught by client, but raises STR in a weird way. // SC_INCATKRATE works best of all ^.^ - sc_start SC_PLUSATTACKPOWER, 15000, 5; + callfunc("SC_Bonus", 15, SC_PLUSATTACKPOWER, 5); @min = 30; @max = 60; @delay = 3; |