diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-21 21:13:47 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-21 21:13:47 +0000 |
commit | 2497231d154686820451009c252fd9fc7ed4b808 (patch) | |
tree | 50fb4d9d31123fa273865013f24e9522b4a829e7 /conf-tmpl | |
parent | 6c6cfb325ea28e5bf8d137e057eb0716b0b8a4d0 (diff) | |
download | hercules-2497231d154686820451009c252fd9fc7ed4b808.tar.gz hercules-2497231d154686820451009c252fd9fc7ed4b808.tar.bz2 hercules-2497231d154686820451009c252fd9fc7ed4b808.tar.xz hercules-2497231d154686820451009c252fd9fc7ed4b808.zip |
- Corrected setitemscript so it actually changes the script as requested instead of causing dangling pointers.
- Cleaned up unitattack
- Made packet_ver_flag's description use hexadecimal values for the packet versions, and changed the default to 0xFFFF.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10047 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'conf-tmpl')
-rw-r--r-- | conf-tmpl/Changelog.txt | 3 | ||||
-rw-r--r-- | conf-tmpl/battle/client.conf | 30 |
2 files changed, 18 insertions, 15 deletions
diff --git a/conf-tmpl/Changelog.txt b/conf-tmpl/Changelog.txt index 8d3252dd9..af2d5c8e8 100644 --- a/conf-tmpl/Changelog.txt +++ b/conf-tmpl/Changelog.txt @@ -1,5 +1,8 @@ Date Added +2007/03/22 + * Made packet_ver_flag's description use hexadecimal values for the packet + versions, and changed the default to 0xFFFF. [Skotlex] 2007/03/19 * Removed the 'charsave_method' setting from inter_athena.conf 2007/03/17 diff --git a/conf-tmpl/battle/client.conf b/conf-tmpl/battle/client.conf index ba92ce6b0..a9546e845 100644 --- a/conf-tmpl/battle/client.conf +++ b/conf-tmpl/battle/client.conf @@ -30,21 +30,21 @@ // Set here which client version do you accept. Add all values of clients: // Clients older than accepted versions, and versions not set to 'accepted' // here will be rejected when logging in -// 1: Clients 2004-09-06aSakray and older (packet versions 4-9) -// 2: 2004-09-06aSakexe (version 10) -// 4: 2004-09-21aSakray (version 11) -// 8: 2004-10-11aSakexe (version 12) -// 16: 2004-10-25aSakexe (version 13) -// 32: 2004-11-01aSakexe (version 14) -// 64: 2004-12-06aSakexe (version 15) -// 128: 2005-01-10aSakexe (version 16) -// 256: 2005-05-09aSakexe (version 17) -// 512: 2005-06-28aSakexe (version 18) -// 1024: 2006-04-03aSakexe (version 19) -// 2048: 2007-01-08aSakexe (version 20) -// 4096: 2007-02-12aSakexe (version 21) -// default value: 8191 (all clients) -packet_ver_flag: 8191 +// 0x0001: Clients 2004-09-06aSakray and older (packet versions 4-9) +// 0x0002: 2004-09-06aSakexe (version 10) +// 0x0004: 2004-09-21aSakray (version 11) +// 0x0008: 2004-10-11aSakexe (version 12) +// 0x0010: 2004-10-25aSakexe (version 13) +// 0x0020: 2004-11-01aSakexe (version 14) +// 0x0040: 2004-12-06aSakexe (version 15) +// 0x0080: 2005-01-10aSakexe (version 16) +// 0x0100: 2005-05-09aSakexe (version 17) +// 0x0200: 2005-06-28aSakexe (version 18) +// 0x0400: 2006-04-03aSakexe (version 19) +// 0x0800: 2007-01-08aSakexe (version 20) +// 0x1000: 2007-02-12aSakexe (version 21) +// default value: 0xFFFF (all clients) +packet_ver_flag: 0xFFFF // Minimum delay between whisper/global/party/guild messages (in ms) // Messages that break this threshold are silently omitted. |