Location Task - Current Location
AnZaNaMa opened this issue ยท 6 comments
This kind of seems like an oversight or something, but could you add a button in the creation menu of location tasks that sets the destination to your current location? It would make things a bit simpler.
Oh, and while I'm here, how do you make completion of one quest lock other quests?
I'll try and add a quick location button in at a later date.
Locking other quests involves setting up the correct 'Quest Logic'. It might be worth looking up Logic Gates if you don't know what each of the options mean. If you wanted something along the lines of what HQM does, you'd likely want NOR logic linking optional quest together (allows only one to complete then locks the others) and possibly set the visibility to show only when unlocked (hides the optional quests when unavailable)
So I have something like this. The nether star is the parent quest. It has AND logic and is set to be a main quest. Each of the three child quests are linked to the parent quest and each other like you said and have XOR logic. They are set isMain = false. Even though after I completed the quest on the left, it greyed out the others, it still allowed me to complete them for some reason. Why is this?
I understand how logic gates work, so do I just set them all to NOR and link them all to the same parent quest?