inter_athena.conf 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. // Athena InterServer configuration.
  2. // TXT version options only
  3. // Storage flatfile database, used for Karfa storage.
  4. storage_txt: save/storage.txt
  5. // Party flatfile database, for party names, members and other party info.
  6. party_txt: save/party.txt
  7. // Hotkeys flatfile database, where character skill shortcuts are stored.
  8. hotkeys_txt: save/hotkeys.txt
  9. // Guild flatfile database, for guild names, members, and other guild info.
  10. guild_txt: save/guild.txt
  11. // Pet flatfile database, for pet names, and other pet info.
  12. pet_txt: save/pet.txt
  13. // Homunculus flatfile database, for homunculus information.
  14. homun_txt: save/homun.txt
  15. // Castle flatfile database, for emperium war castles, etc.
  16. castle_txt: save/castle.txt
  17. // Status change flatfile database, for status changes that are saved between sessions.
  18. scdata_txt: save/scdata.txt
  19. // Options for both versions
  20. // Log Inter Connections, etc.?
  21. log_inter: 1
  22. // Inter Log Filename
  23. inter_log_filename: log/inter.log
  24. // Level range for sharing within a party
  25. party_share_level: 10
  26. // SQL version options only
  27. // GM Reading Method
  28. // 1 to have Char read GMs, 0 to have Login-controlled GMs
  29. gm_read_method: 0
  30. // The level at which a player with access is considered a GM.
  31. // An account with an access level lower than this is not effected
  32. // by gm_can_drop_lv (battle_athena.conf).
  33. lowest_gm_level: 1
  34. // You can specify the codepage to use in your mySQL tables here.
  35. // (Note that this feature requires MySQL 4.1+)
  36. //default_codepage:
  37. // For IPs, ideally under linux, you want to use localhost instead of 127.0.0.1
  38. // Under windows, you want to use 127.0.0.1. If you see a message like
  39. // "Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)"
  40. // and you have localhost, switch it to 127.0.0.1
  41. // MySQL Login SQL Server
  42. login_server_ip: 127.0.0.1
  43. login_server_port: 3306
  44. login_server_id: ragnarok
  45. login_server_pw: ragnarok
  46. login_server_db: ragnarok
  47. // MySQL Character SQL server
  48. char_server_ip: 127.0.0.1
  49. char_server_port: 3306
  50. char_server_id: ragnarok
  51. char_server_pw: ragnarok
  52. char_server_db: ragnarok
  53. // MySQL Map SQL Server
  54. map_server_ip: 127.0.0.1
  55. map_server_port: 3306
  56. map_server_id: ragnarok
  57. map_server_pw: ragnarok
  58. map_server_db: ragnarok
  59. // MySQL Log SQL Database
  60. log_db_ip: 127.0.0.1
  61. log_db_port: 3306
  62. log_db_id: ragnarok
  63. log_db_pw: ragnarok
  64. log_db: log
  65. // for TXT -> SQL convertors
  66. db_server_ip: 127.0.0.1
  67. db_server_port: 3306
  68. db_server_id: ragnarok
  69. db_server_pw: ragnarok
  70. db_server_logindb: ragnarok
  71. // DO NOT CHANGE ANYTHING BEYOND THIS LINE UNLESS YOU KNOW YOUR DATABASE DAMN WELL
  72. // this is meant for people who KNOW their stuff, and for some reason want to change their
  73. // database layout. [CLOWNISIUS]
  74. //Column names for the login table.
  75. login_db_account_id: account_id
  76. login_db_userid: userid
  77. login_db_user_pass: user_pass
  78. login_db_level: level
  79. // ALL MySQL Database Table names
  80. // Login Database Tables
  81. login_db: login
  82. loginlog_db: loginlog
  83. // Character Database Tables
  84. char_db: char
  85. hotkey_db: hotkey
  86. scdata_db: sc_data
  87. cart_db: cart_inventory
  88. inventory_db: inventory
  89. charlog_db: charlog
  90. storage_db: storage
  91. reg_db: global_reg_value
  92. skill_db: skill
  93. interlog_db: interlog
  94. memo_db: memo
  95. guild_db: guild
  96. guild_alliance_db: guild_alliance
  97. guild_castle_db: guild_castle
  98. guild_expulsion_db: guild_expulsion
  99. guild_member_db: guild_member
  100. guild_skill_db: guild_skill
  101. guild_position_db: guild_position
  102. guild_storage_db: guild_storage
  103. party_db: party
  104. pet_db: pet
  105. friend_db: friends
  106. // Map Database Tables
  107. item_db_db: item_db
  108. item_db2_db: item_db2
  109. mob_db_db: mob_db
  110. mob_db2_db: mob_db2
  111. // Mail Database Table
  112. mail_db: mail
  113. //Use SQL item_db and mob_db for the map server
  114. use_sql_db: no
  115. // Nick for sending mainchat
  116. // messages like whisper
  117. main_chat_nick: Main
  118. import: conf/import/inter_conf.txt