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