diff options
author | gepard1984 <gepard1984@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-01-11 17:35:28 +0000 |
---|---|---|
committer | gepard1984 <gepard1984@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-01-11 17:35:28 +0000 |
commit | e782bd5f2f7cd73634dfd8616a351a1b97c2109c (patch) | |
tree | 319366658d419bed37df23fc67b1c80957a141f4 /conf | |
parent | e18603bb1985d5628f1213999e92eaed8d008eb1 (diff) | |
download | hercules-e782bd5f2f7cd73634dfd8616a351a1b97c2109c.tar.gz hercules-e782bd5f2f7cd73634dfd8616a351a1b97c2109c.tar.bz2 hercules-e782bd5f2f7cd73634dfd8616a351a1b97c2109c.tar.xz hercules-e782bd5f2f7cd73634dfd8616a351a1b97c2109c.zip |
Picklog improvements:
- now it is finally possible to log every item players gain or lose
- added 3 log types: `I` for auctioned items, `B` for buying shop transactions and `X` for all other items transactions that don't fall into another category (for detailed explanation on all log types read `conf/log_athena.conf`)
- it also fixes items being logged as picked up/gained by player when in fact they were dropped on the ground due to full inventory
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15420 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'conf')
-rw-r--r-- | conf/log_athena.conf | 39 |
1 files changed, 21 insertions, 18 deletions
diff --git a/conf/log_athena.conf b/conf/log_athena.conf index 9e4492ada..37ab1b14f 100644 --- a/conf/log_athena.conf +++ b/conf/log_athena.conf @@ -8,25 +8,28 @@ //-------------------------------------------------------------- // Enable Logs? (Note 3) -// 0x0000 - Don't log at all -// 0x0001 - (T) Log trades -// 0x0002 - (V) Log vending transactions -// 0x0004 - (P) Log items drop/picked by players -// 0x0008 - (L) Log items drop/looted by monsters -// 0x0010 - (S) Log NPC transactions (buy/sell) -// 0x0020 - (N) Log Script transactions (items deleted/acquired through quests) -// 0x0040 - (D) Log items stolen from mobs (Steal/Gank) -// 0x0080 - (C) Log player-used items -// 0x0100 - (O) Log produced/ingredient items -// 0x0200 - (U) Log MVP prize items -// 0x0400 - (A) Log player created/deleted items (through @/# commands) -// 0x0800 - (R) Log items placed/retrieved from storage. -// 0x1000 - (G) Log items placed/retrieved from guild storage. -// 0x2000 - (E) Log mail system transactions. -// 0x4000 - (I) Log auction system transactions. -// 0x8000 - (B) Log buying store transactions +// 0x00000 - Don't log at all +// 0x00001 - (T) Log trades +// 0x00002 - (V) Log vending transactions +// 0x00004 - (P) Log items drop/picked by players +// 0x00008 - (L) Log items drop/looted by monsters +// 0x00010 - (S) Log NPC transactions (buy/sell) +// 0x00020 - (N) Log Script transactions (items deleted/acquired through quests) +// 0x00040 - (D) Log items stolen from mobs (Steal/Gank) +// 0x00080 - (C) Log player-used items (consumables/pet&hom&merc food/items used for skills&attacks) +// 0x00100 - (O) Log produced/ingredient items +// 0x00200 - (U) Log MVP prize items +// 0x00400 - (A) Log player created/deleted items (through @/# commands) +// 0x00800 - (R) Log items placed/retrieved from storage. +// 0x01000 - (G) Log items placed/retrieved from guild storage. +// 0x02000 - (E) Log mail system transactions. +// 0x04000 - (I) Log auction system transactions. +// 0x08000 - (B) Log buying store transactions +// 0x10000 - (X) Log all other transcations (rentals expiring/inserting cards/items removed by item_check/ +// rings deleted by divorce/pet egg (un)hatching/pet armor (un)equipping/Weapon Refine skill/Remove Trap skill) // Example: Log trades+vending+script items+created items: 1+2+32+1024 = 1059 -enable_logs: 0xFFFF +// Please note that moving items from inventory to cart and back is not logged by design. +enable_logs: 0xFFFFF // Use MySQL Logs? [SQL Version Only] (Note 1) sql_logs: no |