October 25, 20187 yr Greetings fellow wroboters, I'm trying to include a "RunCode" step in my quest profile, to run some code only IF the objectives on a certain quest haven't been met yet. This is what I have for the RunCode param so far: if (!Quest.IsObjectiveComplete(2, 9999)) { wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(9999.262f, -9999.587f, 999.8167f)); } The above doesn't work - the code is run every time I get on that step, regardless of whether objective is complete or not. How can I make this work? This is what it looks like in the profile: <QuestsSorted Action="RunCode" NameClass="if (!Quest.IsObjectiveComplete(2, 9999)); { wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(9999.262f, -9999.587f, 999.8167f)); }" />
October 26, 20187 yr Hello, your code seem good you are sure about your quest id and objective number?
October 26, 20187 yr Author Quest and Objective IDs are good, let me do some more testing on this and I'll post back. Thanks @Droidz
Create an account or sign in to comment