log_athena.conf 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. // eAthena - Log Configuration File
  2. // Enable Logs?
  3. // 1 - Log all events.
  4. // Or, determine what to log by adding up the different events:
  5. // 0002 - (T) Log trades
  6. // 0004 - (V) Log vending transactions
  7. // 0008 - (P) Log items drop/picked by players
  8. // 0016 - (L) Log items drop/looted by monsters
  9. // 0032 - (S) Log NPC transactions (buy/sell)
  10. // 0064 - (N) Log Script transactions (items deleted/acquired through quests)
  11. // 0128 - (M) Log items stolen from mobs (Steal/Gank)
  12. // 0256 - (C) Log player-used items
  13. // 0512 - (M) Log MVP prize items
  14. // 1024 - (A) Log player created/deleted items (through @/# commands)
  15. // 2048 - (R) Log items placed/retrieved from storage.
  16. // 4096 - (G) Log items placed/retrieved from guild storage.
  17. // 8192 - (E) Log mail system transactions.
  18. // Example: Log trades+vending+script items+created items: 2+4+64+1024 = 1094
  19. enable_logs: 1
  20. // Use MySQL Logs? (SQL Version Only)
  21. sql_logs: 0
  22. // LOGGING FILTERS
  23. // =============================================================
  24. // if any condition is true then the item will be logged
  25. // 0 = Don't log at all
  26. // 1 = Log any item
  27. // Advanced Filter Bits by item type: ||
  28. // 0002 - Healing items (0)
  29. // 0004 - Etc Items(3) + Arrows (10)
  30. // 0008 - Usable Items(2) + Lures,Scrolls(11)
  31. // 0016 - Weapon(4)
  32. // 0032 - Shields,Armor,Headgears,Accessories,etc(5)
  33. // 0064 - Cards(6)
  34. // 0128 - Pet Accessories(8) + Eggs(7) (well, monsters don't drop 'em but we'll use the same system for ALL logs)
  35. // 0256 - Log expensive items ( >= price_items_log)
  36. // 0512 - Log big amount of items ( >= amount_items_log)
  37. // 1024 - Log refined items (if their refine >= refine_items_log )
  38. // 2048 - Log rare items (if their drop chance <= rare_items_log )
  39. // Examples: (log filters)
  40. // log_filter: 1 = logs ANY items
  41. // log_filter: 2 = logs only HEALING items
  42. // log_filter: 4 = logs only Etc Items and Arrows
  43. // log_filter: 64 = logs only Cards
  44. // log_filter: 322 = logs only Healing items, Cards and those items which price is >= price_items_log
  45. // log_filter: 4080 = logs all items (including all rare, big amount) exept healing, etc, arrows and useble ones
  46. log_filter: 1
  47. // Log Items which Refine >= refine_items_log
  48. refine_items_log: 5
  49. // Log Items whith min drop rate <= rare_items_log
  50. // 1 = 0.01%, 100 = 1% drop chance, etc
  51. rare_items_log: 100
  52. // don't log it if the current item buy price < price_items_log
  53. price_items_log: 1000
  54. // don't log it if the current item amount < amount_items_log
  55. amount_items_log: 100
  56. //=============================================================
  57. // Log Dead Branch Usage
  58. log_branch: 0
  59. // Track Zeny Changes
  60. // Filter settings
  61. // 0 - don't log; 1 - log any zeny changes; 2.....1000000 - minimal absolut logging zeny value
  62. log_zeny: 0
  63. // Log MVP Monster Drops
  64. // Outdated. Use Pick_Log instead. But this log could be useful to keep track slayed MVPs
  65. log_mvpdrop: 0
  66. // Log GM Commands (set to minimum level of Logged Commands)
  67. log_gm: 40
  68. // Log NPC 'logmes' commands
  69. log_npc: 0
  70. // Log CHAT (Global, Whisper, Party, Guild, Main chat)
  71. // LOGGING FILTERS
  72. // =============================================================
  73. // 0 = Don't log at all
  74. // 1 = Log EVERYTHING!
  75. // Advanced Filter Bits: ||
  76. // 02 - Log Global messages
  77. // 04 - Log Whisper messages
  78. // 08 - Log Party messages
  79. // 16 - Log Guild messages
  80. // 32 - Log Main chat messages
  81. // 64 - Don't log anything when WOE is on
  82. // Example:
  83. // log_chat: 12 = logs both Whisper & Party messages
  84. // log_chat: 16 = logs only Guild messages
  85. // log_chat: 68 = logs only Whisper, when WOE is off
  86. log_chat: 0
  87. // Dead Branch Log Table
  88. log_branch_db: branchlog
  89. // Drops & Pickups Table
  90. log_pick_db: picklog
  91. // Zeny Table
  92. log_zeny_db: zenylog
  93. // MVP Drop Table
  94. log_mvpdrop_db: mvplog
  95. // GM Log Table
  96. log_gm_db: atcommandlog
  97. // NPC Log Table
  98. log_npc_db: npclog
  99. // CHAT Log Table
  100. log_chat_db: chatlog
  101. // Dead Branch Log File
  102. log_branch_file: log/branchlog.log
  103. // Drops & Pickups Log File
  104. log_pick_file: log/picklog.log
  105. // Zeny Log File
  106. log_zeny_file: log/zenylog.log
  107. // MVP Drop File
  108. log_mvpdrop_file: log/mvplog.log
  109. // GM Log File
  110. log_gm_file: log/atcommandlog.log
  111. // NPC Log File
  112. log_npc_file: log/npclog.log
  113. // CHAT Log File
  114. log_chat_file: log/chatlog.log
  115. import: conf/import/log_conf.txt