diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-13 10:50:27 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-13 10:50:27 -0300 |
commit | 9bc174d2eb2e9352bfb83dba1ae58562d2b79724 (patch) | |
tree | bb289d8e443b6e171378aa8e23943e00e377f071 /conf | |
parent | 94b6c79691a7f9dea4cc86f703fb841afb1eedf4 (diff) | |
download | serverdata-9bc174d2eb2e9352bfb83dba1ae58562d2b79724.tar.gz serverdata-9bc174d2eb2e9352bfb83dba1ae58562d2b79724.tar.bz2 serverdata-9bc174d2eb2e9352bfb83dba1ae58562d2b79724.tar.xz serverdata-9bc174d2eb2e9352bfb83dba1ae58562d2b79724.zip |
Fix drops lifetime
Diffstat (limited to 'conf')
-rw-r--r-- | conf/map/battle/drops.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/conf/map/battle/drops.conf b/conf/map/battle/drops.conf index d37aba45..10d78ffe 100644 --- a/conf/map/battle/drops.conf +++ b/conf/map/battle/drops.conf @@ -34,18 +34,18 @@ item_auto_get: false // How long does it take for an item to disappear from the floor after it is dropped? (in milliseconds) -flooritem_lifetime: 60000 +flooritem_lifetime: 120000 // Grace time during which only the person who did the most damage to a monster can get the item? (in milliseconds) -item_first_get_time: 3000 +item_first_get_time: 15000 // Grace time during which only the first and second person who did the most damage to a monster can get the item? (in milliseconds) // (Takes effect after item_first_get_time elapses) -item_second_get_time: 1000 +item_second_get_time: 10000 // Grace time during which only the first, second and third person who did the most damage to a monster can get the item? (in milliseconds) // (Takes effect after the item_second_get_time elapses) -item_third_get_time: 1000 +item_third_get_time: 5000 // Grace time to apply to MvP reward items when the Most Valuable Player can't get the prize item and it drops on the ground? (in milliseconds) mvp_item_first_get_time: 10000 |