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

Trinity 1.8.28

Status
Not open for further replies.
I found that the Kite mode and kite limit were being completely ignored when using vault in combat, it would continually vault if any target was in 10m range, regardless of the kitelimit or mode.

I fixed it with this in Trinity\Combat\Abilities\DemonHunter.cs:

Change line 187 from:
Code:
                (CurrentTarget.RadiusDistance <= 10f || TargetUtil.AnyMobsInRange(10)) &&

TO:
Code:
                //(CurrentTarget.RadiusDistance <= 10f || TargetUtil.AnyMobsInRange(10)) &&
                Settings.Combat.DemonHunter.KiteMode != Config.Combat.KiteMode.Never &&
                (
                    (Settings.Combat.DemonHunter.KiteMode == Config.Combat.KiteMode.Always && TargetUtil.AnyMobsInRange(Settings.Combat.DemonHunter.KiteLimit)) ||
                    ((Settings.Combat.DemonHunter.KiteMode == Config.Combat.KiteMode.Elites || Settings.Combat.DemonHunter.KiteMode == Config.Combat.KiteMode.Bosses) && TargetUtil.AnyElitesInRange(Settings.Combat.DemonHunter.KiteLimit))
                ) &&


While that blankets both Elites and Bosses as being handled the same, I think it's much better than how it is now.
 
Hello there, i was wondering, does anyone here know HOW to find the settings, to change the Difficulty settings it uses? been looking arround, and i cant find any way, to set my bot to do ''hard'' mode, it keeps on doing normal, and thats abit of a waste with my current gear!

If anyone know where on there, i can access the difficulty settings, i would love that!

sorry for posting it here, but i was just guessing it was a trinity setting!
 
Not sure if DB or Trinity issue, bug report x-post from DB beta thread... I've put it inside spoilers since its a long post :)
The bot also picks up random gear even though I have disable every pickup except legendaries.
so far the bot has been picking up magic/rare sources, 1h wands, 1h swords, 2h maces.. even though I have set all pickup to none!
ConfigPickup.xaml contents below.. Isn't this where your settings get saved?
Code:
<UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:ut="clr-namespace:Trinity.UIComponents"
             mc:Ignorable="d" Foreground="{DynamicResource TextBrush}" Background="DarkGray"
             d:DesignHeight="700" d:DesignWidth="390">
    <UserControl.Resources>
        <ResourceDictionary>
            <!-- Don't format this line otherwise Db can't open config window -->
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="..\Template.xaml"/>
            </ResourceDictionary.MergedDictionaries>

            <ut:FlagsEnumValueConverter x:Key="flagsEnumValueConverter"/>
            <ut:EnumVisibilityConverter x:Key="enumVisibilityConverter" />
            <ut:IntToStringConverter x:Key="intToStringConverter"/>
        </ResourceDictionary>
    </UserControl.Resources>
    <ScrollViewer>
        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="Auto"/>
                <RowDefinition Height="Auto"/>
                <RowDefinition Height="Auto"/>
                <RowDefinition Height="Auto"/>
                <RowDefinition Height="Auto"/>
                <RowDefinition Height="Auto"/>
                <RowDefinition Height="Auto"/>
                <RowDefinition Height="Auto"/>
                <RowDefinition Height="Auto"/>
                <RowDefinition Height="*"/>
                <RowDefinition Height="Auto"/>
            </Grid.RowDefinitions>
            <Grid Grid.Row="0">
                <TextBlock FontWeight="Bold" Text="Choose Item Rules Type:" TextAlignment="Center" Margin="5"/>
            </Grid>
            <Grid Grid.Row="1" Margin="5" HorizontalAlignment="Center">
                <Grid.RowDefinitions>
                    <RowDefinition />
                    <RowDefinition Height="Auto" />
                    <RowDefinition Height="Auto" />
                </Grid.RowDefinitions>
                <WrapPanel HorizontalAlignment="Center">
                    <ComboBox Width="180" SelectedValuePath="Tag" SelectedValue="{Binding Path=Loot.ItemFilterMode}"  Margin="0,0,25,0" >
                        <ComboBoxItem Content="Trinity Scoring Only" Tag="TrinityOnly" IsSelected="True" ToolTip="Uses Trinity Scoring Only (see Trinity Town-Runs Tab)" />
                        <ComboBoxItem Content="File Based Script Rules" Tag="TrinityWithItemRules" ToolTip="Utilizes Item Rulesets (see ItemRules directory)" />
                        <ComboBoxItem Content="Demonbuddy Loot Rules" Tag="DemonBuddy" ToolTip="Use the Built-in Demonbuddy loot rule logic (see Demonbuddy Settings tab)" />
                    </ComboBox>
                </WrapPanel>
                <TextBlock Grid.Row="1" 
                           Text="WARNING : This mode can sell or salvage your legendary items" 
                           HorizontalAlignment="Center" 
                           FontWeight="Bold" 
                           FontSize="12" 
                           Foreground="#FFF90505" 
                           Visibility="{Binding Path=Loot.ItemFilterMode, Converter={StaticResource enumVisibilityConverter}, ConverterParameter=TrinityWithItemRules}"/>
                <Button Grid.Row="2" HorizontalAlignment="Center"
                        Style="{DynamicResource LinkButton}"
                        Command="{Binding Path=HelpLinkCommand}" 
                        CommandParameter="http://www.thebuddyforum.com/demonbuddy-forum/plugins/trinity/91602-plugin-item-rules-2-file-based-scripting-language.html"
                        Visibility="{Binding Path=Loot.ItemFilterMode, Converter={StaticResource enumVisibilityConverter}, ConverterParameter=TrinityWithItemRules}">
                    Explainations of Script Rules by Original developer
                </Button>
            </Grid>
            <Grid Grid.Row="2">
                <StackPanel HorizontalAlignment="Center">
                    <TextBlock FontWeight="Bold" Margin="5" Text="Trinity Loot Pickup Configuration :" TextAlignment="Center"/>
                    <WrapPanel>
                        <CheckBox Content="Pickup Gray Items" ToolTip="Pickup Gray Items" IsChecked="{Binding Path=Pickup.PickupGrayItems}" />
                        <CheckBox Content="Pickup White Items" ToolTip="Pickup White Items" IsChecked="{Binding Path=Pickup.PickupWhiteItems}" />
                    </WrapPanel>
                </StackPanel>
            </Grid>
            <Grid Grid.Row="3" Margin="5" HorizontalAlignment="Center">
                <Grid MinWidth="375">
                    <Grid.RowDefinitions>
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                    </Grid.RowDefinitions>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="Auto" />
                        <ColumnDefinition Width="*" />
                        <ColumnDefinition Width="*" />
                        <ColumnDefinition Width="Auto" />
                    </Grid.ColumnDefinitions>
                    <TextBlock Grid.Row="1" Grid.Column="1" FontWeight="Bold" Margin="5" Text="Magic Items:"/>
                    <TextBlock Grid.Row="1" Grid.Column="2" FontWeight="Bold" Margin="5" Text="Rare Items:"/>
                    <TextBlock Grid.Row="2" Grid.Column="0" FontWeight="Bold" Text="Weapons:"/>
                    <ComboBox Grid.Row="2" Grid.Column="1" SelectedValue="{Binding Path=Pickup.WeaponBlueLevel}" SelectedValuePath="Tag" Margin="8,2">
                        <ComboBoxItem Content="None" Tag="0" />
                        <ComboBoxItem Content="1+" Tag="1" />
                        <ComboBoxItem Content="5+" Tag="5" />
                        <ComboBoxItem Content="10+" Tag="10" />
                        <ComboBoxItem Content="15+" Tag="15" />
                        <ComboBoxItem Content="20+" Tag="20" />
                        <ComboBoxItem Content="25+" Tag="25" />
                        <ComboBoxItem Content="30+" Tag="30" />
                        <ComboBoxItem Content="35+" Tag="35" />
                        <ComboBoxItem Content="40+" Tag="40" />
                        <ComboBoxItem Content="45+" Tag="45" />
                        <ComboBoxItem Content="50+" Tag="50" />
                        <ComboBoxItem Content="51+" Tag="51" />
                        <ComboBoxItem Content="52+" Tag="52" />
                        <ComboBoxItem Content="53+" Tag="53" />
                        <ComboBoxItem Content="54+" Tag="54" />
                        <ComboBoxItem Content="55+" Tag="55" />
                        <ComboBoxItem Content="56+" Tag="56" />
                        <ComboBoxItem Content="57+" Tag="57" />
                        <ComboBoxItem Content="58+" Tag="58" />
                        <ComboBoxItem Content="59+" Tag="59" />
                        <ComboBoxItem Content="60+" Tag="60" />
                        <ComboBoxItem Content="65+" Tag="65" />
                        <ComboBoxItem Content="70+" Tag="70" />
                        <ComboBoxItem Content="73+" IsSelected="True" Tag="73" />
                    </ComboBox>
                    <ComboBox Grid.Row="2" Grid.Column="2" SelectedValue="{Binding Path=Pickup.WeaponYellowLevel}" SelectedValuePath="Tag" Margin="8,2">
                        <ComboBoxItem Content="None" Tag="0" />
                        <ComboBoxItem Content="1+" Tag="1" />
                        <ComboBoxItem Content="5+" Tag="5" />
                        <ComboBoxItem Content="10+" Tag="10" />
                        <ComboBoxItem Content="15+" Tag="15" />
                        <ComboBoxItem Content="20+" Tag="20" />
                        <ComboBoxItem Content="25+" Tag="25" />
                        <ComboBoxItem Content="30+" Tag="30" />
                        <ComboBoxItem Content="35+" Tag="35" />
                        <ComboBoxItem Content="40+" Tag="40" />
                        <ComboBoxItem Content="45+" Tag="45" />
                        <ComboBoxItem Content="50+" Tag="50" />
                        <ComboBoxItem Content="51+" Tag="51" />
                        <ComboBoxItem Content="52+" Tag="52" />
                        <ComboBoxItem Content="53+" Tag="53" />
                        <ComboBoxItem Content="54+" Tag="54" />
                        <ComboBoxItem Content="55+" Tag="55" />
                        <ComboBoxItem Content="56+" Tag="56" />
                        <ComboBoxItem Content="57+" Tag="57" />
                        <ComboBoxItem Content="58+" Tag="58" />
                        <ComboBoxItem Content="59+" Tag="59" />
                        <ComboBoxItem Content="60+" Tag="60" />
                        <ComboBoxItem Content="65+" Tag="65" />
                        <ComboBoxItem Content="70+" Tag="70" />
                        <ComboBoxItem Content="73+" IsSelected="True" Tag="73" />
                    </ComboBox>
                    <TextBlock Grid.Row="3" Grid.Column="0" FontWeight="Bold" Text="Armor:"/>
                    <ComboBox Grid.Row="3" Grid.Column="1" SelectedValue="{Binding Path=Pickup.ArmorBlueLevel}" SelectedValuePath="Tag" Margin="8,2">
                        <ComboBoxItem Content="None" Tag="0" />
                        <ComboBoxItem Content="1+" Tag="1" />
                        <ComboBoxItem Content="5+" Tag="5" />
                        <ComboBoxItem Content="10+" Tag="10" />
                        <ComboBoxItem Content="15+" Tag="15" />
                        <ComboBoxItem Content="20+" Tag="20" />
                        <ComboBoxItem Content="25+" Tag="25" />
                        <ComboBoxItem Content="30+" Tag="30" />
                        <ComboBoxItem Content="35+" Tag="35" />
                        <ComboBoxItem Content="40+" Tag="40" />
                        <ComboBoxItem Content="45+" Tag="45" />
                        <ComboBoxItem Content="50+" Tag="50" />
                        <ComboBoxItem Content="51+" Tag="51" />
                        <ComboBoxItem Content="52+" Tag="52" />
                        <ComboBoxItem Content="53+" Tag="53" />
                        <ComboBoxItem Content="54+" Tag="54" />
                        <ComboBoxItem Content="55+" Tag="55" />
                        <ComboBoxItem Content="56+" Tag="56" />
                        <ComboBoxItem Content="57+" Tag="57" />
                        <ComboBoxItem Content="58+" Tag="58" />
                        <ComboBoxItem Content="59+" Tag="59" />
                        <ComboBoxItem Content="60+" Tag="60" />
                        <ComboBoxItem Content="65+" Tag="65" />
                        <ComboBoxItem Content="70+" Tag="70" />
                        <ComboBoxItem Content="73+" IsSelected="True" Tag="73" />
                    </ComboBox>
                    <ComboBox Grid.Row="3" Grid.Column="2" SelectedValue="{Binding Path=Pickup.ArmorYellowLevel}" SelectedValuePath="Tag" Margin="8,2">
                        <ComboBoxItem Content="None" Tag="0" />
                        <ComboBoxItem Content="1+" Tag="1" />
                        <ComboBoxItem Content="5+" Tag="5" />
                        <ComboBoxItem Content="10+" Tag="10" />
                        <ComboBoxItem Content="15+" Tag="15" />
                        <ComboBoxItem Content="20+" Tag="20" />
                        <ComboBoxItem Content="25+" Tag="25" />
                        <ComboBoxItem Content="30+" Tag="30" />
                        <ComboBoxItem Content="35+" Tag="35" />
                        <ComboBoxItem Content="40+" Tag="40" />
                        <ComboBoxItem Content="45+" Tag="45" />
                        <ComboBoxItem Content="50+" Tag="50" />
                        <ComboBoxItem Content="51+" Tag="51" />
                        <ComboBoxItem Content="52+" Tag="52" />
                        <ComboBoxItem Content="53+" Tag="53" />
                        <ComboBoxItem Content="54+" Tag="54" />
                        <ComboBoxItem Content="55+" Tag="55" />
                        <ComboBoxItem Content="56+" Tag="56" />
                        <ComboBoxItem Content="57+" Tag="57" />
                        <ComboBoxItem Content="58+" Tag="58" />
                        <ComboBoxItem Content="59+" Tag="59" />
                        <ComboBoxItem Content="60+" Tag="60" />
                        <ComboBoxItem Content="65+" Tag="65" />
                        <ComboBoxItem Content="70+" Tag="70" />
                        <ComboBoxItem Content="73+" IsSelected="True" Tag="73" />
                    </ComboBox>
                    <TextBlock Grid.Row="4" Grid.Column="0" FontWeight="Bold" Text="Jewlery:"/>
                    <ComboBox Grid.Row="4" Grid.Column="1" SelectedValue="{Binding Path=Pickup.JewelryBlueLevel}" SelectedValuePath="Tag" Margin="8,2">
                        <ComboBoxItem Content="None" Tag="0" />
                        <ComboBoxItem Content="1+" Tag="1" />
                        <ComboBoxItem Content="5+" Tag="5" />
                        <ComboBoxItem Content="10+" Tag="10" />
                        <ComboBoxItem Content="15+" Tag="15" />
                        <ComboBoxItem Content="20+" Tag="20" />
                        <ComboBoxItem Content="25+" Tag="25" />
                        <ComboBoxItem Content="30+" Tag="30" />
                        <ComboBoxItem Content="35+" Tag="35" />
                        <ComboBoxItem Content="40+" Tag="40" />
                        <ComboBoxItem Content="45+" Tag="45" />
                        <ComboBoxItem Content="50+" Tag="50" />
                        <ComboBoxItem Content="51+" Tag="51" />
                        <ComboBoxItem Content="52+" Tag="52" />
                        <ComboBoxItem Content="53+" Tag="53" />
                        <ComboBoxItem Content="54+" Tag="54" />
                        <ComboBoxItem Content="55+" Tag="55" />
                        <ComboBoxItem Content="56+" Tag="56" />
                        <ComboBoxItem Content="57+" Tag="57" />
                        <ComboBoxItem Content="58+" Tag="58" />
                        <ComboBoxItem Content="59+" Tag="59" />
                        <ComboBoxItem Content="60+" Tag="60" />
                        <ComboBoxItem Content="65+" Tag="65" />
                        <ComboBoxItem Content="70+" Tag="70" />
                        <ComboBoxItem Content="73+" IsSelected="True" Tag="73" />
                    </ComboBox>
                    <ComboBox Grid.Row="4" Grid.Column="2" SelectedValue="{Binding Path=Pickup.JewelryYellowLevel}" SelectedValuePath="Tag" Margin="8,2">
                        <ComboBoxItem Content="None" Tag="0" />
                        <ComboBoxItem Content="1+" Tag="1" />
                        <ComboBoxItem Content="5+" Tag="5" />
                        <ComboBoxItem Content="10+" Tag="10" />
                        <ComboBoxItem Content="15+" Tag="15" />
                        <ComboBoxItem Content="20+" Tag="20" />
                        <ComboBoxItem Content="25+" Tag="25" />
                        <ComboBoxItem Content="30+" Tag="30" />
                        <ComboBoxItem Content="35+" Tag="35" />
                        <ComboBoxItem Content="40+" Tag="40" />
                        <ComboBoxItem Content="45+" Tag="45" />
                        <ComboBoxItem Content="50+" Tag="50" />
                        <ComboBoxItem Content="51+" Tag="51" />
                        <ComboBoxItem Content="52+" Tag="52" />
                        <ComboBoxItem Content="53+" Tag="53" />
                        <ComboBoxItem Content="54+" Tag="54" />
                        <ComboBoxItem Content="55+" Tag="55" />
                        <ComboBoxItem Content="56+" Tag="56" />
                        <ComboBoxItem Content="57+" Tag="57" />
                        <ComboBoxItem Content="58+" Tag="58" />
                        <ComboBoxItem Content="59+" Tag="59" />
                        <ComboBoxItem Content="60+" Tag="60" />
                        <ComboBoxItem Content="65+" Tag="65" />
                        <ComboBoxItem Content="70+" Tag="70" />
                        <ComboBoxItem Content="73+" IsSelected="True" Tag="73" />
                    </ComboBox>
                    <TextBlock Grid.Row="5" Grid.Column="0" Text="Legendaries:" ToolTip="Applies to ALL ITEMS - including Crafting Plans" FontWeight="Bold" Foreground="#FFA73B1E" />
                    <ComboBox Grid.Row="5" Grid.Column="1" Grid.ColumnSpan="2" SelectedValuePath="Tag" Margin="30,2" SelectedValue="{Binding Path=Pickup.LegendaryLevel}">
                        <ComboBoxItem Content="None" Tag="0" />
                        <ComboBoxItem Content="ilvl 1+" IsSelected="True" Tag="1" />
                        <ComboBoxItem Content="5+" Tag="5" />
                        <ComboBoxItem Content="10+" Tag="10" />
                        <ComboBoxItem Content="15+" Tag="15" />
                        <ComboBoxItem Content="20+" Tag="20" />
                        <ComboBoxItem Content="25+" Tag="25" />
                        <ComboBoxItem Content="30+" Tag="30" />
                        <ComboBoxItem Content="35+" Tag="35" />
                        <ComboBoxItem Content="40+" Tag="40" />
                        <ComboBoxItem Content="45+" Tag="45" />
                        <ComboBoxItem Content="50+" Tag="50" />
                        <ComboBoxItem Content="51+" Tag="51" />
                        <ComboBoxItem Content="52+" Tag="52" />
                        <ComboBoxItem Content="53+" Tag="53" />
                        <ComboBoxItem Content="54+" Tag="54" />
                        <ComboBoxItem Content="55+" Tag="55" />
                        <ComboBoxItem Content="56+" Tag="56" />
                        <ComboBoxItem Content="57+" Tag="57" />
                        <ComboBoxItem Content="58+" Tag="58" />
                        <ComboBoxItem Content="59+" Tag="59" />
                        <ComboBoxItem Content="60+" Tag="60" />
                        <ComboBoxItem Content="65+" Tag="65" />
                        <ComboBoxItem Content="70+" Tag="70" />
                        <ComboBoxItem Content="73+" Tag="73" />
                    </ComboBox>
                    
                    <TextBlock Grid.Row="6" Grid.Column="0" FontWeight="Bold" Text="Follower:"/>
                    <CheckBox Grid.Row="6" Grid.Column="1"  Content="Magic Follower Items" IsChecked="{Binding Path=Pickup.PickupBlueFollowerItems}" Margin="8,2"/>
                    <CheckBox Grid.Row="6" Grid.Column="2"  Content="Rare Follower Items" IsChecked="{Binding Path=Pickup.PickupYellowFollowerItems}" Margin="8,2"/>
                </Grid>
            </Grid>
            <UniformGrid Columns="2" Grid.Row="5" Margin="5">
                <CheckBox Content="Ignore Two Handed Weapons" IsChecked="{Binding Path=Pickup.IgnoreTwoHandedWeapons}" />
                <TextBlock Text="" />

                <CheckBox Content="Ignore Legendary in AoE" ToolTip="Ignore Legendary Items in AoE" IsChecked="{Binding Path=Pickup.IgnoreLegendaryInAoE}" />
                <CheckBox Content="Ignore Non-Legendary in AoE" ToolTip="Includes all non-legendaries" IsChecked="{Binding Path=Pickup.IgnoreNonLegendaryInAoE}" />

                <CheckBox Content="Ignore Legendary near Elites" ToolTip="Ignore Legendary Items Near Elites" IsChecked="{Binding Path=Pickup.IgnoreLegendaryNearElites}" />
                <CheckBox Content="Ignore Non-Legendary near Elites" ToolTip="Includes all non-legendaries" IsChecked="{Binding Path=Pickup.IgnoreNonLegendaryNearElites}" />

                <CheckBox Content="Ignore Gold in AoE" ToolTip="Ignore Legendary Items in AoE" IsChecked="{Binding Path=Pickup.IgnoreGoldInAoE}" />
                <CheckBox Content="Ignore Gold near Elites" ToolTip="Includes all non-legendaries" IsChecked="{Binding Path=Pickup.IgnoreGoldNearElites}" />
            </UniformGrid>
            <Grid Grid.Row="6" Margin="5">
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="1*" />
                    <ColumnDefinition Width="3*" />
                </Grid.ColumnDefinitions>
                <Grid.RowDefinitions>
                    <RowDefinition Height="Auto" />
                    <RowDefinition Height="Auto" />
                </Grid.RowDefinitions>
                <UniformGrid Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2">
                    <TextBlock FontWeight="Bold" Margin="5" Text="Misc Items:"/>
                    <CheckBox Content="Designs" IsChecked="{Binding Path=Pickup.Designs}" Margin="5"/>
                    <CheckBox Content="Plans" IsChecked="{Binding Path=Pickup.Plans}" Margin="5"/>
                    <CheckBox Content="Legendary Plans" IsChecked="{Binding Path=Pickup.LegendaryPlans}" Margin="5"/>
                    <CheckBox Content="Craft Tomes" IsChecked="{Binding Path=Pickup.CraftTomes}" Margin="5"/>
                    <CheckBox Content="Craft Materials" IsChecked="{Binding Path=Pickup.CraftMaterials}" Margin="5"/>
                    <CheckBox Content="Infernal Keys" IsChecked="{Binding Path=Pickup.InfernalKeys}" Margin="5"/>
                    <CheckBox Content="Low Level Items" IsChecked="{Binding Path=Pickup.PickupLowLevel}" Margin="5" ToolTip="Pickup Grey and White Items to level 6/11 (for questing)"/>
                    <CheckBox Content="Blood Shards" IsChecked="{Binding Path=Pickup.BloodShards}" Margin="5" ToolTip="Pickup Blood Shards"/>
                    <CheckBox Content="Rift Keys" IsChecked="{Binding Path=Pickup.LootRunKey}" Margin="5" ToolTip="Pickup Rift Key Fragments"/>
                </UniformGrid>
                <TextBlock Grid.Row="1" Grid.Column="0" Text="Misc Item Level:" FontWeight="Bold" HorizontalAlignment="Right" VerticalAlignment="Center" />
                <ComboBox Grid.Row="1" Grid.Column="1" SelectedValuePath="Tag" Margin="5" SelectedValue="{Binding Path=Pickup.MiscItemQuality}">
                    <ComboBoxItem Content="None" IsSelected="True" Tag="None" />
                    <ComboBoxItem Content="Common+" IsSelected="True" Tag="Common" />
                    <ComboBoxItem Content="Magic+" IsSelected="True" Tag="Magic" />
                    <ComboBoxItem Content="Rare+" IsSelected="True" Tag="Rare" />
                    <ComboBoxItem Content="Legendary" IsSelected="True" Tag="Legendary" />
                </ComboBox>
            </Grid>
            <Grid Grid.Row="7" Margin="5">
                <Grid.RowDefinitions>
                    <RowDefinition Height="Auto" />
                    <RowDefinition Height="Auto" />
                </Grid.RowDefinitions>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="*" />
                    <ColumnDefinition Width="*" />
                    <ColumnDefinition Width="2*" />
                </Grid.ColumnDefinitions>
                <TextBlock FontWeight="Bold" Margin="5" Text="Potion Cap:"/>
                <ComboBox Grid.Row="0" Grid.Column="1" SelectedValuePath="Tag" Margin="5" SelectedValue="{Binding Path=Pickup.PotionCount}">
                    <ComboBoxItem Content="0" Tag="0" />
                    <ComboBoxItem Content="25" Tag="25" />
                    <ComboBoxItem Content="50" Tag="50" />
                    <ComboBoxItem Content="98" IsSelected="True" Tag="98" />
                    <ComboBoxItem Content="198" Tag="198" />
                    <ComboBoxItem Content="Pickup All" Tag="6000" />
                </ComboBox>
                <TextBlock Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2" FontWeight="Bold" Text="Minimum Gold Pile:"/>
                <Slider Grid.Row="1" Grid.Column="2" Template="{DynamicResource Slider}"
                        Interval="500" Maximum="40000" Minimum="0" SmallChange="10" LargeChange="100"
                        TickFrequency="100" TickPlacement="BottomRight" IsSnapToTickEnabled="True"
                        Value="{Binding Path=Pickup.MinimumGoldStack}" />
            </Grid>
            <Grid Grid.Row="8">
                <Grid>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="Auto" />
                        <ColumnDefinition Width="*" />
                        <ColumnDefinition Width="Auto" />
                        <ColumnDefinition Width="Auto" />
                        <ColumnDefinition Width="Auto" />
                        <ColumnDefinition Width="Auto" />
                        <ColumnDefinition Width="Auto" />
                    </Grid.ColumnDefinitions>
                    <Label FontWeight="Bold" Margin="5">Gems:</Label>
                    <ComboBox Grid.Column="1" SelectedValuePath="Tag" Margin="0" SelectedValue="{Binding Path=Pickup.GemLevel, Converter={StaticResource intToStringConverter}}" >
                        <ComboBoxItem Content="Chipped+" Tag="0" />
                        <ComboBoxItem Content="Flawless Square+" IsSelected="True" Tag="14" />
                        <ComboBoxItem Content="Marquise+" IsSelected="True" Tag="15" />
                        <ComboBoxItem Content="Imperial+" IsSelected="True" Tag="16" />
                    </ComboBox>
                    <CheckBox Grid.Row="0" Grid.Column="2" Content="Emerald" 
                              IsChecked="{Binding Path=Pickup.GemType,Converter={StaticResource flagsEnumValueConverter}, ConverterParameter='Emerald'}" 
                              Margin="0" VerticalAlignment="Center"/>
                    <CheckBox Grid.Row="0" Grid.Column="3" Content="Topaz" 
                              IsChecked="{Binding Path=Pickup.GemType,Converter={StaticResource flagsEnumValueConverter}, ConverterParameter='Topaz'}" 
                              Margin="0" VerticalAlignment="Center"/>
                    <CheckBox Grid.Row="0" Grid.Column="4" Content="Amethyst" 
                              IsChecked="{Binding Path=Pickup.GemType,Converter={StaticResource flagsEnumValueConverter}, ConverterParameter='Amethyst'}" 
                              Margin="0" VerticalAlignment="Center"/>
                    <CheckBox Grid.Row="0" Grid.Column="5" Content="Ruby" 
                              IsChecked="{Binding Path=Pickup.GemType,Converter={StaticResource flagsEnumValueConverter}, ConverterParameter='Ruby'}" 
                              Margin="0" VerticalAlignment="Center"/>
                    <CheckBox Grid.Row="0" Grid.Column="6" Content="Diamond" 
                              IsChecked="{Binding Path=Pickup.GemType,Converter={StaticResource flagsEnumValueConverter}, ConverterParameter='Diamond'}" 
                              Margin="0" VerticalAlignment="Center"/>
                </Grid>
            </Grid>
            <!--Reset Buttons -->
            <UniformGrid Grid.Row="9" Margin="5" HorizontalAlignment="Center" VerticalAlignment="Bottom" Rows="1">
                <Button Margin="5" Grid.Column="0" HorizontalAlignment="Stretch" Command="{Binding ConfigureLootToQuesting}">Set Questing</Button>
                <Button Margin="5" Grid.Column="1" HorizontalAlignment="Stretch" Command="{Binding ConfigureLootToHunting}">Set Champion Hunting</Button>
            </UniformGrid>
            <!--Reset Buttons -->
            <Grid Grid.Row="10" Margin="5" HorizontalAlignment="Center">
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="Auto" />
                    <ColumnDefinition Width="Auto" />
                </Grid.ColumnDefinitions>
                <Button Margin="5" Grid.Column="0" HorizontalAlignment="Center" Command="{Binding ResetItemCommand}">Reset Trinity Defaults</Button>
            </Grid>
        </Grid>
    </ScrollViewer>
</UserControl>
 
Hello there, i was wondering, does anyone here know HOW to find the settings, to change the Difficulty settings it uses? been looking arround, and i cant find any way, to set my bot to do ''hard'' mode, it keeps on doing normal, and thats abit of a waste with my current gear!

If anyone know where on there, i can access the difficulty settings, i would love that!

sorry for posting it here, but i was just guessing it was a trinity setting!

Its in the DB setting/Bot - Bottom right "game difficulty"
 
Would love to have the ability for my bot to use up all the blood shards it accumulates once it reaches 500 which is the limit. Maybe set to buy specific item (weapon/shoulder/ring/etc.) then just stash any legendaries if any and salvage everything else. Right now, my bot stops doing runs because it keeps trying to pickup the blood shard while already having 500 stashed so it can't pick it up anymore
 
nothing stucks - i know this things, its very old one
happend time to time, after taking a portal to the another location
 
My DH is always running right into the mobs and then start fighting.
Any possibility to change this that he starts to fight away from the mobs?
 
how can i get exploding palm - the flesh is weak to cast earlier on elites instead of around 50% hp?
 
My DH is always running right into the mobs and then start fighting.
Any possibility to change this that he starts to fight away from the mobs?

i have the same problem.. i cant play any higher torment then 2-3 atm.. normally 4 - 5 is ez
 
DH Vault not working

Hello,

I'm using Vault with Danetta's set. Vault no longer works out of combat. Because of the set bonus, vault uses Hatred, not discipline, so I wonder if thats allowing it not to work. Also it would be nice if we could spam vault like smoke screen to:

Move across the map
Pick up health globes
stun monsters (with vault's rattling roll)

This is a very popular set for dh to be using this set to complete bounties, rifts, movement etc.

I realize this is probably hard to code for since you have to have the items to test to see how it works.
 

Attachments

Can anyone tell me why my Trinity plugin vanishes from DB (in the plugin menu after DB is launched) after I replace the old one with the new?
 
[1]
[2]
And Bot tries to attack monsters behind a door forever.
Please prioritize opening door first when door is very close (with any(elite) monsters in attack range)
Same happened to me. In my monitoring, it happened too many times until i just shut it down.
 
DB is crashing whenever I try and open Trinity config a second time. Opening config always works once.
 
i got a problem with bounties ... if you die while clearing waves from a shrine, trinity doesn't get that the player has cleared all the waves after revive and your bot just explores forever (gold inactivity timer doesn't work then)... would be great if trinity could check objectives once in a while ... or is it faulty because of the profile?
 
This has probably been asked before, if so I am sorry.
Do you have any plans to, possibly, include a Blood Shard turn-in option? Would be great for botting overnight or longer without being able to access the computer.

Thanks in advance, keep up the great work!
 
Status
Not open for further replies.
Back
Top