Two liitle Bugs with fix:
1.
[N - Quest] 87-88 Krasarang Wilds [Kick]
[HIDE]
Original
Code:
<If Condition="HasQuest(30032) && !IsQuestCompleted(30032)">
<!-- Rope -->
<While Condition="!IsObjectiveComplete(1, 30032)">
<If Condition="Me.Z > 150">
<CustomBehavior File="InteractWith" QuestId="30032" MobId="210039"
PreInteractMountStrategy="DismountOrCancelShapeshift"
X="-932.0538" Y="667.4965" Z="159.3763" />
<CustomBehavior File="WaitTimer" WaitTime="25000" />
</If>
</While>
<While Condition="!IsObjectiveComplete(2, 30032)">
<CustomBehavior File="InteractWith" QuestId="30032" MobId="210037" X="-865.8116" Y="578.5056" Z="37.96738" />
<!-- Malted Cave Barley -->
<CustomBehavior File="WaitTimer" WaitTime="10000" />
</While>
</If>
Fix
Code:
<If Condition="HasQuest(30032) && !IsQuestCompleted(30032)">
<!-- Rope -->
<While Condition="!IsObjectiveComplete(1, 30032)">
<If Condition="Me.Z > 150">
<CustomBehavior File="InteractWith" QuestId="30032" MobId="210039"
PreInteractMountStrategy="DismountOrCancelShapeshift"
X="-932.0538" Y="667.4965" Z="159.3763" />
<CustomBehavior File="WaitTimer" WaitTime="25000" />
</If>
</While>
<While Condition="!IsObjectiveComplete(2, 30032)">
<If Condition="Me.Z > 150">
<CustomBehavior File="InteractWith" QuestId="30032" MobId="210039"
PreInteractMountStrategy="DismountOrCancelShapeshift"
X="-932.0538" Y="667.4965" Z="159.3763" />
<CustomBehavior File="WaitTimer" WaitTime="25000" />
</If>
<CustomBehavior File="InteractWith" QuestId="30032" MobId="210037" X="-865.8116" Y="578.5056" Z="37.96738" />
<!-- Malted Cave Barley -->
<CustomBehavior File="WaitTimer" WaitTime="10000" />
</While>
</If>
Reason:
It happened a lot, that the bot stands above the cave, trying to get inside. He only uses the rope for the first quest objectiv, adding it the second fixed it.
[/HIDE]
2.
[Fly][N - Quest] Hyjal 80-82 [Kick]
[HIDE]
Original
Code:
<CustomBehavior QuestId="25308" File="RunMacro"
Macro="/cancelaura cat form\n/cancelaura bear form\n/cancelaura travel form\n/cancelaura ghost wolf" />
Fix:
Code:
<CustomBehavior QuestId="25308" File="RunMacro"
Macro="/cancelaura cat form\n/cancelaura katzengestalt\n/cancelaura bear form\n/cancelaura travel form\n/cancelaura ghost wolf" />
English macro for druids doesn't work for the german client...i dont know why. none of my druids ever could do this quest without this l
[/HIDE]
Both problems exist since months, but with the litle fix they work like they should