Nuok
Community Developer
- Joined
- Jan 15, 2010
- Messages
- 975
- Reaction score
- 28
That doesn't appear to be the issue. Its related to the If conditionals handling quest 26139 Into Arathi and 28573 Hero's Call: Arathi Basin!. I wrote a TEST.XML (attached) that displays the completion status of both. The log output from the test is:
So when you restart and it encounters the following if statement:Code:[Profile Message]: COMPLETED 26139 'Into Arathi' [Profile Message]: NOT COMPLETED 28573 'Hero's Call: Arathi Highlands!'
When the user restarts, neither 26139 or 28573 is in the quest log so it attempts the PickUp of 28573 which is no longer available (since restarted at level 30.)Code:<If Condition="(!HasQuest(26139)) && (!HasQuest(28573))" > <PickUp QuestName="Hero's Call: Arathi Highlands!" QuestId="28573" GiverName="Hero's Call Board" GiverId="207320" GiverType="Object" X="-4935.745" Y="-917.5314" Z="501.6594" /> </If>
IsQuestCompleted() now returns true not just if the quest is in your log with completed objectives, but also if it was ever turned in as complete. Just work that into the conditional logic to resolve.
Thanks i didn't know this about isquestcomplete i will work my way through and make the changes
