Trying to expand on the 60 -70 profile work that has already been done but i've run into this error a couple of times on other quests and I was hoping someone could point me in the right direction for resolving it.
One of the quests is "The Fallen Sisters", use Lurielle's Pendant on 7 Chill Nymphs
quest id 11314;
The Fallen Sisters - Quest - World of Warcraft
Pendant id;
Lurielle's Pendant - Item - World of Warcraft
nymphs id;
Chill Nymph - NPC - World of Warcraft
The code i'm using is;
<while Condition="HasQuest(11314) && !IsQuestCompleted(11314)">
</while>
The Error being thrown out by HB is;
[09:13:59:679] System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
at System.ThrowHelper.ThrowKeyNotFoundException()
at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
at Styx.Bot.Quest_Behaviors.UseItemOn..ctor(Dictionary`2 args) in c:\Users\jon\Downloads\Wow progs\Honorbuddy_2.0.0.4354\Quest Behaviors\UseItemOn.cs:line 181
Any help or guidance would be appreciated
One of the quests is "The Fallen Sisters", use Lurielle's Pendant on 7 Chill Nymphs
quest id 11314;
The Fallen Sisters - Quest - World of Warcraft
Pendant id;
Lurielle's Pendant - Item - World of Warcraft
nymphs id;
Chill Nymph - NPC - World of Warcraft
The code i'm using is;
<while Condition="HasQuest(11314) && !IsQuestCompleted(11314)">
PHP:
<While Condition="HasQuest(11314) &&
!IsQuestCompleted(11314)" >
<CustomBehavior File="UseItemOn"
QuestId="11314" ObjectType="Npc" MobId="23678" ItemId="33606" NumOfTimes="7"
/>
</While>
The Error being thrown out by HB is;
[09:13:59:679] System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
at System.ThrowHelper.ThrowKeyNotFoundException()
at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
at Styx.Bot.Quest_Behaviors.UseItemOn..ctor(Dictionary`2 args) in c:\Users\jon\Downloads\Wow progs\Honorbuddy_2.0.0.4354\Quest Behaviors\UseItemOn.cs:line 181
Any help or guidance would be appreciated