September 8, 20187 yr Hello, Is it possible to make a things like If > Already Did The Quest (ID) ? Thank you! ?
September 8, 20187 yr Hey, int questID = 123; Quest.GetQuestCompleted(questID); if(Quest.GetQuestCompleted(questID)) { doStuff(); } Note: This checks your bots list of finished quest ids, not if the quest has been completed on the servers side (what you can't detect)
September 8, 20187 yr Author 9 minutes ago, FNV316 said: Hey, int questID = 123; Quest.GetQuestCompleted(questID); if(Quest.GetQuestCompleted(questID)) { doStuff(); } Note: This checks your bots list of finished quest ids, not if the quest has been completed on the servers side (what you can't detect) Quest.GetQuestNOTCompleted(questID); works? ?
September 8, 20187 yr 1 hour ago, Meyverick said: Quest.GetQuestNOTCompleted(questID); works? ? = !Quest.GetQuestCompleted(questID)
September 8, 20187 yr Author 1 minute ago, zzzar said: = !Quest.GetQuestCompleted(questID) Thank you! How did you know that Quest.GetQuestCompleted(###) exist? ?
September 8, 20187 yr 2 minutes ago, Meyverick said: Thank you! How did you know that Quest.GetQuestCompleted(###) exist? ? You mean in quest log? wManager.Wow.Helpers.Quest.HasQuest(questID)
September 8, 20187 yr Author I mean how to you know all this "function" (it's function?) exist? Sorry, I'm totally noob and I try to learn but it's very hard ? When I write wManager.Wow.Helpers.Quest. HasQuest is missing How do you find it "HasQuest) exist?
September 8, 20187 yr 3 hours ago, Meyverick said: I mean how to you know all this "function" (it's function?) exist? Sorry, I'm totally noob and I try to learn but it's very hard ? When I write wManager.Wow.Helpers.Quest. HasQuest is missing How do you find it "HasQuest) exist? Did i not already tell you what to do? You need to get the reference otherwise it won't be able to look. ?
September 8, 20187 yr you neen to be in method to write code (create class and method, before to start to write code for WRobot read C# tuto)
Create an account or sign in to comment