I am trying to build a very simple grind profile. Basically what it's supposed to do is stay at one location and kill these certain type of mobs. The profile that I built works fine, but I am wanting to change something. Because of the low level mobs I want to kill, I can just use 1 spell and AoE them down.
How do I get HB to use just the 1 spell that I want it to use, instead of using the combat routines it has built in? This is my profile:
I was reading the wiki and I came across this code, but I haven't been successful at implementing it:
Thanks in advance!
How do I get HB to use just the 1 spell that I want it to use, instead of using the combat routines it has built in? This is my profile:
Code:
<GrindArea>
<Name>Test</Name> <!-- optional -->
<TargetMinLevel>1</TargetMinLevel>
<TargetMaxLevel>91</TargetMaxLevel>
<Factions>XXXX</Factions>
<LootRadius>30</LootRadius> <!-- optional -->
<MaxDistance>15</MaxDistance> <!-- optional -->
<MaximumHotspotTime></MaximumHotspotTime> <!-- optional; in milliseconds -->
<RandomizeHotspots>False</RandomizeHotspots> <!-- optional -->
<Hotspots>
<Hotspot X="-XXX.XXX" Y="-XXXX.XXX" Z="XX.XXXXX" />
</Hotspots>
</GrindArea>
I was reading the wiki and I came across this code, but I haven't been successful at implementing it:
Code:
<CustomBehavior File="CastSpellOn"
MobId="XXX"
SpellId="XXX"
X="-XXX.XXX" Y="-XXXX.XXX" Z="XX.XXXXX" />
Thanks in advance!