diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-04-10 09:03:09 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-04-10 09:03:09 -0300 |
commit | 207ed7b67d2c47e14ab78c744681b6c3f67a9d0e (patch) | |
tree | bbbf6ebaf960f7ba6e2348dbfcd97d70c3d42332 | |
parent | ee7ad93a1ebd36af21568cae37934d5edd3e4a12 (diff) | |
download | serverdata-207ed7b67d2c47e14ab78c744681b6c3f67a9d0e.tar.gz serverdata-207ed7b67d2c47e14ab78c744681b6c3f67a9d0e.tar.bz2 serverdata-207ed7b67d2c47e14ab78c744681b6c3f67a9d0e.tar.xz serverdata-207ed7b67d2c47e14ab78c744681b6c3f67a9d0e.zip |
Hercules Update
-rw-r--r-- | conf/map/battle/client.conf | 9 | ||||
-rw-r--r-- | conf/map/battle/feature.conf | 5 | ||||
-rw-r--r-- | db/constants.conf | 26 |
3 files changed, 35 insertions, 5 deletions
diff --git a/conf/map/battle/client.conf b/conf/map/battle/client.conf index ac973af18..be7f45c94 100644 --- a/conf/map/battle/client.conf +++ b/conf/map/battle/client.conf @@ -189,3 +189,12 @@ mvp_exp_reward_message: false // character has 0 HP when dead. // Default: true (Official behavior) display_fake_hp_when_dead: false + +// Send ping timer +// For clients 20190320 Re+ +// Interval in seconds for each timer invoke. +ping_timer_inverval: 30 + +// Send packets timeout in seconds before ping packet can be sent. +// For clients 20190320 Re+ +ping_time: 20 diff --git a/conf/map/battle/feature.conf b/conf/map/battle/feature.conf index fb7a1dc52..a60f271b8 100644 --- a/conf/map/battle/feature.conf +++ b/conf/map/battle/feature.conf @@ -83,4 +83,9 @@ features: { // Attendance End time in the format YearMonthDay feature_attendance_endtime: 20180331 + + // Enable Achievement System + // true: enable (Default) + // false: disable + enable_achievement_system: false } diff --git a/db/constants.conf b/db/constants.conf index 8eeaf5985..523c96167 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -1404,11 +1404,27 @@ constants_db: { SC_CLAN_INFO: 654 comment__: "petstat" - PET_CLASS: 1 - PET_NAME: 2 - PET_LEVEL: 3 - PET_HUNGRY: 4 - PET_INTIMATE: 5 + comment__: "petstat - deprecated, use *getpetinfo" + PET_CLASS: { + Value: 1 + Deprecated: true + } + PET_NAME: { + Value: 2 + Deprecated: true + } + PET_LEVEL: { + Value: 3 + Deprecated: true + } + PET_HUNGRY: { + Value: 4 + Deprecated: true + } + PET_INTIMATE: { + Value: 5 + Deprecated: true + } comment__: "getmonsterinfo" MOB_NAME: 0 |