diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-11-19 18:19:09 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-11-19 18:19:09 +0000 |
commit | 30c8d7704026aa450b64997c2996ee8d9d4f2cec (patch) | |
tree | dae267b2e016111da192de4dbf67679878e73409 /conf/battle | |
parent | 620ea0643c3bcbfed5dd7c84e8d65fc8941997a7 (diff) | |
download | hercules-30c8d7704026aa450b64997c2996ee8d9d4f2cec.tar.gz hercules-30c8d7704026aa450b64997c2996ee8d9d4f2cec.tar.bz2 hercules-30c8d7704026aa450b64997c2996ee8d9d4f2cec.tar.xz hercules-30c8d7704026aa450b64997c2996ee8d9d4f2cec.zip |
- Applied the renewal client support patch from Diablo (eA forum topic 222623)
- Added support for strcharinfo(3) to retrieve the player's map
- Added script command "searchitem" for name item searches.
- Moved PACKETVER to src/common/mmo.h as it's needed by the char-server now
- Changed the status valX from int to long so that it won't break for pointer-storage in other architectures.
- Moved the change party leader code to party.c
- A few bugfixes or packet field completions based on my past experience messing around with my server.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14155 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'conf/battle')
-rw-r--r-- | conf/battle/client.conf | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/conf/battle/client.conf b/conf/battle/client.conf index a0a5b6bdf..a2db1a6c3 100644 --- a/conf/battle/client.conf +++ b/conf/battle/client.conf @@ -22,23 +22,25 @@ // 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 -// 0x0001: Clients older than 2004-09-06aSakray (packet versions 5-9) -// 0x0002: 2004-09-06aSakexe (version 10) -// 0x0004: 2004-09-20aSakexe (version 11) -// 0x0008: 2004-10-05aSakexe (version 12) -// 0x0010: 2004-10-25aSakexe (version 13) -// 0x0020: 2004-11-29aSakexe (version 14) -// 0x0040: 2005-01-10bSakexe (version 15) -// 0x0080: 2005-05-09aSakexe (version 16) -// 0x0100: 2005-06-28aSakexe (version 17) -// 0x0200: 2005-07-18aSakexe (version 18) -// 0x0400: 2005-07-19bSakexe (version 19) -// 0x0800: 2006-03-27aSakexe (version 20) -// 0x1000: 2007-01-08aSakexe (version 21) -// 0x2000: 2007-02-12aSakexe (version 22) -// 0x4000: 2008-09-10aSakexe (version 23) -// default value: 0xFFFF (all clients) -packet_ver_flag: 0xFFFF +// 0x00001: Clients older than 2004-09-06aSakray (packet versions 5-9) +// 0x00002: 2004-09-06aSakexe (version 10) +// 0x00004: 2004-09-20aSakexe (version 11) +// 0x00008: 2004-10-05aSakexe (version 12) +// 0x00010: 2004-10-25aSakexe (version 13) +// 0x00020: 2004-11-29aSakexe (version 14) +// 0x00040: 2005-01-10bSakexe (version 15) +// 0x00080: 2005-05-09aSakexe (version 16) +// 0x00100: 2005-06-28aSakexe (version 17) +// 0x00200: 2005-07-18aSakexe (version 18) +// 0x00400: 2005-07-19bSakexe (version 19) +// 0x00800: 2006-03-27aSakexe (version 20) +// 0x01000: 2007-01-08aSakexe (version 21) +// 0x02000: 2007-02-12aSakexe (version 22) +// 0x04000: 2008-09-10aSakexe (version 23) +// 0x08000: 2008-08-27aRagexeRE (version 24) +// 0x10000: 2008-09-10aRagexeRE (version 25) +// default value: 0xFFFFF (all clients) +packet_ver_flag: 0xFFFFF // Minimum delay between whisper/global/party/guild messages (in ms) // Messages that break this threshold are silently omitted. @@ -116,4 +118,4 @@ display_hallucination: yes // Set this to 1 if your client supports status change timers and you want to use them // Clients from 2009 onward support this -display_status_timers: no +display_status_timers: yes |