Jump to content

RunCode if quest objectives not complete


Marshalek

Recommended Posts

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)); }" />

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...