Meyverick 0 Posted September 8, 2018 Share Posted September 8, 2018 Hello, Is it possible to make a things like If > Already Did The Quest (ID) ? Thank you! ? Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/ Share on other sites More sharing options...
FNV316 65 Posted September 8, 2018 Share Posted September 8, 2018 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) Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47229 Share on other sites More sharing options...
Meyverick 0 Posted September 8, 2018 Author Share Posted September 8, 2018 Thank you! ? Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47230 Share on other sites More sharing options...
Meyverick 0 Posted September 8, 2018 Author Share Posted September 8, 2018 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? ? Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47231 Share on other sites More sharing options...
zzzar 13 Posted September 8, 2018 Share Posted September 8, 2018 1 hour ago, Meyverick said: Quest.GetQuestNOTCompleted(questID); works? ? = !Quest.GetQuestCompleted(questID) Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47234 Share on other sites More sharing options...
Meyverick 0 Posted September 8, 2018 Author Share Posted September 8, 2018 1 minute ago, zzzar said: = !Quest.GetQuestCompleted(questID) Thank you! How did you know that Quest.GetQuestCompleted(###) exist? ? Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47235 Share on other sites More sharing options...
zzzar 13 Posted September 8, 2018 Share Posted September 8, 2018 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) Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47237 Share on other sites More sharing options...
Meyverick 0 Posted September 8, 2018 Author Share Posted September 8, 2018 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? Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47238 Share on other sites More sharing options...
zzzar 13 Posted September 8, 2018 Share Posted September 8, 2018 I use ILSpy Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47239 Share on other sites More sharing options...
Meyverick 0 Posted September 8, 2018 Author Share Posted September 8, 2018 Thank you! ? Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47240 Share on other sites More sharing options...
FNV316 65 Posted September 8, 2018 Share Posted September 8, 2018 Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47242 Share on other sites More sharing options...
Ordush 185 Posted September 8, 2018 Share Posted September 8, 2018 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. ? Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47243 Share on other sites More sharing options...
Meyverick 0 Posted September 8, 2018 Author Share Posted September 8, 2018 I added reference ? Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47256 Share on other sites More sharing options...
Droidz 2738 Posted September 8, 2018 Share Posted September 8, 2018 you neen to be in method to write code (create class and method, before to start to write code for WRobot read C# tuto) Link to comment https://wrobot.eu/forums/topic/10074-know-if-already-did-a-quest/#findComment-47265 Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now