rko123 Posted March 15, 2012 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 32 Reputation: 0 Joined: 03/05/12 Last Seen: August 3, 2012 Share Posted March 15, 2012 (edited) can someone edit this .. i want to see the tradelogs thanks... // eAthena - Log Configuration File // Enable Logs? // 1 - Log all events. // Or, determine what to log by adding up the different events: // 0002 - (T) Log trades // 0004 - (V) Log vending transactions // 0008 - (P) Log items drop/picked by players // 0016 - (L) Log items drop/looted by monsters // 0032 - (S) Log NPC transactions (buy/sell) // 0064 - (N) Log Script transactions (items deleted/acquired through quests) // 0128 - (M) Log items stolen from mobs (Steal/Gank) // 0256 - (C) Log player-used items // 0512 - (M) Log MVP prize items // 1024 - (A) Log player created/deleted items (through @/# commands) // 2048 - (R) Log items placed/retrieved from storage. // 4096 - (G) Log items placed/retrieved from guild storage. // 8192 - (E) Log mail system transactions. // 16384 - ( Log buying store transactions // Example: Log trades+vending+script items+created items: 2+4+64+1024 = 1094 enable_logs: 1 // Use MySQL Logs? (SQL Version Only) sql_logs: 0 // LOGGING FILTERS // ============================================================= // if any condition is true then the item will be logged // 0 = Don't log at all // 1 = Log any item // Advanced Filter Bits by item type: || // 0002 - Healing items (0) // 0004 - Etc Items(3) + Arrows (10) // 0008 - Usable Items(2) + Lures,Scrolls(11) + Usable Cash Items(18) // 0016 - Weapon(4) // 0032 - Shields,Armor,Headgears,Accessories,etc(5) // 0064 - Cards(6) // 0128 - Pet Accessories(8) + Eggs(7) (well, monsters don't drop 'em but we'll use the same system for ALL logs) // 0256 - Log expensive items ( >= price_items_log) // 0512 - Log big amount of items ( >= amount_items_log) // 1024 - Log refined items (if their refine >= refine_items_log ) // 2048 - Log rare items (if their drop chance <= rare_items_log ) // Examples: (log filters) // log_filter: 1 = logs ANY items // log_filter: 2 = logs only HEALING items // log_filter: 4 = logs only Etc Items and Arrows // log_filter: 64 = logs only Cards // log_filter: 322 = logs only Healing items, Cards and those items which price is >= price_items_log // log_filter: 4080 = logs all items (including all rare, big amount) exept healing, etc, arrows and useble ones log_filter: 1 // Log Items which Refine >= refine_items_log refine_items_log: 5 // Log Items whith min drop rate <= rare_items_log // 1 = 0.01%, 100 = 1% drop chance, etc rare_items_log: 5 // don't log it if the current item buy price < price_items_log price_items_log: 1000 // don't log it if the current item amount < amount_items_log amount_items_log: 100 //============================================================= // Log Dead Branch Usage log_branch: 0 // Track Zeny Changes // Filter settings // 0 - don't log; 1 - log any zeny changes; 2.....1000000 - minimal absolut logging zeny value log_zeny: 0 // Log MVP Monster Drops // Outdated. Use Pick_Log instead. But this log could be useful to keep track slayed MVPs log_mvpdrop: 0 // Log GM Commands (set to minimum level of Logged Commands) log_gm: 40 // Log NPC 'logmes' commands log_npc: 0 // Log CHAT (Global, Whisper, Party, Guild, Main chat) // LOGGING FILTERS // ============================================================= // 0 = Don't log at all // 1 = Log EVERYTHING! // Advanced Filter Bits: || // 02 - Log Global messages // 04 - Log Whisper messages // 08 - Log Party messages // 16 - Log Guild messages // 32 - Log Main chat messages // 64 - Don't log anything when WOE is on // Example: // log_chat: 12 = logs both Whisper & Party messages // log_chat: 16 = logs only Guild messages // log_chat: 68 = logs only Whisper, when WOE is off log_chat: 0 // Dead Branch Log Table log_branch_db: 0 // Drops & Pickups Table log_pick_db: 0 // Zeny Table log_zeny_db: 0 // MVP Drop Table log_mvpdrop_db: 0 // GM Log Table log_gm_db: 0 // NPC Log Table log_npc_db: 0 // CHAT Log Table log_chat_db: 0 // Dead Branch Log File log_branch_file: 0 // Drops & Pickups Log File log_pick_file: 0 // Zeny Log File log_zeny_file: 0 // MVP Drop File log_mvpdrop_file: 0 // GM Log File log_gm_file: log/atcommandlog.log // NPC Log File log_npc_file: 0 // CHAT Log File log_chat_file: log/chatlog.log import: conf/import/log_conf.txt Edited March 19, 2012 by Emistry Codeboxed Content Quote Link to comment Share on other sites More sharing options...
jx4nk00 Posted March 15, 2012 Group: Members Topic Count: 18 Topics Per Day: 0.00 Content Count: 86 Reputation: 3 Joined: 02/24/12 Last Seen: August 2, 2016 Share Posted March 15, 2012 What do you need? i dont understand you Quote Link to comment Share on other sites More sharing options...
Pneuma Posted March 15, 2012 Group: Members Topic Count: 82 Topics Per Day: 0.02 Content Count: 846 Reputation: 138 Joined: 02/26/14 Last Seen: March 7, 2018 Share Posted March 15, 2012 (edited) He wants to beable to keep track of all trade logs in his sql db // Use MySQL Logs? (SQL Version Only) sql_logs: 0 change from 0 to 1 if you use mysql Edited March 15, 2012 by Pneuma Quote Link to comment Share on other sites More sharing options...
rko123 Posted March 15, 2012 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 32 Reputation: 0 Joined: 03/05/12 Last Seen: August 3, 2012 Author Share Posted March 15, 2012 yes i want to see all tradelogs , yes im using MySQL Logs after i change to 1 , how can i see the trade logs? is it auto create notepad for logs of the trades ? or i need to create one? Quote Link to comment Share on other sites More sharing options...
Pneuma Posted March 15, 2012 Group: Members Topic Count: 82 Topics Per Day: 0.02 Content Count: 846 Reputation: 138 Joined: 02/26/14 Last Seen: March 7, 2018 Share Posted March 15, 2012 You need to access your SQL db and look for the table 'trade' or 'trade_logs' Quote Link to comment Share on other sites More sharing options...
jx4nk00 Posted March 15, 2012 Group: Members Topic Count: 18 Topics Per Day: 0.00 Content Count: 86 Reputation: 3 Joined: 02/24/12 Last Seen: August 2, 2016 Share Posted March 15, 2012 (edited) You need to access your SQL db and look for the table 'trade' or 'trade_logs' this table exist? He wants to beable to keep track of all trade logs in his sql db // Use MySQL Logs? (SQL Version Only) sql_logs: 0 change from 0 to 1 if you use mysql YES // eAthena - Log Configuration File // Enable Logs? // 1 - Log all events. // Or, determine what to log by adding up the different events: // 0002 - (T) Log trades // 0004 - (V) Log vending transactions // 0008 - (P) Log items drop/picked by players // 0016 - (L) Log items drop/looted by monsters // 0032 - (S) Log NPC transactions (buy/sell) // 0064 - (N) Log Script transactions (items deleted/acquired through quests) // 0128 - (M) Log items stolen from mobs (Steal/Gank) // 0256 - (C) Log player-used items // 0512 - (M) Log MVP prize items // 1024 - (A) Log player created/deleted items (through @/# commands) // 2048 - (R) Log items placed/retrieved from storage. // 4096 - (G) Log items placed/retrieved from guild storage. // 8192 - (E) Log mail system transactions. // 16384 - ( Log buying store transactions // Example: Log trades+vending+script items+created items: 2+4+64+1024 = 1094 enable_logs: 1 // Use MySQL Logs? (SQL Version Only) sql_logs: 1 // LOGGING FILTERS // ============================================================= // if any condition is true then the item will be logged // 0 = Don't log at all // 1 = Log any item // Advanced Filter Bits by item type: || // 0002 - Healing items (0) // 0004 - Etc Items(3) + Arrows (10) // 0008 - Usable Items(2) + Lures,Scrolls(11) + Usable Cash Items(18) // 0016 - Weapon(4) // 0032 - Shields,Armor,Headgears,Accessories,etc(5) // 0064 - Cards(6) // 0128 - Pet Accessories(8) + Eggs(7) (well, monsters don't drop 'em but we'll use the same system for ALL logs) // 0256 - Log expensive items ( >= price_items_log) // 0512 - Log big amount of items ( >= amount_items_log) // 1024 - Log refined items (if their refine >= refine_items_log ) // 2048 - Log rare items (if their drop chance <= rare_items_log ) // Examples: (log filters) // log_filter: 1 = logs ANY items // log_filter: 2 = logs only HEALING items // log_filter: 4 = logs only Etc Items and Arrows // log_filter: 64 = logs only Cards // log_filter: 322 = logs only Healing items, Cards and those items which price is >= price_items_log // log_filter: 4080 = logs all items (including all rare, big amount) exept healing, etc, arrows and useble ones log_filter: 1 // Log Items which Refine >= refine_items_log refine_items_log: 5 // Log Items whith min drop rate <= rare_items_log // 1 = 0.01%, 100 = 1% drop chance, etc rare_items_log: 5 // don't log it if the current item buy price < price_items_log price_items_log: 1000 // don't log it if the current item amount < amount_items_log amount_items_log: 100 //============================================================= // Log Dead Branch Usage log_branch: 0 // Track Zeny Changes // Filter settings // 0 - don't log; 1 - log any zeny changes; 2.....1000000 - minimal absolut logging zeny value log_zeny: 0 // Log MVP Monster Drops // Outdated. Use Pick_Log instead. But this log could be useful to keep track slayed MVPs log_mvpdrop: 0 // Log GM Commands (set to minimum level of Logged Commands) log_gm: 40 // Log NPC 'logmes' commands log_npc: 0 // Log CHAT (Global, Whisper, Party, Guild, Main chat) // LOGGING FILTERS // ============================================================= // 0 = Don't log at all // 1 = Log EVERYTHING! // Advanced Filter Bits: || // 02 - Log Global messages // 04 - Log Whisper messages // 08 - Log Party messages // 16 - Log Guild messages // 32 - Log Main chat messages // 64 - Don't log anything when WOE is on // Example: // log_chat: 12 = logs both Whisper & Party messages // log_chat: 16 = logs only Guild messages // log_chat: 68 = logs only Whisper, when WOE is off log_chat: 0 // Dead Branch Log Table log_branch_db: 0 // Drops & Pickups Table log_pick_db: 0 // Zeny Table log_zeny_db: 0 // MVP Drop Table log_mvpdrop_db: 0 // GM Log Table log_gm_db: 0 // NPC Log Table log_npc_db: 0 // CHAT Log Table log_chat_db: 0 // Dead Branch Log File log_branch_file: 0 // Drops & Pickups Log File log_pick_file: 0 // Zeny Log File log_zeny_file: 0 // MVP Drop File log_mvpdrop_file: 0 // GM Log File log_gm_file: log/atcommandlog.log // NPC Log File log_npc_file: 0 // CHAT Log File log_chat_file: log/chatlog.log import: conf/import/log_conf.txt Edited March 19, 2012 by Emistry Codeboxed Content Quote Link to comment Share on other sites More sharing options...
rko123 Posted March 16, 2012 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 32 Reputation: 0 Joined: 03/05/12 Last Seen: August 3, 2012 Author Share Posted March 16, 2012 i dont know but Trade_log doenst exist in my sql db what should i do?? Quote Link to comment Share on other sites More sharing options...
Eurydice Posted March 16, 2012 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 414 Reputation: 103 Joined: 11/13/11 Last Seen: September 28, 2013 Share Posted March 16, 2012 Trade logs are in the picklog table, it will be marked as "T". 1 Quote Link to comment Share on other sites More sharing options...
Question
rko123
can someone edit this .. i want to see the tradelogs thanks...
Edited by EmistryCodeboxed Content
Link to comment
Share on other sites
7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.