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

How to make it drop Rares/Whites in town?

ive looked threw a bunch of them without any luck. Apperciate the help though. without knowing the actually file name, not gonna be able to find it. thanks though

I haven't played for over half a year now. But I went as far as re-downloaded the new bot to find the file for you.

It use to be here: Trinity\Coroutines\TrinityItemManager

But now it's been moved to here: Trinity\Items\TrinityItemManager

So it's in the file named: TrinityItemManager.txt



Where it must say:

if (Trinity.Settings.Loot.TownRun.DropInTownOption == DropInTownOption.All)
ItemDropper.Drop(item);​

and currently it says:
bool action = ShouldStashItem(item, ItemEvaluationType.Keep);
maybe changed to:
bool action = ShouldStashItem(item, ItemEvaluationType.All);


or actually it seems, that you have to change this part:


if (action)
ItemStashSellAppender.Instance.AppendItem(CachedACDItem.GetCachedItem(item), "Stash");

if (item.ItemQualityLevel >= ItemQuality.Legendary && Trinity.Settings.Loot.TownRun.DropInTownOption == DropInTownOption.All)
ItemDropper.Drop(item);

if (action && item.ItemQualityLevel >= ItemQuality.Legendary && Trinity.Settings.Loot.TownRun.DropInTownOption == DropInTownOption.Keep)
ItemDropper.Drop(item);

if (!action && item.ItemQualityLevel >= ItemQuality.Legendary && Trinity.Settings.Loot.TownRun.DropInTownOption == DropInTownOption.Vendor)
ItemDropper.Drop(item);​

to:

if (action)
ItemStashSellAppender.Instance.AppendItem(CachedACDItem.GetCachedItem(item), "Stash");

if (item.ItemQualityLevel >= ItemQuality.Legendary && Trinity.Settings.Loot.TownRun.DropInTownOption == DropInTownOption.All)
ItemDropper.Drop(item);

if (action && item.ItemQualityLevel >= ItemQuality.Legendary && Trinity.Settings.Loot.TownRun.DropInTownOption == DropInTownOption.All)
ItemDropper.Drop(item);

if (!action && item.ItemQualityLevel >= ItemQuality.Legendary && Trinity.Settings.Loot.TownRun.DropInTownOption == DropInTownOption.All)
ItemDropper.Drop(item);​

Please, let me know if you make it work and also if you make it drop all Legendaries+Blues+Yellows in TOWN at the end of each rift. :) I might do this setup soon to help out an IRL friend in the game, but it just takes forever to make multiple accounts geared up and ready to do T10+ speeds on their own.
 
Thanks for all the help. Tried looking for that file but i dont have it. closest one i have to that name is in \Plugins\Trinity\Framework\Actors\ActorTypes
ive looked threw a bunch of the files useing the search feature for "DropItems" for the search feild but no luck. ive redownloaded release DB with included trinity. ive also looked in DB beta with Trinity beta
and no luck. Not sure where im going wrong at.
 
Thanks for all the help. Tried looking for that file but i dont have it. closest one i have to that name is in \Plugins\Trinity\Framework\Actors\ActorTypes
ive looked threw a bunch of the files useing the search feature for "DropItems" for the search feild but no luck. ive redownloaded release DB with included trinity. ive also looked in DB beta with Trinity beta
and no luck. Not sure where im going wrong at.
u should rather try search this:

DropInTown

or

DropInTownOption

or

TownRun
 
Back
Top