diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-08-21 23:24:50 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-08-21 23:24:50 +0000 |
commit | 67466ae983ea6e2568b3e017c5d1976850308a2a (patch) | |
tree | 290ad7c38bd40662f81a4f649f3058854d27ced6 /conf | |
parent | a26298ee3aa66edb4ef23b291b23ac0419be50f5 (diff) | |
download | hercules-67466ae983ea6e2568b3e017c5d1976850308a2a.tar.gz hercules-67466ae983ea6e2568b3e017c5d1976850308a2a.tar.bz2 hercules-67466ae983ea6e2568b3e017c5d1976850308a2a.tar.xz hercules-67466ae983ea6e2568b3e017c5d1976850308a2a.zip |
* Fixed monsters above Lv99 displaying a Lv99 aura (bugreport:3986).
- The server no longer caps the level sent to the client by default.
- Servers that require the aura to be displayed at a level different from lv99, either have to alter the client or adjust the 'client_limit_unit_lv' setting.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14938 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'conf')
-rw-r--r-- | conf/Changelog.txt | 2 | ||||
-rw-r--r-- | conf/battle/client.conf | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/conf/Changelog.txt b/conf/Changelog.txt index 1b4b45f05..b6c726451 100644 --- a/conf/Changelog.txt +++ b/conf/Changelog.txt @@ -1,5 +1,7 @@ Date Added +2011/08/21 + * Rev. 14938 Added setting 'client_limit_unit_lv' to control the unit types which are affected by 'max_lv' and 'aura_lv' settings. [Ai4rei] 2011/07/09 * Rev. 14892 Removed 'msg_athena.conf' messages 619 and 620 (duplicates to 572 and 573) (since r5506). [Ai4rei] 2011/05/13 diff --git a/conf/battle/client.conf b/conf/battle/client.conf index 6a6c58d13..7194c23bf 100644 --- a/conf/battle/client.conf +++ b/conf/battle/client.conf @@ -17,6 +17,8 @@ //-------------------------------------------------------------- // Note 1: Value is a config switch (on/off, yes/no or 1/0) // Note 2: Value is in percents (100 means 100%) +// Note 3: Value is a bit field. If no description is given, +// assume unit types (1: Pc, 2: Mob, 4: Pet, 8: Homun, 16: Mercenary) //-------------------------------------------------------------- // Set here which client version do you accept. Add all values of clients: @@ -86,6 +88,12 @@ max_lv: 99 // 150 or more will be reported as having level 99 and show an aura. aura_lv: 99 +// Units types affected by max_lv and aura_lv settings. (Note 3) +// Note: If an unit type, which normally does not show an aura, is +// set it will obtain an aura when it meets the level requirement. +// Default: 0 (none) +client_limit_unit_lv: 0 + // Will tuxedo and wedding dresses be shown when worn? (Note 1) wedding_modifydisplay: no |