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

Is it possible to spessify to the bot: only pickup Yellow fist weapons ?

hemabussen

New Member
Joined
Dec 18, 2016
Messages
9
Reaction score
0
Is it possible to spessify to the bot: only pickup Yellow fist weapons ?

and save em in the chest

i want the bot to farm alot cuz i have shitloads of mats but i wanna do the cubing myself after.
 
Its not possible currently through the UI.

It would be fairly easy for you to hack it into the loot logic.

\Components\Combat\DefaultLootProvider.cs

Stuff this code into ShouldPickup and ShouldStash

Code:
            if (item.TrinityItemQuality == TrinityItemQuality.Rare && item.TrinityItemType == TrinityItemType.FistWeapon)
                return true;

or the attached file should work on .692
 

Attachments

Back
Top