log_athena.conf 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. // eAthena - Log Configuration File
  2. // Enable Logs?
  3. enable_logs: 1
  4. // Use MySQL Logs? (SQL Version Only)
  5. sql_logs: 0
  6. // LOGGING FILTERS [Lupus]
  7. //=============================================================
  8. //if any condition is true then the item will be logged
  9. //0 = Don't log at all
  10. //1 = Log any item
  11. //Advanced Filter Bits: ||
  12. //2 - Healing items (0)
  13. //3 - Etc Items(3) + Arrows (10)
  14. //4 - Usable Items(2) + Lures,Scrolls(11)
  15. //5 - Weapon(4)
  16. //6 - Shields,Armor,Headgears,Accessories,etc(5)
  17. //7 - Cards(6)
  18. //8 - Pet Accessories(8) + Eggs(7) (well, monsters don't drop 'em but we'll use the same system for ALL logs)
  19. //9 - Log expensive items ( >= price_items_log)
  20. //10 - Log big amount of items ( >= amount_items_log)
  21. //11 - Log refined items (if their refine >= refine_items_log )
  22. //12 - Log rare items (if their drop chance <= rare_items_log )
  23. //Examples: (log filters)
  24. //log_drop: 1 = logs ANY items
  25. //log_drop: 2 = logs only HEALING items
  26. //log_drop: 4 = logs only Etc Items and Arrows
  27. //log_drop: 64 = logs only Cards
  28. //log_drop: 322 = logs only Healing items, Cards and those items which price is >= price_items_log
  29. //log_drop: 4080 = logs all items (including all rare, big amount) exept healing, etc, arrows and useble ones
  30. //etc
  31. // Log Items which Refine >= refine_items_log
  32. refine_items_log: 5
  33. // Log Items whith min drop rate <= rare_items_log
  34. //1 = 0.01%, 100 = 1% drop chance, etc
  35. rare_items_log: 100
  36. //don't log it if the current item price < price_items_log
  37. price_items_log: 1000
  38. //don't log it if the current item amount < amount_items_log
  39. amount_items_log: 100
  40. //=============================================================
  41. // Log Dead Branch Usage
  42. log_branch: 0
  43. // The main item tracking log [Lupus]
  44. // Log Players/Monster Drops and Players Pickups (You can use a filter)
  45. // It also logs all the item movements: Trade / Vending / NPC / Shops / Admin Create/Delete
  46. log_pick: 0
  47. // Track Zeny Changes
  48. // Filter settings
  49. // 0 - don't log; 1 - log any zeny changes; 2.....1000000 - minimal absolut logging zeny value
  50. log_zeny: 0
  51. // Log MVP Monster Drops
  52. //Outdated. Use Pick_Log instead. But this log could be useful to keep track slayed MVPs
  53. log_mvpdrop: 0
  54. // Log GM Commands (set to minimum level of Logged Commands)
  55. log_gm: 40
  56. // Log NPC 'logmes' commands
  57. log_npc: 0
  58. // Log CHAT (currently only: Party, Guild, Whisper)
  59. // LOGGING FILTERS [Lupus]
  60. //=============================================================
  61. //0 = Don't log at all
  62. //1 = Log any chat messages
  63. //Advanced Filter Bits: ||
  64. //2 - Log Whisper messages
  65. //3 - Log Party messages
  66. //4 - Log Guild messages
  67. //5 - Log Common messages (not implemented)
  68. //6 - Don't log when WOE is on
  69. //Example:
  70. //log_chat: 1 = logs ANY messages
  71. //log_chat: 6 = logs both Whisper & Party messages
  72. //log_chat: 8 = logs only Guild messages
  73. //log_chat: 18 = logs only Whisper, when WOE is off
  74. log_chat: 0
  75. // Dead Branch Log Table
  76. log_branch_db: branchlog
  77. // Drops & Pickups Table
  78. log_pick_db: picklog
  79. // Zeny Table
  80. log_zeny_db: zenylog
  81. // MVP Drop Table
  82. log_mvpdrop_db: mvplog
  83. // GM Log Table
  84. log_gm_db: atcommandlog
  85. // NPC Log Table
  86. log_npc_db: npclog
  87. // CHAT Log Table
  88. log_chat_db: chatlog
  89. // Dead Branch Log File
  90. log_branch_file: log/branchlog.log
  91. // Drops & Pickups Log File
  92. log_pick_file: log/picklog.log
  93. // Zeny Log File
  94. log_zeny_file: log/zenylog.log
  95. // MVP Drop File
  96. log_mvpdrop_file: log/mvplog.log
  97. // GM Log File
  98. log_gm_file: log/atcommandlog.log
  99. // NPC Log File
  100. log_npc_file: log/npclog.log
  101. // CHAT Log File
  102. log_chat_file: log/chatlog.log
  103. import: conf/import/log_conf.txt