Making a sick skyshard farming profile and want to expand it to other ideas, problem is I'm new at coding with HB and understanding behaviors. I'm using the runlikehell behavior and want it to run to each hotspot and face pull the mob, but for some reason it wont follow the behavior. It runs to the hotspot, kills, runs to next hotspot, kills. Over and over. Any tips? Thanks! (here is the applicable part of the code) Code: <While Condition="true"> <CustomBehavior File="UserSettings" MountDistance="15" UseFlightPaths="False" LootMobs="True" SkinMobs="True" NinjaSkin="False" HarvestHerbs="False" HarvestMinerals="False" PullDistance="3" KillBetweenHotspots="False" RessAtSpiritHealers="True" FindVendorsAutomatically="True" LootRadius="70" LogoutForInactivity="True" /> <CustomBehavior File="UserDialog" AllowBotStop="False" SoundCue="Exclamation" SoundCueInterval="5" ExpiryTime="10" ExpiryAction="InputEnabled_Continue" Text="Ready to Own!?" Title="Profile-INFO" /> <CustomBehavior File="FlyTo" X="1565.643" Y="1155.836" Z="452.0321" /> <CustomBehavior File="ForcedDismount" /> <If Condition="(Me.FreeBagSlots >= 4) && (Me.LowestDurabilityPercent > .3)" GoalText="Farming"> <SetGrindArea> <GrindArea> <Factions>2479</Factions> <CustomBehavior File="RunLikeHell" UseCTM="false" NumOfTimes="1" AllowCombat="false"> <Hotspot X="1565.643" Y="1155.836" Z="452.0321" /> <Hotspot X="1571.139" Y="1171.436" Z="443.7796" /> <Hotspot X="1550.239" Y="1191.129" Z="443.1931" /> <Hotspot X="1541.798" Y="1209.047" Z="443.1249" /> <Hotspot X="1515.592" Y="1199.571" Z="442.4893" /> <Hotspot X="1515.592" Y="1199.571" Z="442.4893" /> </CustomBehavior> <Hotspot X="1515.592" Y="1199.571" Z="442.4893" /> </GrindArea> </SetGrindArea> <GrindTo Condition="(Me.FreeBagSlots <= 4) || (Me.LowestDurabilityPercent <= .3)" GoalText="Farming" /> </If>