What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Not Picking Items (Last Slot) and Townrun

i have ur logs but i can't upload them, db doesn't take rar and zipped files won't go thro, the files 120 mbs big

edit: i'm just going to use a file hosting site, screw db's file manager, bunch of bullshit to begin with. I've tried for an hour to download another zip program and alot of other things.

http://www.filedropper.com/20002013-01-211838

theres the log, i let the bot run 15 mins after it had begun skipping everything and had a full inventory. I used a witchdocter. I also managed to attach the image in teh file manager. db item interface.webp

these are enabled

Debug Cache System
Debug Weight System
 
Last edited:
tried .16 trinity, giving me the same problem, 2 bots are full , they're skipping gems, pots, items.
heres more logs for you,

http://www.filedropper.com/18842013-01-212351
http://www.filedropper.com/77802013-01-220046

i used the same item setup as before (see previous post) nothing changed except for me changing to trinity .16

for now i'm going to set my bot to pick up rares and legendaries to conserve space, i'll figure what to do tomorrow

Try solution which i offered, 13h runtime, no legendaries skipped, 1 63 rare skipped from 400+ dropped. No stucks.
 
repair plz your demonbuddy, when i have one empty slot? it doesn pick up item ((
 
i have ur logs but i can't upload them, db doesn't take rar and zipped files won't go thro, the files 120 mbs big

edit: i'm just going to use a file hosting site, screw db's file manager, bunch of bullshit to begin with. I've tried for an hour to download another zip program and alot of other things.

http://www.filedropper.com/20002013-01-211838

theres the log, i let the bot run 15 mins after it had begun skipping everything and had a full inventory. I used a witchdocter. I also managed to attach the image in teh file manager.View attachment 78945

these are enabled

Debug Cache System
Debug Weight System
DB take .zip file
 
Hey, did like you said and activated "Debug Cache System" and "Debug Weight System" while
the bug was active for a minute or two.

Had to cut some of it out to fit into 1mb.

Did a quick inspection, seems the looting gets disabled?

Code:
[CacheManagement]Cache: [0000.0183ms] Ignored  By: MainObjectType.LootingDisabled Type: Item (Gold) Name: GoldSmall (4313)   Dist2Mid: 20 Dist2Rad: 20 ZDiff: 3 Radius: 0
 

Attachments

qwaa - you are the MAN!

What this means, is the profiles you guys are running is disabling looting via a <ToggleTargetting looting="False" /> tag, and it never gets re-enabled.

Code:
                // Handle Item-type Objects
                case GObjectType.Item:
                    {
                        // Not allowed to loot due to profile settings
                        if (!ProfileManager.CurrentProfile.PickupLoot || !LootTargeting.Instance.AllowedToLoot || LootTargeting.Instance.DisableLooting)
                        {
                            AddToCache = false;
                            c_IgnoreSubStep = "LootingDisabled";
                            break;
                        }
 
qwaa - you are the MAN!

What this means, is the profiles you guys are running is disabling looting via a <ToggleTargetting looting="False" /> tag, and it never gets re-enabled.

Code:
                // Handle Item-type Objects
                case GObjectType.Item:
                    {
                        // Not allowed to loot due to profile settings
                        if (!ProfileManager.CurrentProfile.PickupLoot || !LootTargeting.Instance.AllowedToLoot || LootTargeting.Instance.DisableLooting)
                        {
                            AddToCache = false;
                            c_IgnoreSubStep = "LootingDisabled";
                            break;
                        }

I don't have that tag in my profile tho? the only tag i have thats close to this is "<PickupLoot>True</PickupLoot>"

Could YAR's kickstarter profile have something to do with it? the profiles just a simple starter but it also has "<PickupLoot>True</PickupLoot>" Maybe that would mess up with the orignal profiles looting somehow?
 
hey guys, i think my friend found how to fix this bug (on some time, before developers repaired this bug, i hope)
Just put your potions of health in the right lower corner, in the place where we have a free slot. in last 24 hours when i did that, i didnt have a problems with this bug. So, check this
 
I actually found some looting="false" tag in my profile. Deleted that one and waiting to see the result.
 
I actually found some looting="false" tag in my profile. Deleted that one and waiting to see the result.

Or, try the new Trinity 1.7.1.17

I've included 4seti's fix, and forced ignoring (actually reverted the code...) for checking if the KillMonsters element, and looting is now ALWAYS enabled, regardless of ToggleTargetting looting=False.

Hope it solves this!
 
v.18 works great for me now... will inform after testing 1-2 days...
 
I finally just had this happen to me today :)

Working on an even better fix!
 
Back
Top