I'm attempting to write a script/plugin that will pick up a daily quest. When I attempt to run it, the StartQuest() method return the error that the quest was already completed. This is true, as I have done this daily previously. However, the daily is available for pickup again. Here is the partial code:
The error code is QuestAlreadyDone although I can manually pick up the daily. Is this a bug or am I picking up these quests wrong?
Code:
if (!StartQuest(QUESTID))
{
error = GetLastError();
Log("Unable to accept quest. Error is " + error.ToString());
}
The error code is QuestAlreadyDone although I can manually pick up the daily. Is this a bug or am I picking up these quests wrong?