[HW][Vanu]Dailies and Story Quest #86
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "AnimaMachinae/Questionable:vanu-vanu"
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?
Added:
@ -0,0 +57,4 @@
"Action": "Buffet (Sanuwa)",
"StopDistance": 3,
"$": "0 0 0 0 0 0 --> 1 0 0 0 0 16",
"CompletionQuestVariablesFlags": [1,null,null,null,null,16]
It is -typically- enough to only include the last digit, from looking at this quest it looks like the '1/2/3' as first digit just count the completed actions (e.g. for display in UI) -- depending on which action you complete first, that will always count as [1, ...].
The last digit (16/80/112) typically represents which of the actions you've completed, so regardless of when you do the action at this position, it'll always add +16 to the last digit. This would typically just be
[null, null, null, null, null, 16]
Interesting, besides the extraneous addition of the first number, that's how I initially had it, but when testing I ended up sitting in place waiting for a state that it never reached. There's likely an issue elsewhere as well then, but I should be able to test with a different quest sometime either today or shortly after, so I'll see what's up then.
The plugin only checks the parts that have any non-null value, so that would be odd.
@ -0,0 +81,4 @@
"Action": "Buffet (Sanuwa)",
"StopDistance": 3,
"$": "1 0 0 0 0 16 --> 2 0 0 0 0 80",
"CompletionQuestVariablesFlags": [2,null,null,null,null,80]
This should probably be
[null, null, null, null, null, 64]
, as this should only reflect the difference between now & the previous state (and 80 - 16 = 64).@ -0,0 +105,4 @@
"Action": "Buffet (Sanuwa)",
"StopDistance": 3,
"$": "2 0 0 0 0 80 --> 3 0 0 0 0 112",
"CompletionQuestVariablesFlags": [3,null,null,null,null,112]
Similarily, this should be
[null, null, null, null, null, 32]
Updated:
Added:
[HW][Vanu]Daily Questto [HW][Vanu]Dailies and Story QuestAdded: