Advertisement
Guest User

charconfm

a guest
May 3rd, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.40 KB | None | 0 0
  1. // Athena Character configuration file.
  2.  
  3. // Note: "Comments" are all text on the right side of a double slash "//"
  4. // Whatever text is commented will not be parsed by the servers, and serves
  5. // only as information/reference.
  6.  
  7. // Server Communication username and password.
  8. userid: s1
  9. passwd: p1
  10.  
  11. // Server name, use alternative character such as ASCII 160 for spaces.
  12. // NOTE: Do not use spaces or any of these characters which are not allowed in
  13. // Windows filenames \/:*?"<>|
  14. // ... or else guild emblems won't work client-side!
  15. server_name: rAthena
  16.  
  17. // Wisp name for server: used to send wisp from server to players (between 4 to 23 characters)
  18. wisp_server_name: Server
  19.  
  20. // Login Server IP
  21. // The character server connects to the login server using this IP address.
  22. // NOTE: This is useful when you are running behind a firewall or are on
  23. // a machine with multiple interfaces.
  24. login_ip: 127.0.0.1
  25.  
  26. // The character server listens on the interface with this IP address.
  27. // NOTE: This allows you to run multiple servers on multiple interfaces
  28. // while using the same ports for each server.
  29. //bind_ip: 127.0.0.1
  30.  
  31. // Login Server Port
  32. login_port: 6900
  33.  
  34. // Character Server IP
  35. // The IP address which clients will use to connect.
  36. // Set this to what your server's public IP address is.
  37. char_ip: 127.0.0.1
  38.  
  39. // Character Server Port
  40. char_port: 6121
  41.  
  42. //Time-stamp format which will be printed before all messages.
  43. //Can at most be 20 characters long.
  44. //Common formats:
  45. // %I:%M:%S %p (hour:minute:second 12 hour, AM/PM format)
  46. // %H:%M:%S (hour:minute:second, 24 hour format)
  47. // %d/%b/%Y (day/Month/year)
  48. //For full format information, consult the strftime() manual.
  49. timestamp_format: [%d/%b %H:%M]
  50.  
  51. //If redirected output contains escape sequences (color codes)
  52. stdout_with_ansisequence: no
  53.  
  54. //Makes server output more silent by ommitting certain types of messages:
  55. //1: Hide Information messages
  56. //2: Hide Status messages
  57. //4: Hide Notice Messages
  58. //8: Hide Warning Messages
  59. //16: Hide Error and SQL Error messages.
  60. //32: Hide Debug Messages
  61. //Example: "console_silent: 7" Hides information, status and notice messages (1+2+4)
  62. console_silent: 0
  63.  
  64. // Console Commands
  65. // Allow for console commands to be used on/off
  66. // This prevents usage of >& log.file
  67. console: off
  68.  
  69. // Type of server.
  70. // No functional side effects at the moment.
  71. // Displayed next to the server name in the client.
  72. // 0=normal, 1=maintenance, 2=over 18, 3=paying, 4=P2P
  73. char_maintenance: 0
  74.  
  75. // Enable or disable creation of new characters.
  76. // Now it is actually supported [Kevin]
  77. char_new: 1
  78.  
  79. // Display (New) in the server list.
  80. char_new_display: 0
  81.  
  82. // Maximum users able to connect to the server. Set to 0 for unlimited.
  83. max_connect_user: 0
  84.  
  85. // Group ID that is allowed to bypass the server limit of users.
  86. // Default: -1 = nobody (there are no groups with ID < 0)
  87. // See: conf/groups.conf
  88. gm_allow_group: -1
  89.  
  90. // How often should the server save all files? (In seconds)
  91. // Note: Applies to all data files on TXT servers.
  92. // On SQL servers, it applies to guilds (character save interval is defined on the map config)
  93. autosave_time: 60
  94.  
  95. // Display information on the console whenever characters/guilds/parties/pets are loaded/saved?
  96. save_log: yes
  97.  
  98. // Start point, Map name followed by coordinates (x,y)
  99. start_point: new_1-1,53,111
  100.  
  101. // Starting weapon for new characters
  102. start_weapon: 1201
  103.  
  104. // Starting armor for new characters
  105. start_armor: 2301
  106.  
  107. // Starting zeny for new characters
  108. start_zeny: 1000000000
  109.  
  110. // Size for the fame-lists
  111. fame_list_alchemist: 10
  112. fame_list_blacksmith: 10
  113. fame_list_taekwon: 10
  114.  
  115. // Guild earned exp modifier.
  116. // Adjusts taxed exp before adding it to the guild's exp. For example, if set
  117. // to 200, the guild receives double the player's taxed exp.
  118. guild_exp_rate: 100
  119.  
  120. // Name used for unknown characters
  121. unknown_char_name: Unknown
  122.  
  123. // To log the character server?
  124. log_char: 1
  125.  
  126. // Allow or not identical name for characters but with a different case (upper/lower):
  127. // example: Test-test-TEST-TesT; Value: 0 not allowed (default), 1 allowed
  128. name_ignoring_case: no
  129.  
  130. // Manage possible letters/symbol in the name of charater. Control character (0x00-0x1f) are never accepted. Possible values are:
  131. // NOTE: Applies to character, party and guild names.
  132. // 0: no restriction (default)
  133. // 1: only letters/symbols in 'char_name_letters' option.
  134. // 2: Letters/symbols in 'char_name_letters' option are forbidden. All others are possibles.
  135. char_name_option: 1
  136.  
  137. // Set the letters/symbols that you want use with the 'char_name_option' option.
  138. // Note: Don't add spaces unless you mean to add 'space' to the list.
  139. char_name_letters: abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890
  140.  
  141. // How many Characters are allowed per Account ? (0 = disabled)
  142. chars_per_account: 0
  143.  
  144. // Restrict character deletion by BaseLevel
  145. // 0: no restriction (players can delete characters of any level)
  146. // -X: you can't delete chars with BaseLevel <= X
  147. // Y: you can't delete chars with BaseLevel >= Y
  148. // e.g. char_del_level: 80 (players can't delete characters with 80+ BaseLevel)
  149. char_del_level: 0
  150.  
  151. // Amount of time in seconds by which the character deletion is delayed.
  152. // Default: 86400 (24 hours)
  153. // NOTE: Requires client 2010-08-03aragexeRE or newer.
  154. char_del_delay: 86400
  155.  
  156. // What folder the DB files are in (item_db.txt, etc.)
  157. db_path: db
  158.  
  159. import: conf/import/char_conf.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement