log_athena.conf 4.2 KB

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