ShortRound
New Member
- Joined
- Jun 14, 2011
- Messages
- 781
Kay, a few more problems with Alliance Jade Forest.
The vehicle behavior is misbehaving for the quest Unleash Hell (quest id 31732) - if I remember rightly this used to target the appropriate mobs, now it just fires repeatedly in a straight line. Still completes but takes forever.
The quest behavior for Finding Your Center (quest id 29890) isn't working.
Targeting Ancient Spirits for the quest An Urgent Plea (quest id 29749) is very inconsistent. Singular problem? Or is this because it's going for grinding factions rather than mob types? Very bad with melee classes. Seems to hit with a basic attack and then waits for it to move out of range. Very, very slow.
Moving into melee range to use the Staff of Pei-Zhi on Wayward Ancestors for quest The Wayward Dead (quest id 29752). I'm not sure of the range it's possible to channel from but I do know you can use this from a distance.
Similar targeting issues to above with the quest To Bridge Earth and Sky (quest id 29754).
I've find an old (about six months) copy of Kick's profile with the Finding Your Center code working. It doesn't use a quest behavior.
Code:
<PickUp QuestName="Finding Your Center" QuestId="29890" GiverName="Lorewalker Cho" GiverId="56287" X="-566.1215" Y="-2303.628" Z="18.45896" />
<While Condition="((HasQuest(29890)) && (!IsQuestCompleted(29890)))" >
<If Condition="!Me.InVehicle" >
<CustomBehavior File="InteractWith" MobId="213754" ObjectType="Gameobject" Range="5" X="-630.2978" Y="-2364.32" Z="22.86646" />
</If>
<While Condition="Me.InVehicle" >
<If Condition="!IsQuestCompleted(29890)" >
<CustomBehavior File="Misc\RunLua" Lua="if UnitPower("player", 10) < 50 then OverrideActionBarButton2:Click() else OverrideActionBarButton1:Click() end " WaitTime="0" />
<Else>
<CustomBehavior File="WaitTimer" WaitTime="5000" GoalText="Waiting for quest to complete {TimeRemaining}" />
</Else>
</If>
</While>
</While>
<TurnIn QuestName="Finding Your Center" QuestId="29890" TurnInName="Anduin Wrynn" TurnInId="56434" X="-37.23264" Y="-3150.474" Z="86.16225" />