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