diff options
Diffstat (limited to 'conf/char-server.conf')
-rw-r--r-- | conf/char-server.conf | 53 |
1 files changed, 34 insertions, 19 deletions
diff --git a/conf/char-server.conf b/conf/char-server.conf index bd2e2793c..b2120471c 100644 --- a/conf/char-server.conf +++ b/conf/char-server.conf @@ -1,4 +1,4 @@ -// Athena Character configuration file. +// Character Server configuration file. // Note: "Comments" are all text on the right side of a double slash "//" // Whatever text is commented will not be parsed by the servers, and serves @@ -12,7 +12,7 @@ passwd: p1 // NOTE: Do not use spaces or any of these characters which are not allowed in // Windows filenames \/:*?"<>| // ... or else guild emblems won't work client-side! -server_name: rAthena +server_name: Hercules // Wisp name for server: used to send wisp from server to players (between 4 to 23 characters) wisp_server_name: Server @@ -61,11 +61,6 @@ stdout_with_ansisequence: no //Example: "console_silent: 7" Hides information, status and notice messages (1+2+4) console_silent: 0 -// Console Commands -// Allow for console commands to be used on/off -// This prevents usage of >& log.file -console: off - // Type of server. // No functional side effects at the moment. // Displayed next to the server name in the client. @@ -79,8 +74,9 @@ char_new: 1 // Display (New) in the server list. char_new_display: 0 -// Maximum users able to connect to the server. Set to 0 for unlimited. -max_connect_user: 0 +// Maximum users able to connect to the server. +// Set to 0 to disable users to log-in. (-1 means unlimited) +max_connect_user: -1 // Group ID that is allowed to bypass the server limit of users. // Default: -1 = nobody (there are no groups with ID < 0) @@ -98,11 +94,9 @@ save_log: yes // Start point, Map name followed by coordinates (x,y) start_point: new_1-1,53,111 -// Starting weapon for new characters -start_weapon: 1201 - -// Starting armor for new characters -start_armor: 2301 +// Starting items for new characters +// Format is: id1,qt1,idn,qtn +start_items: 1201,1,2301,1 // Starting zeny for new characters start_zeny: 0 @@ -138,11 +132,6 @@ char_name_option: 1 // Note: Don't add spaces unless you mean to add 'space' to the list. char_name_letters: abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 -// How many Characters are allowed per Account ? (0 = disabled) -// You can not exceed the limit of MAX_CHARS slots, defined in mmo.h -// Doing that, chars_per_account will be default to MAX_CHARS. -chars_per_account: 0 - // Restrict character deletion by BaseLevel // 0: no restriction (players can delete characters of any level) // -X: you can't delete chars with BaseLevel <= X @@ -158,4 +147,30 @@ char_del_delay: 86400 // What folder the DB files are in (item_db.txt, etc.) db_path: db +//================================================================== +// Pincode system -- INCOMPLETE / BROKEN +//================================================================== + +// A window is opened before you can select your character and you will have to enter a pincode by using only your mouse +// NOTE: Requires client 2011-03-09aragexeRE or newer. +// 0: disabled +// 1: enabled +pincode_enabled: 1 + +// Request Pincode only on login or on everytime char select is accessed? +// 0: only on login (default) +// 1: everytime the char select window is accessed +pincode_charselect: 0 + +// How often does a user have to change his pincode? +// Default: 0 +// 0: never +// X: every X minutes +pincode_changetime: 0 + +// How often can a user enter the wrong password? +// Default: 3 +// NOTE: The maximum on clientside is 3 +pincode_maxtry: 3 + import: conf/import/char_conf.txt |