AddingNewQuests #149
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "pot0to/Questionable:AddingNewQuests"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -1,6 +1,6 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "Theo",
"Author": "pot0to",
This seems strange.
@ -62,13 +62,13 @@
"Fly": true,
"Land": true,
"Action": "Wasshoi",
"CompletionQuestVariablesFlags": [
These are two completely different logic bits, I don't think Theo's usage of
CompletionQuestVariablesFlags
is wrong here; andRequiredQuestVariables
should be added instead of replacing it.I don't think
CompletionQuestVariablesFlags
will work here. This is a step where the game randomly assigns you 2 out of 4 locations to visit, and there are 6 possible combinations. If I understand this correctly, Theo's step 2/0 says 64 and 2/1 says 128, meaning it probably expects to complete them in that order. But if the game never assigns you location 2/0 and only gives you locations 2/1 and 2/2, then 2/1 will always get stuck. At least that is what happened to me, my quest path kept getting stuckIn other words, if the game assigns you locations 2/0 and 2/1, then the
CompletionQuestVariableFlag
for 2/1 should be 128. But if the game assigns you 2/1 and 2/2, thenCompletionQuestVariableFlag
for 2/1 should be 64. Since this can't be pinned down to a single number, I don't know if it'll work? (This is more or less speculation on my part based on what I think 64 and 128 mean here. I'll need to get this quest again to double check. But I do know I kept getting stuck last week when I ran this path.)