kolton / d2bot-with-kolbot

d2bot game manager by D3STROY3R with kolbot libs by kolton for d2bs
346 stars 332 forks source link

Get dropper's logs? #1211

Open Kailai-Wang opened 5 years ago

Kailai-Wang commented 5 years ago

I'm just wondering is there anyway to get dropper's logs?

Like when did the dropper drop what items in which game? I tried to search for it but didn't have any luck. Thanks for any help !

DarkHorseDre commented 5 years ago

in your character config, set these settings: Config.ItemInfo = true; // Log stashed, skipped (due to no space) or sold items. Config.ItemInfoQuality = []; // The quality of sold items to log. See NTItemAlias.dbl for values. Example: Config.ItemInfoQuality = [6, 7, 8];

then access itemlog.txt from the logs folder

note that the bot will sell items when it has non matching items when at the shop (including via gambling). if you have fieldid enabled, it wont take items from the field to sell in the shop (unless your gold is below config.lowgold threshold)

Kailai-Wang commented 5 years ago

thank you for the help !