Advertisement
Guest User

Untitled

a guest
Jul 10th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. // Athena InterServer configuration.
  2.  
  3. // Options for both versions
  4.  
  5. // Log Inter Connections, etc.?
  6. log_inter: 1
  7.  
  8. // Inter Log Filename
  9. inter_log_filename: log/inter.log
  10.  
  11. // Level range for sharing within a party
  12. party_share_level: 10
  13.  
  14.  
  15. // TXT version options only
  16.  
  17. // Storage flatfile database, used for Karfa storage.
  18. storage_txt: save/storage.txt
  19.  
  20. // Party flatfile database, for party names, members and other party info.
  21. party_txt: save/party.txt
  22.  
  23. // Hotkeys flatfile database, where character skill shortcuts are stored.
  24. hotkeys_txt: save/hotkeys.txt
  25.  
  26. // Guild flatfile database, for guild names, members, and other guild info.
  27. guild_txt: save/guild.txt
  28.  
  29. // Pet flatfile database, for pet names, and other pet info.
  30. pet_txt: save/pet.txt
  31.  
  32. // Homunculus flatfile database, for homunculus information.
  33. homun_txt: save/homun.txt
  34.  
  35. // Castle flatfile database, for emperium war castles, etc.
  36. castle_txt: save/castle.txt
  37.  
  38. // Status change flatfile database, for status changes that are saved between sessions.
  39. scdata_txt: save/scdata.txt
  40.  
  41. // Mapserver permanent script variables ($-type)
  42. mapreg_txt: save/mapreg.txt
  43.  
  44.  
  45. // SQL version options only
  46.  
  47. // You can specify the codepage to use in your mySQL tables here.
  48. // (Note that this feature requires MySQL 4.1+)
  49. //default_codepage:
  50.  
  51.  
  52. // For IPs, ideally under linux, you want to use localhost instead of 127.0.0.1
  53. // Under windows, you want to use 127.0.0.1. If you see a message like
  54. // "Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)"
  55. // and you have localhost, switch it to 127.0.0.1
  56.  
  57. // Global SQL settings
  58. // overriden by local settings when the hostname is defined there
  59. // (currently only the login-server reads/obeys these settings)
  60. sql.db_hostname: hestia.nixhost.co.uk
  61. sql.db_port: 3306
  62. sql.db_username: aceofhearts
  63. sql.db_password: changeme
  64. sql.db_database: aceofhearts
  65. sql.codepage:
  66.  
  67. // MySQL Character SQL server
  68. char_server_ip: hestia.nixhost.co.uk
  69. char_server_port: 3306
  70. char_server_id: aceofhearts
  71. char_server_pw: changeme
  72. char_server_db: aceofhearts
  73.  
  74. // MySQL Map SQL Server
  75. map_server_ip: hestia.nixhost.co.uk
  76. map_server_port: 3306
  77. map_server_id: aceofhearts
  78. map_server_pw: changeme
  79. map_server_db: aceofhearts
  80.  
  81. // MySQL Log SQL Database
  82. log_db_ip: hestia.nixhost.co.uk
  83. log_db_port: 3306
  84. log_db_id: aceofhearts
  85. log_db_pw: changeme
  86. log_db_db: aceofhearts
  87. log_codepage:
  88.  
  89. // DO NOT CHANGE ANYTHING BEYOND THIS LINE UNLESS YOU KNOW YOUR DATABASE DAMN WELL
  90. // this is meant for people who KNOW their stuff, and for some reason want to change their
  91. // database layout. [CLOWNISIUS]
  92.  
  93. // ALL MySQL Database Table names
  94.  
  95. // Login Database Tables
  96. loginlog_db: loginlog
  97.  
  98. // Char Database Tables
  99. char_db: char
  100. hotkey_db: hotkey
  101. scdata_db: sc_data
  102. cart_db: cart_inventory
  103. inventory_db: inventory
  104. charlog_db: charlog
  105. storage_db: storage
  106. reg_db: global_reg_value
  107. skill_db: skill
  108. interlog_db: interlog
  109. memo_db: memo
  110. guild_db: guild
  111. guild_alliance_db: guild_alliance
  112. guild_castle_db: guild_castle
  113. guild_expulsion_db: guild_expulsion
  114. guild_member_db: guild_member
  115. guild_skill_db: guild_skill
  116. guild_position_db: guild_position
  117. guild_storage_db: guild_storage
  118. party_db: party
  119. pet_db: pet
  120. friend_db: friends
  121. mail_db: mail
  122. auction_db: auction
  123. quest_db: quest
  124.  
  125. // Map Database Tables
  126. item_db_db: item_db
  127. item_db2_db: item_db2
  128. mob_db_db: mob_db
  129. mob_db2_db: mob_db2
  130. mapreg_db: mapreg
  131.  
  132. //Use SQL item_db and mob_db for the map server
  133. use_sql_db: no
  134.  
  135. // Nick for sending mainchat
  136. // messages like whisper
  137. main_chat_nick: Main
  138.  
  139. import: conf/import/inter_conf.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement