Advertisement
Guest User

Untitled

a guest
Oct 20th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. // Athena InterServer configuration.
  2. // Contains settings shared/used by more than 1 server.
  3.  
  4. // Options for both versions
  5.  
  6. // Log Inter Connections, etc.?
  7. log_inter: 1
  8.  
  9. // Inter Log Filename
  10. inter_log_filename: log/inter.log
  11.  
  12. // Level range for sharing within a party
  13. party_share_level: 15
  14.  
  15. // SQL version options only
  16.  
  17. // You can specify the codepage to use in your mySQL tables here.
  18. // (Note that this feature requires MySQL 4.1+)
  19. //default_codepage:
  20.  
  21.  
  22. // For IPs, ideally under linux, you want to use localhost instead of 127.0.0.1
  23. // Under windows, you want to use 127.0.0.1. If you see a message like
  24. // "Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)"
  25. // and you have localhost, switch it to 127.0.0.1
  26.  
  27. // Global SQL settings
  28. // overridden by local settings when the hostname is defined there
  29. // (currently only the login-server reads/obeys these settings)
  30. sql.db_hostname: 127.0.0.1
  31. sql.db_port: 3306
  32. sql.db_username: root
  33. sql.db_password:
  34. sql.db_database: rathena
  35. sql.codepage:
  36.  
  37. // MySQL Character SQL server
  38. char_server_ip: 127.0.0.1
  39. char_server_port: 3306
  40. char_server_id: root
  41. char_server_pw:
  42. char_server_db: rathena
  43.  
  44. // MySQL Map SQL Server
  45. map_server_ip: 127.0.0.1
  46. map_server_port: 3306
  47. map_server_id: root
  48. map_server_pw:
  49. map_server_db: rathena
  50.  
  51. // MySQL Log SQL Database
  52. log_db_ip: 127.0.0.1
  53. log_db_port: 3306
  54. log_db_id: root
  55. log_db_pw:
  56. log_db_db: logs
  57. log_codepage:
  58. log_login_db: loginlog
  59.  
  60. // MySQL Reconnect Settings
  61. // - mysql_reconnect_type:
  62. // 1: When MySQL disconnects during runtime, the server tries to reconnect
  63. // mysql_reconnect_count times and shuts down if unsuccessful.
  64. // 2: When mysql disconnects during runtime, it tries to reconnect indefinitely.
  65. mysql_reconnect_type: 2
  66. mysql_reconnect_count: 1
  67.  
  68. // DO NOT CHANGE ANYTHING BEYOND THIS LINE UNLESS YOU KNOW YOUR DATABASE DAMN WELL
  69. // this is meant for people who KNOW their stuff, and for some reason want to change their
  70. // database layout. [CLOWNISIUS]
  71.  
  72. // ALL MySQL Database Table names
  73.  
  74. // Char Database Tables
  75. char_db: char
  76. hotkey_db: hotkey
  77. scdata_db: sc_data
  78. cart_db: cart_inventory
  79. inventory_db: inventory
  80. charlog_db: charlog
  81. storage_db: storage
  82. reg_db: global_reg_value
  83. skill_db: skill
  84. interlog_db: interlog
  85. memo_db: memo
  86. guild_db: guild
  87. guild_alliance_db: guild_alliance
  88. guild_castle_db: guild_castle
  89. guild_expulsion_db: guild_expulsion
  90. guild_member_db: guild_member
  91. guild_skill_db: guild_skill
  92. guild_position_db: guild_position
  93. guild_storage_db: guild_storage
  94. party_db: party
  95. pet_db: pet
  96. friend_db: friends
  97. mail_db: mail
  98. auction_db: auction
  99. quest_db: quest
  100. homunculus_db: homunculus
  101. skill_homunculus_db: skill_homunculus
  102. mercenary_db: mercenary
  103. mercenary_owner_db: mercenary_owner
  104. elemental_db: elemental
  105. ragsrvinfo_db: ragsrvinfo
  106.  
  107. // Map Database Tables
  108. item_db_db: item_db
  109. item_db_re_db: item_db_re
  110. item_db2_db: item_db2
  111. item_cash_db_db: item_cash_db
  112. item_cash_db2_db: item_cash_db2
  113. mob_db_db: mob_db
  114. mob_db2_db: mob_db2
  115. mob_skill_db_db: mob_skill_db
  116. mob_skill_db2_db: mob_skill_db2
  117. mapreg_db: mapreg
  118.  
  119. // Use SQL item_db, mob_db and mob_skill_db for the map server? (yes/no)
  120. use_sql_db: no
  121.  
  122. import: conf/import/inter_conf.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement