Advertisement
Guest User

interconfm

a guest
May 3rd, 2012
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 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: 15
  13.  
  14. // SQL version options only
  15.  
  16. // You can specify the codepage to use in your mySQL tables here.
  17. // (Note that this feature requires MySQL 4.1+)
  18. //default_codepage:
  19.  
  20.  
  21. // For IPs, ideally under linux, you want to use localhost instead of 127.0.0.1
  22. // Under windows, you want to use 127.0.0.1. If you see a message like
  23. // "Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)"
  24. // and you have localhost, switch it to 127.0.0.1
  25.  
  26. // Global SQL settings
  27. // overriden by local settings when the hostname is defined there
  28. // (currently only the login-server reads/obeys these settings)
  29. sql.db_hostname: 127.0.0.1
  30. sql.db_port: 3306
  31. sql.db_username: ragnarok
  32. sql.db_password: ragnarok
  33. sql.db_database: ragnarok
  34. sql.codepage:
  35.  
  36. // MySQL Character SQL server
  37. char_server_ip: 127.0.0.1
  38. char_server_port: 3306
  39. char_server_id: ragnarok
  40. char_server_pw: ragnarok
  41. char_server_db: ragnarok
  42.  
  43. // MySQL Map SQL Server
  44. map_server_ip: 127.0.0.1
  45. map_server_port: 3306
  46. map_server_id: ragnarok
  47. map_server_pw: ragnarok
  48. map_server_db: ragnarok
  49.  
  50. // MySQL Log SQL Database
  51. log_db_ip: 127.0.0.1
  52. log_db_port: 3306
  53. log_db_id: ragnarok
  54. log_db_pw: ragnarok
  55. log_db_db: ragnarok
  56. log_codepage:
  57. log_login_db: loginlog
  58.  
  59. // DO NOT CHANGE ANYTHING BEYOND THIS LINE UNLESS YOU KNOW YOUR DATABASE DAMN WELL
  60. // this is meant for people who KNOW their stuff, and for some reason want to change their
  61. // database layout. [CLOWNISIUS]
  62.  
  63. // ALL MySQL Database Table names
  64.  
  65. // Char Database Tables
  66. char_db: char
  67. hotkey_db: hotkey
  68. scdata_db: sc_data
  69. cart_db: cart_inventory
  70. inventory_db: inventory
  71. charlog_db: charlog
  72. storage_db: storage
  73. reg_db: global_reg_value
  74. skill_db: skill
  75. interlog_db: interlog
  76. memo_db: memo
  77. guild_db: guild
  78. guild_alliance_db: guild_alliance
  79. guild_castle_db: guild_castle
  80. guild_expulsion_db: guild_expulsion
  81. guild_member_db: guild_member
  82. guild_skill_db: guild_skill
  83. guild_position_db: guild_position
  84. guild_storage_db: guild_storage
  85. party_db: party
  86. pet_db: pet
  87. friend_db: friends
  88. mail_db: mail
  89. auction_db: auction
  90. quest_db: quest
  91. homunculus_db: homunculus
  92. skill_homunculus_db: skill_homunculus
  93. mercenary_db: mercenary
  94. mercenary_owner_db: mercenary_owner
  95. ragsrvinfo_db: ragsrvinfo
  96.  
  97. // Map Database Tables
  98. item_db_db: item_db
  99. item_db_re_db: item_db_re
  100. item_db2_db: item_db2
  101. mob_db_db: mob_db
  102. mob_db2_db: mob_db2
  103. mob_skill_db_db: mob_skill_db
  104. mob_skill_db2_db: mob_skill_db2
  105. mapreg_db: mapreg
  106.  
  107. //Use SQL item_db, mob_db and mob_skill_db for the map server
  108. use_sql_db: no
  109.  
  110. // Nick for sending mainchat
  111. // messages like whisper
  112. main_chat_nick: Main
  113.  
  114. import: conf/import/inter_conf.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement