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

"Please clean your tabs"

Exile_For

New Member
Joined
Apr 7, 2017
Messages
5
Reaction score
0
Buddy prints the error: "tabs are full," but in fact the space is not full.
The only problem is MapBot. OldGrindBot works fine. What could be the problem?
 

Attachments

Last edited:
Tab passes a full tab check if it has at least 20% free space and can fit a 2x4 item (two-handed weapon).
 
Is it possible to ignore this condition? For example, as long as to put things?
Anything is possible if you want it enough :)

In EXtensions/CommonTasks/StashTask.cs, look for this line:

if (inventory.InventorySpacePercent >= 20 &&
inventory.CanFitItem(new Vector2i(2, 4)))

change to:

if (inventory.AvailableInventorySquares >= 1)
 
Back
Top