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

Reapers Wraps and Health Globes (=

Enragerx

New Member
Joined
Jan 3, 2013
Messages
17
Reaction score
2
I was trying to figure out how I can force trinity to pick up health globes and discovered this code within trinity, is there a possibility to get this working would be amazing for necro routines with reapers, thanks for your amazing plugin.

<GroupBox>
<GroupBox.Header>
<CheckBox HorizontalAlignment="Center" FontWeight="Bold" Foreground="Tan" IsChecked="{Binding Path=Misc.CollectHealthGlobe}">Collect Health Globes</CheckBox>
</GroupBox.Header>
<StackPanel Visibility="{Binding Path=Misc.CollectHealthGlobe, Converter={StaticResource VisibleWhenTrueConverter}}">
<UniformGrid Columns="2">
<TextBlock Text="Globe Health %" FontWeight="Normal" VerticalAlignment="Center"/>
<Slider Grid.Column="1" Template="{DynamicResource SliderEditable}"
Interval="500" Maximum="100" Minimum="0"
SmallChange="1" LargeChange="5"
TickPlacement="None"
Value="{Binding Path=Misc.HealthGlobeLevel, Converter={StaticResource PercentConverter}}"
HorizontalAlignment="Stretch" Margin="2,0"/>
<TextBlock Grid.Column="2" Text="Globe Search Distance" FontWeight="Normal" VerticalAlignment="Center"/>
<Slider Grid.Column="3" Template="{DynamicResource SliderEditable}"
Interval="500" Maximum="120" Minimum="5"
SmallChange="5" LargeChange="25" TickPlacement="None"
Value="{Binding Path=Misc.HealthGlobeSearchDistance, Converter={StaticResource PercentConverter}}"
HorizontalAlignment="Stretch" Margin="2,0"
ToolTip="Only applies when Reaper's Wraps are equipped"/>
 
Back
Top