log_athena.conf 4.7 KB

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