Howdy!
Figured I'd try and help out and fix the profile as I went past any bugs. Am in VoFW now.
In relation to the following open bug:
"Learn and Grow II: Tilling and Planting" (Learn and Grow II: Tilling and Planting - Quest - World of Warcraft)
[Ref: "[N - Quest] 86-87 Valley of the Four Winds [Kick] ($Rev: 2722 $)" @line 1052]
Bot tries to plant the seeds before tilling the soil.
Ref: Copyleft's problem report w/log"
Starting line 1052 in VoFW profile
The issue is that the first InteractWith is trying to "use" ItemId 80302 (the seeds), to till the soil. This is causing it to fail. Removal of that InteractByUsingItemId="80302" from the *first* InteractWith fixes the issue. Tested and working![Smile :) :)](https://cdn.jsdelivr.net/joypixels/assets/8.0/png/unicode/64/1f642.png)
So, the change makes it
Think there are a couple of other bug around here, I'll see if I get them and can see an easy fix too.
Hope this helps!
Figured I'd try and help out and fix the profile as I went past any bugs. Am in VoFW now.
In relation to the following open bug:
"Learn and Grow II: Tilling and Planting" (Learn and Grow II: Tilling and Planting - Quest - World of Warcraft)
[Ref: "[N - Quest] 86-87 Valley of the Four Winds [Kick] ($Rev: 2722 $)" @line 1052]
Bot tries to plant the seeds before tilling the soil.
Ref: Copyleft's problem report w/log"
Starting line 1052 in VoFW profile
Code:
<CustomBehavior File="InteractWith" QuestId="30254" QuestObjectiveIndex="1"
InteractByUsingItemId="80302" MobId="59985" CollectionDistance="2"
WaitForNpcs="False" PreInteractMountStrategy="DismountOrCancelShapeshift" >
<HuntingGrounds>
<Hotspot X="-166.28" Y="636.965" Z="165.4093" />
<Hotspot X="-171.543" Y="637.844" Z="165.4093" />
</HuntingGrounds>
</CustomBehavior>
<CustomBehavior File="InteractWith" QuestId="30254" QuestObjectiveIndex="2"
InteractByUsingItemId="80302" MobId="59990" CollectionDistance="2"
WaitForNpcs="False" PreInteractMountStrategy="DismountOrCancelShapeshift" >
<HuntingGrounds>
<Hotspot X="-166.28" Y="636.965" Z="165.4093" />
<Hotspot X="-171.543" Y="637.844" Z="165.4093" />
</HuntingGrounds>
</CustomBehavior>
The issue is that the first InteractWith is trying to "use" ItemId 80302 (the seeds), to till the soil. This is causing it to fail. Removal of that InteractByUsingItemId="80302" from the *first* InteractWith fixes the issue. Tested and working
![Smile :) :)](https://cdn.jsdelivr.net/joypixels/assets/8.0/png/unicode/64/1f642.png)
So, the change makes it
Code:
<CustomBehavior File="InteractWith" QuestId="30254" QuestObjectiveIndex="1"
MobId="59985" CollectionDistance="2"
WaitForNpcs="False" PreInteractMountStrategy="DismountOrCancelShapeshift" >
<HuntingGrounds>
<Hotspot X="-166.28" Y="636.965" Z="165.4093" />
<Hotspot X="-171.543" Y="637.844" Z="165.4093" />
</HuntingGrounds>
</CustomBehavior>
<CustomBehavior File="InteractWith" QuestId="30254" QuestObjectiveIndex="2"
InteractByUsingItemId="80302" MobId="59990" CollectionDistance="2"
WaitForNpcs="False" PreInteractMountStrategy="DismountOrCancelShapeshift" >
<HuntingGrounds>
<Hotspot X="-166.28" Y="636.965" Z="165.4093" />
<Hotspot X="-171.543" Y="637.844" Z="165.4093" />
</HuntingGrounds>
</CustomBehavior>
Think there are a couple of other bug around here, I'll see if I get them and can see an easy fix too.
Hope this helps!