[HW][Vanu]Dailies and Story Quest #86
@ -57,7 +57,7 @@
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"StopDistance": 3,
|
||||
"$": "0 0 0 0 0 0 --> 1 0 0 0 0 16",
|
||||
"CompletionQuestVariablesFlags": [1,null,null,null,null,16]
|
||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,16]
|
||||
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -81,7 +81,7 @@
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"StopDistance": 3,
|
||||
"$": "1 0 0 0 0 16 --> 2 0 0 0 0 80",
|
||||
"CompletionQuestVariablesFlags": [2,null,null,null,null,80]
|
||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,64]
|
||||
liza
commented
This should probably be 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).
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -105,7 +105,7 @@
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"StopDistance": 3,
|
||||
"$": "2 0 0 0 0 80 --> 3 0 0 0 0 112",
|
||||
"CompletionQuestVariablesFlags": [3,null,null,null,null,112]
|
||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,32]
|
||||
liza
commented
Similarily, this should be Similarily, this should be `[null, null, null, null, null, 32]`
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
|
Loading…
Reference in New Issue
Block a user
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.