diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-07-20 03:38:47 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-07-20 03:38:47 +0000 |
commit | 0a4feb1f7d662faeefd1072d39530c2f610a3a1a (patch) | |
tree | b2a82245d6672ca1261efc076caf052bc62f726c /conf-tmpl/char_athena.conf | |
parent | 0f4b1a36a2552e62227ee1350e8034a8f122c028 (diff) | |
download | hercules-0a4feb1f7d662faeefd1072d39530c2f610a3a1a.tar.gz hercules-0a4feb1f7d662faeefd1072d39530c2f610a3a1a.tar.bz2 hercules-0a4feb1f7d662faeefd1072d39530c2f610a3a1a.tar.xz hercules-0a4feb1f7d662faeefd1072d39530c2f610a3a1a.zip |
* Corrected packet_db.txt. See topic:158382 for details. As a side-effect, the latest packet version is now 22 instead of 21.
* Added a charserver config option for the character renaming flag, along with a detailed comment on what it's supposed to be. This eliminates all that "change PACKETVER to 8 and recompile" mess.
* Moved PACKETVER back to clif.h, cleaned the related code a bit.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10888 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'conf-tmpl/char_athena.conf')
-rw-r--r-- | conf-tmpl/char_athena.conf | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/conf-tmpl/char_athena.conf b/conf-tmpl/char_athena.conf index 522750b8c..3948a84fa 100644 --- a/conf-tmpl/char_athena.conf +++ b/conf-tmpl/char_athena.conf @@ -145,6 +145,9 @@ guild_exp_rate: 100 // Name used for unknown characters unknown_char_name: Unknown +// To log the character server? +log_char: 1 + // Log Filename char_log_filename: log/char.log @@ -163,14 +166,18 @@ char_name_option: 1 // Note: Don't add spaces unless you mean to add 'space' to the list. char_name_letters: abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 -// To log the character server? -log_char: 1 +// Character rename option. When set to yes, the server will send an extended +// char-info packet, informing whether the character can be renamed or not. +// NOTE: This functionality is not implemented. +// NOTE: This option is for compatibility with kRO sakray 2006-10-23 and above. +// !Do not use it for any other type of client since it will crash them! +char_rename: yes // How many Characters are allowed per Account ? (0 = disabled) [SQL Only!] chars_per_account: 0 // Restrict character deletion by BaseLevel -// 0: no restriction (players can delete characters of may levels) +// 0: no restriction (players can delete characters of any level) // -X: you can't delete chars with BaseLevel <= X // Y: you can't delete chars with BaseLevel >= Y // e.g. char_del_level: 80 (players can't delete characters with 80+ BaseLevel) |