November 15, 20178 yr I'm trying to setup a profile that would kill world bosses. Since the hidden quests are not in my quest log, I have "Not required in quest log" set true but it tends to skip over the quest. I think it is because i have no complete condition. However, I'm not sure how to make it check the quests for world bosses to see if they have been done and to move on to the next step. For example, Galleon's quest is 32098. How do I make it check to see if that is complete before going to next quest?
November 15, 20178 yr Hello, http://www.wowhead.com/quest=32098/short-supply-reward#comments , try to use IsQuestFlaggedCompleted
November 15, 20178 yr Author I've been trying to use this, but I keep getting various Compilator errors. return GetQuestsCompleted([32098]); return IsQuestFlaggedCompleted(32098); return Quest.IsQuestFlaggedCompleted(32098); return QuestHelper.IsQuestFlaggedCompleted(32098);
November 16, 20178 yr return wManager.Wow.Helpers.Lua.LuaDoString<bool>("return IsQuestFlaggedCompleted(32098);");
November 16, 20178 yr Author 4 hours ago, Droidz said: return wManager.Wow.Helpers.Lua.LuaDoString<bool>("return IsQuestFlaggedCompleted(32098);"); Thanks again.
Create an account or sign in to comment