Is it possible to make a itemCheck for ReapersWrap? If the char is wearing them it would be helpfull if the bots goes for healthglobes

so we could use that great items more useful
There is actually an option built into trinity for reapers when it's equipped, but apparently it's broken
<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"/>