Minor cleanup for ARR WHM

pull/17/head v2.7
Liza 2024-08-14 11:40:49 +02:00
parent 76cc4000ca
commit 348fb06542
Signed by: liza
GPG Key ID: 7199F8D727D55F67
27 changed files with 2954 additions and 2071 deletions

View File

@ -1,5 +1,5 @@
<Project> <Project>
<PropertyGroup> <PropertyGroup>
<Version>2.6</Version> <Version>2.7</Version>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@ -317,6 +317,9 @@ public static class RoslynShortcuts
Assignment(nameof(SkipStepConditions.AetheryteUnlocked), Assignment(nameof(SkipStepConditions.AetheryteUnlocked),
skipStepConditions.AetheryteUnlocked, emptyStep.AetheryteUnlocked) skipStepConditions.AetheryteUnlocked, emptyStep.AetheryteUnlocked)
.AsSyntaxNodeOrToken(), .AsSyntaxNodeOrToken(),
Assignment(nameof(SkipStepConditions.NearPosition),
skipStepConditions.NearPosition, emptyStep.NearPosition)
.AsSyntaxNodeOrToken(),
Assignment(nameof(SkipStepConditions.ExtraCondition), Assignment(nameof(SkipStepConditions.ExtraCondition),
skipStepConditions.ExtraCondition, emptyStep.ExtraCondition) skipStepConditions.ExtraCondition, emptyStep.ExtraCondition)
.AsSyntaxNodeOrToken())))); .AsSyntaxNodeOrToken()))));
@ -335,6 +338,22 @@ public static class RoslynShortcuts
skipItemCondition.NotInInventory, skipItemCondition.NotInInventory,
emptyItem.NotInInventory))))); emptyItem.NotInInventory)))));
} }
else if (value is NearPositionCondition nearPositionCondition)
{
var emptyCondition = new NearPositionCondition();
return ObjectCreationExpression(
IdentifierName(nameof(NearPositionCondition)))
.WithInitializer(
InitializerExpression(
SyntaxKind.ObjectInitializerExpression,
SeparatedList<ExpressionSyntax>(
SyntaxNodeList(
Assignment(nameof(NearPositionCondition.Position),
nearPositionCondition.Position, emptyCondition.Position).AsSyntaxNodeOrToken(),
Assignment(nameof(NearPositionCondition.MaximumDistance),
nearPositionCondition.MaximumDistance, emptyCondition.MaximumDistance)
.AsSyntaxNodeOrToken()))));
}
else if (value is SkipAetheryteCondition skipAetheryteCondition) else if (value is SkipAetheryteCondition skipAetheryteCondition)
{ {
var emptyAetheryte = new SkipAetheryteCondition(); var emptyAetheryte = new SkipAetheryteCondition();

View File

@ -21,7 +21,10 @@
"InteractionType": "AcceptQuest", "InteractionType": "AcceptQuest",
"SkipConditions": { "SkipConditions": {
"AetheryteShortcutIf": { "AetheryteShortcutIf": {
"InSameTerritory": false "InSameTerritory": true,
"InTerritory": [
133
]
} }
} }
} }
@ -30,25 +33,17 @@
{ {
"Sequence": 1, "Sequence": 1,
"Steps": [ "Steps": [
{
"Position": {
"X": -271.3778,
"Y": 19.49745,
"Z": 96.23329
},
"TerritoryId": 148,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows"
},
{ {
"DataId": 1007850, "DataId": 1007850,
"Position": { "Position": {
"X": -271.87, "X": -271.87,
"Y": 19.663366, "Y": 19.663366,
"Z": 97.42883 "Z": 97.42883
}, },
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "SinglePlayerDuty" "InteractionType": "SinglePlayerDuty",
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows",
"Fly": true
} }
] ]
}, },
@ -61,6 +56,7 @@
"Y": 8.006159, "Y": 8.006159,
"Z": 268.78055 "Z": 268.78055
}, },
"StopDistance": 0.25,
"TerritoryId": 153, "TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil", "AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump", "InteractionType": "Jump",
@ -69,7 +65,33 @@
"X": -137.77051, "X": -137.77051,
"Y": 7.7094107, "Y": 7.7094107,
"Z": 275.28036 "Z": 275.28036
}}}, },
"DelaySeconds": 0.75
},
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
},
"StepIf": {
"Flying": "Unlocked"
}
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
},
{ {
"DataId": 1006751, "DataId": 1006751,
"Position": { "Position": {
@ -79,7 +101,7 @@
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "CompleteQuest", "InteractionType": "CompleteQuest",
"NextQuestId": 1080 "NextQuestId": 1080
} }
] ]
} }

View File

@ -5,6 +5,61 @@
{ {
"Sequence": 0, "Sequence": 0,
"Steps": [ "Steps": [
{
"Position": {
"X": -146.86935,
"Y": 8.006159,
"Z": 268.78055
},
"StopDistance": 0.25,
"TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump",
"JumpDestination": {
"Position": {
"X": -137.77051,
"Y": 7.7094107,
"Z": 275.28036
},
"DelaySeconds": 0.75
},
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
},
"StepIf": {
"Flying": "Unlocked",
"NearPosition": {
"Position": {
"X": -139.45221,
"Y": 8.712891,
"Z": 281.69678
},
"MaximumDistance": 3
}
}
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
},
{
"TerritoryId": 153,
"InteractionType": "EquipItem",
"ItemId": 4547
},
{ {
"DataId": 1006751, "DataId": 1006751,
"Position": { "Position": {
@ -21,43 +76,44 @@
"Sequence": 1, "Sequence": 1,
"Steps": [ "Steps": [
{ {
"DataId": 2002392,
"Position": { "Position": {
"X": -409.1981, "X": -416.5561,
"Y": 61.063103, "Y": 60.990234,
"Z": -153.9051 "Z": -148.63812
}, },
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "WalkTo", "InteractionType": "Combat",
"AetheryteShortcut": "Gridania", "EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
1937
],
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [ "AethernetShortcut": [
"[Gridania] Aetheryte Plaza", "[Gridania] Aetheryte Plaza",
"[Gridania] White Wolf Gate (Central Shroud)" "[Gridania] White Wolf Gate (Central Shroud)"
],
"Fly": true,
"CompletionQuestVariablesFlags": [
{
"Low": 3
},
null,
null,
null,
null,
null
] ]
}, },
{ {
"DataId": 2002392, "DataId": 2002392,
"Position": { "Position": {
"X": -416.5561, "X": -416.5561,
"Y": 60.990234, "Y": 60.990234,
"Z": -148.63812 "Z": -148.63812
},
"TerritoryId": 148,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
1937
]
}, },
{ "TerritoryId": 148,
"DataId": 2002392, "InteractionType": "Interact"
"Position": {
"X": -416.5561,
"Y": 60.990234,
"Z": -148.63812
},
"TerritoryId": 148,
"InteractionType": "Interact"
} }
] ]
}, },
@ -69,8 +125,9 @@
"X": -146.86935, "X": -146.86935,
"Y": 8.006159, "Y": 8.006159,
"Z": 268.78055 "Z": 268.78055
}, },
"TerritoryId": 153, "StopDistance": 0.25,
"TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil", "AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump", "InteractionType": "Jump",
"JumpDestination": { "JumpDestination": {
@ -78,17 +135,51 @@
"X": -137.77051, "X": -137.77051,
"Y": 7.7094107, "Y": 7.7094107,
"Z": 275.28036 "Z": 275.28036
}}}, },
{ "DelaySeconds": 0.75
"DataId": 1006751, },
"Position": { "SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
},
"StepIf": {
"Flying": "Unlocked",
"NearPosition": {
"Position": {
"X": -139.45221, "X": -139.45221,
"Y": 8.712891, "Y": 8.712891,
"Z": 281.69678 "Z": 281.69678
}, },
"TerritoryId": 153, "MaximumDistance": 3
"InteractionType": "CompleteQuest", }
"NextQuestId": 1081 }
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
},
{
"DataId": 1006751,
"Position": {
"X": -139.45221,
"Y": 8.712891,
"Z": 281.69678
},
"TerritoryId": 153,
"InteractionType": "CompleteQuest",
"NextQuestId": 1081
} }
] ]
} }

View File

@ -5,6 +5,56 @@
{ {
"Sequence": 0, "Sequence": 0,
"Steps": [ "Steps": [
{
"Position": {
"X": -146.86935,
"Y": 8.006159,
"Z": 268.78055
},
"StopDistance": 0.25,
"TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump",
"JumpDestination": {
"Position": {
"X": -137.77051,
"Y": 7.7094107,
"Z": 275.28036
},
"DelaySeconds": 0.75
},
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
},
"StepIf": {
"Flying": "Unlocked",
"NearPosition": {
"Position": {
"X": -139.45221,
"Y": 8.712891,
"Z": 281.69678
},
"MaximumDistance": 3
}
}
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
},
{ {
"DataId": 1006751, "DataId": 1006751,
"Position": { "Position": {
@ -21,24 +71,16 @@
"Sequence": 1, "Sequence": 1,
"Steps": [ "Steps": [
{ {
"Position": {
"X": -272.38885,
"Y": 12.935407,
"Z": -46.28064
},
"TerritoryId": 152,
"InteractionType": "WalkTo",
"AetheryteShortcut": "East Shroud - Hawthorne Hut"
},
{
"DataId": 1007852, "DataId": 1007852,
"Position": { "Position": {
"X": -272.38885, "X": -272.38885,
"Y": 12.935407, "Y": 12.935407,
"Z": -46.28064 "Z": -46.28064
}, },
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "Interact" "InteractionType": "Interact",
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
"Fly": true
} }
] ]
}, },
@ -47,35 +89,38 @@
"Steps": [ "Steps": [
{ {
"Position": { "Position": {
"X": -270.7748,
"Y": 13.192019,
"Z": -49.86504
},
"TerritoryId": 152,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": -270.7748,
"Y": 13.192019,
"Z": -49.86504
},
"TerritoryId": 152,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
1938,1939
]
},
{
"DataId": 2002394,
"Position": {
"X": -271.5343, "X": -271.5343,
"Y": 13.748352, "Y": 13.748352,
"Z": -51.773926 "Z": -51.773926
}, },
"TerritoryId": 152, "StopDistance": 2,
"InteractionType": "Interact" "TerritoryId": 152,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
1938,
1939
],
"CompletionQuestVariablesFlags": [
{
"Low": 4
},
null,
null,
null,
null,
null
]
},
{
"DataId": 2002394,
"Position": {
"X": -271.5343,
"Y": 13.748352,
"Z": -51.773926
},
"TerritoryId": 152,
"InteractionType": "Interact"
} }
] ]
}, },
@ -87,8 +132,9 @@
"X": -146.86935, "X": -146.86935,
"Y": 8.006159, "Y": 8.006159,
"Z": 268.78055 "Z": 268.78055
}, },
"TerritoryId": 153, "StopDistance": 0.25,
"TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil", "AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump", "InteractionType": "Jump",
"JumpDestination": { "JumpDestination": {
@ -96,17 +142,51 @@
"X": -137.77051, "X": -137.77051,
"Y": 7.7094107, "Y": 7.7094107,
"Z": 275.28036 "Z": 275.28036
}}}, },
{ "DelaySeconds": 0.75
"DataId": 1006751, },
"Position": { "SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
},
"StepIf": {
"Flying": "Unlocked",
"NearPosition": {
"Position": {
"X": -139.45221, "X": -139.45221,
"Y": 8.712891, "Y": 8.712891,
"Z": 281.69678 "Z": 281.69678
}, },
"TerritoryId": 153, "MaximumDistance": 3
"InteractionType": "CompleteQuest", }
"NextQuestId": 1082 }
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
},
{
"DataId": 1006751,
"Position": {
"X": -139.45221,
"Y": 8.712891,
"Z": 281.69678
},
"TerritoryId": 153,
"InteractionType": "CompleteQuest",
"NextQuestId": 1082
} }
] ]
} }

View File

@ -5,6 +5,56 @@
{ {
"Sequence": 0, "Sequence": 0,
"Steps": [ "Steps": [
{
"Position": {
"X": -146.86935,
"Y": 8.006159,
"Z": 268.78055
},
"StopDistance": 0.25,
"TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump",
"JumpDestination": {
"Position": {
"X": -137.77051,
"Y": 7.7094107,
"Z": 275.28036
},
"DelaySeconds": 0.75
},
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
},
"StepIf": {
"Flying": "Unlocked",
"NearPosition": {
"Position": {
"X": -139.45221,
"Y": 8.712891,
"Z": 281.69678
},
"MaximumDistance": 3
}
}
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
},
{ {
"DataId": 1006751, "DataId": 1006751,
"Position": { "Position": {
@ -22,69 +72,100 @@
"Steps": [ "Steps": [
{ {
"Position": { "Position": {
"X": -345.86627, "X": -346.83008,
"Y": -37.41542, "Y": -37.93451,
"Z": -247.93343 "Z": -236.64346
}, },
"TerritoryId": 138, "TerritoryId": 138,
"InteractionType": "WalkTo", "InteractionType": "WalkTo",
"AetheryteShortcut": "Western La Noscea - Aleport" "AetheryteShortcut": "Western La Noscea - Aleport",
"Fly": true,
"SkipConditions": {
"StepIf": {
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
],
"Flying": "Locked"
}
}
}, },
{ {
"DataId": 2002396, "DataId": 2002396,
"Position": { "Position": {
"X": -347.34113, "X": -347.34113,
"Y": -36.240234, "Y": -36.240234,
"Z": -249.6529 "Z": -249.6529
},
"TerritoryId": 138,
"InteractionType": "Emote",
"Emote":"pray",
"$": "0 0 17 16 0 0 -> 17 0 1 16 0 128"
}, },
{ "TerritoryId": 138,
"Position": { "InteractionType": "Emote",
"X": -338.8092, "Emote": "pray",
"Y": -15.966908, "$": "0 0 17 16 0 0 -> 17 0 1 16 0 128",
"Z": -407.21075 "CompletionQuestVariablesFlags": [
}, null,
"TerritoryId": 156, null,
"InteractionType": "WalkTo", null,
"AetheryteShortcut": "Mor Dhona" null,
null,
128
]
}, },
{ {
"DataId": 2002397, "DataId": 2002397,
"Position": { "Position": {
"X": -339.46753, "X": -339.46753,
"Y": -15.06073, "Y": -15.06073,
"Z": -403.21973 "Z": -403.21973
}, },
"TerritoryId": 156, "TerritoryId": 156,
"InteractionType": "Emote", "InteractionType": "Emote",
"Emote":"pray", "Emote": "pray",
"$": "17 0 1 16 0 128 -> 33 16 1 0 0 192" "AetheryteShortcut": "Mor Dhona",
"Fly": true,
"$": "17 0 1 16 0 128 -> 33 16 1 0 0 192",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
}, },
{ {
"Position": { "Position": {
"X": -255.17686, "X": -255.17686,
"Y": 59.31324, "Y": 59.31324,
"Z": -44.453175 "Z": -44.453175
}, },
"TerritoryId": 147, "TerritoryId": 147,
"InteractionType": "WalkTo", "InteractionType": "WalkTo",
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant" "AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
"Fly": true
}, },
{ {
"DataId": 2002398, "DataId": 2002398,
"Position": { "Position": {
"X": -253.46765, "X": -253.46765,
"Y": 60.68506, "Y": 60.68506,
"Z": -43.90027 "Z": -43.90027
}, },
"TerritoryId": 147, "TerritoryId": 147,
"InteractionType": "Emote", "InteractionType": "Emote",
"Emote":"pray", "Emote": "pray",
"$": "33 16 1 0 0 192 -> 0 0 0 0 0 0" "$": "33 16 1 0 0 192 -> 0 0 0 0 0 0",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
} }
] ]
}, },
@ -97,6 +178,7 @@
"Y": 8.006159, "Y": 8.006159,
"Z": 268.78055 "Z": 268.78055
}, },
"StopDistance": 0.25,
"TerritoryId": 153, "TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil", "AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump", "InteractionType": "Jump",
@ -105,16 +187,50 @@
"X": -137.77051, "X": -137.77051,
"Y": 7.7094107, "Y": 7.7094107,
"Z": 275.28036 "Z": 275.28036
}}}, },
{ "DelaySeconds": 0.75
"DataId": 1006751, },
"Position": { "SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
},
"StepIf": {
"Flying": "Unlocked",
"NearPosition": {
"Position": {
"X": -139.45221, "X": -139.45221,
"Y": 8.712891, "Y": 8.712891,
"Z": 281.69678 "Z": 281.69678
}, },
"TerritoryId": 153, "MaximumDistance": 3
"InteractionType": "Interact" }
}
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
},
{
"DataId": 1006751,
"Position": {
"X": -139.45221,
"Y": 8.712891,
"Z": 281.69678
},
"TerritoryId": 153,
"InteractionType": "Interact"
} }
] ]
}, },
@ -126,20 +242,21 @@
"X": 109.89845, "X": 109.89845,
"Y": 7.0051613, "Y": 7.0051613,
"Z": -45.239243 "Z": -45.239243
}, },
"TerritoryId": 154, "TerritoryId": 154,
"InteractionType": "WalkTo", "InteractionType": "WalkTo",
"AetheryteShortcut": "North Shroud - Fallgourd Float" "AetheryteShortcut": "North Shroud - Fallgourd Float",
"Fly": true
}, },
{ {
"DataId": 2002399, "DataId": 2002399,
"Position": { "Position": {
"X": 107.83545, "X": 107.83545,
"Y": 7.7057495, "Y": 7.7057495,
"Z": -45.15149 "Z": -45.15149
}, },
"TerritoryId": 154, "TerritoryId": 154,
"InteractionType": "Interact" "InteractionType": "Interact"
} }
] ]
}, },
@ -152,6 +269,7 @@
"Y": 8.006159, "Y": 8.006159,
"Z": 268.78055 "Z": 268.78055
}, },
"StopDistance": 0.25,
"TerritoryId": 153, "TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil", "AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump", "InteractionType": "Jump",
@ -160,19 +278,54 @@
"X": -137.77051, "X": -137.77051,
"Y": 7.7094107, "Y": 7.7094107,
"Z": 275.28036 "Z": 275.28036
}}}, },
{ "DelaySeconds": 0.75
"DataId": 1006751, },
"Position": { "SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
},
"StepIf": {
"Flying": "Unlocked",
"NearPosition": {
"Position": {
"X": -139.45221, "X": -139.45221,
"Y": 8.712891, "Y": 8.712891,
"Z": 281.69678 "Z": 281.69678
}, },
"TerritoryId": 153, "MaximumDistance": 3
"InteractionType": "Interact" }
}
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
},
{
"DataId": 1006751,
"Position": {
"X": -139.45221,
"Y": 8.712891,
"Z": 281.69678
},
"TerritoryId": 153,
"InteractionType": "Interact"
} }
] ]
},{ },
{
"Sequence": 5, "Sequence": 5,
"Steps": [ "Steps": [
{ {
@ -180,33 +333,47 @@
"X": 286.73157, "X": 286.73157,
"Y": 42.137627, "Y": 42.137627,
"Z": -202.96959 "Z": -202.96959
}, },
"TerritoryId": 139, "TerritoryId": 139,
"InteractionType": "WalkTo", "InteractionType": "WalkTo",
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake" "AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
"Fly": true,
"SkipConditions": {
"StepIf": {
"AetheryteUnlocked": "Outer La Noscea - Camp Overlook"
},
"AetheryteShortcutIf": {
"AetheryteUnlocked": "Outer La Noscea - Camp Overlook"
}
}
}, },
{ {
"Position": { "Position": {
"X": 118.0728, "X": 118.0728,
"Y": 74.37976, "Y": 74.37976,
"Z": -248.26317 "Z": -248.26317
},
"TerritoryId": 180,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Outer La Noscea - Camp Overlook"
}, },
"TerritoryId": 180,
"InteractionType": "WalkTo",
{ "DataId": 2002400, "AetheryteShortcut": "Outer La Noscea - Camp Overlook",
"Position": { "Fly": true,
"SkipConditions": {
"AetheryteShortcutIf": {
"AetheryteLocked": "Outer La Noscea - Camp Overlook"
}
}
},
{
"DataId": 2002400,
"Position": {
"X": 117.32654, "X": 117.32654,
"Y": 75.394775, "Y": 75.394775,
"Z": -246.54004 "Z": -246.54004
}, },
"TerritoryId": 180, "TerritoryId": 180,
"InteractionType": "Emote", "InteractionType": "Emote",
"Emote":"pray" "Emote": "pray"
} }
] ]
}, },
{ {
@ -218,6 +385,7 @@
"Y": 8.006159, "Y": 8.006159,
"Z": 268.78055 "Z": 268.78055
}, },
"StopDistance": 0.25,
"TerritoryId": 153, "TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil", "AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump", "InteractionType": "Jump",
@ -226,7 +394,41 @@
"X": -137.77051, "X": -137.77051,
"Y": 7.7094107, "Y": 7.7094107,
"Z": 275.28036 "Z": 275.28036
}}}, },
"DelaySeconds": 0.75
},
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
},
"StepIf": {
"Flying": "Unlocked",
"NearPosition": {
"Position": {
"X": -139.45221,
"Y": 8.712891,
"Z": 281.69678
},
"MaximumDistance": 3
}
}
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
},
{ {
"DataId": 1006751, "DataId": 1006751,
"Position": { "Position": {
@ -236,7 +438,7 @@
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "CompleteQuest", "InteractionType": "CompleteQuest",
"NextQuestId": 1083 "NextQuestId": 1083
} }
] ]
} }

View File

@ -5,6 +5,56 @@
{ {
"Sequence": 0, "Sequence": 0,
"Steps": [ "Steps": [
{
"Position": {
"X": -146.86935,
"Y": 8.006159,
"Z": 268.78055
},
"StopDistance": 0.25,
"TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump",
"JumpDestination": {
"Position": {
"X": -137.77051,
"Y": 7.7094107,
"Z": 275.28036
},
"DelaySeconds": 0.75
},
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
},
"StepIf": {
"Flying": "Unlocked",
"NearPosition": {
"Position": {
"X": -139.45221,
"Y": 8.712891,
"Z": 281.69678
},
"MaximumDistance": 3
}
}
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
},
{ {
"DataId": 1006751, "DataId": 1006751,
"Position": { "Position": {
@ -22,13 +72,14 @@
"Steps": [ "Steps": [
{ {
"DataId": 1007861, "DataId": 1007861,
"Position": { "Position": {
"X": -138.59778, "X": -138.59778,
"Y": 8.561184, "Y": 8.561184,
"Z": 281.2085 "Z": 281.2085
}, },
"TerritoryId": 153, "StopDistance": 5,
"InteractionType": "Interact" "TerritoryId": 153,
"InteractionType": "Interact"
} }
] ]
}, },
@ -37,23 +88,38 @@
"Steps": [ "Steps": [
{ {
"Position": { "Position": {
"X": 52.996822, "X": 47.682095,
"Y": 8.961273, "Y": 9.470074,
"Z": -110.2295 "Z": -98.02502
}, },
"TerritoryId": 153, "StopDistance": 0.25,
"InteractionType": "WalkTo", "TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Quarrymill" "InteractionType": "Jump",
"AetheryteShortcut": "South Shroud - Quarrymill",
"JumpDestination": {
"Position": {
"X": 51.224842,
"Y": 9.313359,
"Z": -104.32791
},
"DelaySeconds": 0.2
},
"SkipConditions": {
"StepIf": {
"Flying": "Unlocked"
}
}
}, },
{ {
"DataId": 1007853, "DataId": 1007853,
"Position": { "Position": {
"X": 53.72693, "X": 53.72693,
"Y": 8.86706, "Y": 8.86706,
"Z": -111.25354 "Z": -111.25354
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "Interact" "InteractionType": "Interact",
"Fly": true
} }
] ]
}, },
@ -61,37 +127,40 @@
"Sequence": 3, "Sequence": 3,
"Steps": [ "Steps": [
{ {
"DataId": 2002403,
"Position": { "Position": {
"X": 149.47818,
"Y": 18.008802,
"Z": -128.02928
},
"TerritoryId": 153,
"InteractionType": "WalkTo"
},
{
"DataId": 2002403,
"Position": {
"X": 151.53735, "X": 151.53735,
"Y": 18.112427, "Y": 18.112427,
"Z": -127.30603 "Z": -127.30603
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "Combat", "InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea", "EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [ "KillEnemyDataIds": [
1940,1941,1942 1940,
] 1941,
1942
],
"CompletionQuestVariablesFlags": [
{
"Low": 3
},
null,
null,
null,
null,
null
]
}, },
{ {
"DataId": 2002403, "DataId": 2002403,
"Position": { "Position": {
"X": 151.53735, "X": 151.53735,
"Y": 18.112427, "Y": 18.112427,
"Z": -127.30603 "Z": -127.30603
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "Interact" "InteractionType": "Interact"
} }
] ]
}, },
@ -104,6 +173,7 @@
"Y": 8.006159, "Y": 8.006159,
"Z": 268.78055 "Z": 268.78055
}, },
"StopDistance": 0.25,
"TerritoryId": 153, "TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil", "AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump", "InteractionType": "Jump",
@ -112,7 +182,38 @@
"X": -137.77051, "X": -137.77051,
"Y": 7.7094107, "Y": 7.7094107,
"Z": 275.28036 "Z": 275.28036
}}}, },
"DelaySeconds": 0.75
},
"SkipConditions": {
"StepIf": {
"Flying": "Unlocked",
"NearPosition": {
"Position": {
"X": -139.45221,
"Y": 8.712891,
"Z": 281.69678
},
"MaximumDistance": 3
}
}
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
},
{ {
"DataId": 1006751, "DataId": 1006751,
"Position": { "Position": {
@ -122,7 +223,7 @@
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "CompleteQuest", "InteractionType": "CompleteQuest",
"NextQuestId": 1084 "NextQuestId": 1084
} }
] ]
} }

View File

@ -5,6 +5,56 @@
{ {
"Sequence": 0, "Sequence": 0,
"Steps": [ "Steps": [
{
"Position": {
"X": -146.86935,
"Y": 8.006159,
"Z": 268.78055
},
"StopDistance": 0.25,
"TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump",
"JumpDestination": {
"Position": {
"X": -137.77051,
"Y": 7.7094107,
"Z": 275.28036
},
"DelaySeconds": 0.75
},
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
},
"StepIf": {
"Flying": "Unlocked",
"NearPosition": {
"Position": {
"X": -139.45221,
"Y": 8.712891,
"Z": 281.69678
},
"MaximumDistance": 3
}
}
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
},
{ {
"DataId": 1006751, "DataId": 1006751,
"Position": { "Position": {
@ -20,25 +70,17 @@
{ {
"Sequence": 1, "Sequence": 1,
"Steps": [ "Steps": [
{
"Position": {
"X": -315.67767,
"Y": 20.999746,
"Z": 178.48499
},
"TerritoryId": 148,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows"
},
{ {
"DataId": 2002408, "DataId": 2002408,
"Position": { "Position": {
"X": -316.27374, "X": -316.27374,
"Y": 21.194763, "Y": 21.194763,
"Z": 179.70544 "Z": 179.70544
}, },
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "SinglePlayerDuty" "InteractionType": "SinglePlayerDuty",
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows",
"Fly": true
} }
] ]
}, },
@ -51,6 +93,7 @@
"Y": 8.006159, "Y": 8.006159,
"Z": 268.78055 "Z": 268.78055
}, },
"StopDistance": 0.25,
"TerritoryId": 153, "TerritoryId": 153,
"AetheryteShortcut": "South Shroud - Camp Tranquil", "AetheryteShortcut": "South Shroud - Camp Tranquil",
"InteractionType": "Jump", "InteractionType": "Jump",
@ -59,7 +102,40 @@
"X": -137.77051, "X": -137.77051,
"Y": 7.7094107, "Y": 7.7094107,
"Z": 275.28036 "Z": 275.28036
}} },
"DelaySeconds": 0.75
},
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
},
"StepIf": {
"Flying": "Unlocked",
"NearPosition": {
"Position": {
"X": -139.45221,
"Y": 8.712891,
"Z": 281.69678
},
"MaximumDistance": 3
}
}
}
},
{
"Position": {
"X": -139.04318,
"Y": 8.522301,
"Z": 280.0128
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
}, },
{ {
"DataId": 1006751, "DataId": 1006751,
@ -69,8 +145,7 @@
"Z": 281.69678 "Z": 281.69678
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "CompleteQuest", "InteractionType": "CompleteQuest"
"NextQuestId": 1084
} }
] ]
} }

View File

@ -0,0 +1,56 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1000323,
"Position": {
"X": -234.02765,
"Y": -4.0000043,
"Z": -11.093384
},
"TerritoryId": 133,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true,
"InTerritory": [
133
]
}
}
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1000692,
"Position": {
"X": -258.8083,
"Y": -5.7735243,
"Z": -27.267883
},
"TerritoryId": 133,
"InteractionType": "CompleteQuest",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_CLSCNJ998_00133_Q1_000_1",
"Yes": true
}
]
}
]
}
]
}

View File

@ -0,0 +1,167 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": ["Cacahuetes", "liza"],
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1000692,
"Position": {
"X": -258.8083,
"Y": -5.7735243,
"Z": -27.267883
},
"TerritoryId": 133,
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"InteractionType": "AcceptQuest",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true,
"InTerritory": [
133
]
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -482.67407,
"Y": 9.16599,
"Z": 207.46878
},
"TerritoryId": 152,
"InteractionType": "WalkTo",
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
"Fly": true
},
{
"DataId": 1000767,
"Position": {
"X": -483.42108,
"Y": 10.130882,
"Z": 209.46057
},
"TerritoryId": 152,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2001229,
"Position": {
"X": -510.6432,
"Y": 6.301941,
"Z": 35.78235
},
"TerritoryId": 152,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
295
],
"Fly": true
}
]
},
{
"Sequence": 3,
"Steps": [
{
"Position": {
"X": -482.67407,
"Y": 9.16599,
"Z": 207.46878
},
"TerritoryId": 152,
"InteractionType": "WalkTo",
"Fly": true
},
{
"DataId": 1000767,
"Position": {
"X": -483.42108,
"Y": 10.130882,
"Z": 209.46057
},
"TerritoryId": 152,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 2001230,
"Position": {
"X": -510.76526,
"Y": 6.1798096,
"Z": 35.568726
},
"TerritoryId": 152,
"InteractionType": "SinglePlayerDuty",
"Fly": true
}
]
},
{
"Sequence": 5,
"Steps": [
{
"Position": {
"X": -482.67407,
"Y": 9.16599,
"Z": 207.46878
},
"TerritoryId": 152,
"InteractionType": "WalkTo",
"Fly": true
},
{
"DataId": 1000767,
"Position": {
"X": -483.42108,
"Y": 10.130882,
"Z": 209.46057
},
"TerritoryId": 152,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1000692,
"Position": {
"X": -258.8083,
"Y": -5.7735243,
"Z": -27.267883
},
"TerritoryId": 133,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"NextQuestId": 92
}
]
}
]
}

View File

@ -0,0 +1,41 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1000323,
"Position": {
"X": -234.02765,
"Y": -4.0000043,
"Z": -11.093384
},
"TerritoryId": 133,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true,
"InTerritory": [
133
]
}
},
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_CLSCNJ999_00182_Q1_000_1",
"Yes": true
}
]
}
]
}
]
}

View File

@ -0,0 +1,175 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1000692,
"Position": {
"X": -258.8083,
"Y": -5.7735243,
"Z": -27.267883
},
"TerritoryId": 133,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true,
"InTerritory": [
133
]
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 97.18397,
"Y": 17.128555,
"Z": -269.5008
},
"TerritoryId": 148,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 37,
"CompletionQuestVariablesFlags": [
{
"Low": 3
},
null,
null,
null,
null,
null
],
"MinimumKillCount": 3
}
],
"CompletionQuestVariablesFlags": [
{
"Low": 3
},
null,
null,
null,
null,
null
],
"$": "0 0 0 0 0 0 -> 19 0 0 0 0 0",
"AethernetShortcut": [
"[Gridania] Conjurers' Guild",
"[Gridania] Blue Badger Gate (Central Shroud)"
]
},
{
"Position": {
"X": 119.449745,
"Y": 17.399649,
"Z": -259.6467
},
"TerritoryId": 148,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 49,
"CompletionQuestVariablesFlags": [
null,
{
"High": 3
},
null,
null,
null,
null
],
"MinimumKillCount": 3
}
],
"CompletionQuestVariablesFlags": [
null,
{
"High": 3
},
null,
null,
null,
null
],
"$": "19 0 0 0 0 0 -> 35 48 0 0 0 0"
},
{
"Position": {
"X": 83.756714,
"Y": 4.1801105,
"Z": -191.24133
},
"TerritoryId": 148,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 47,
"CompletionQuestVariablesFlags": [
null,
{
"Low": 3
},
null,
null,
null,
null
],
"MinimumKillCount": 3
}
],
"CompletionQuestVariablesFlags": [
null,
{
"Low": 3
},
null,
null,
null,
null
],
"$": "35 48 0 0 0 0 -> 35 51 0 0 0 0 // This one automatically went to 0 0 0 0 0 0 so I am not sure about the 51 part"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1000692,
"Position": {
"X": -258.8083,
"Y": -5.7735243,
"Z": -27.267883
},
"TerritoryId": 133,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"NextQuestId": 48
}
]
}
]
}

View File

@ -6,19 +6,25 @@
"Sequence": 0, "Sequence": 0,
"Steps": [ "Steps": [
{ {
"DataId": 1000692, "DataId": 1000323,
"Position": { "Position": {
"X": -258.8083, "X": -234.02765,
"Y": -5.7735243, "Y": -4.0000043,
"Z": -27.267883 "Z": -11.093384
}, },
"TerritoryId": 133, "TerritoryId": 133,
"AetheryteShortcut": "Gridania", "AetheryteShortcut": "Gridania",
"AethernetShortcut": ["[Gridania] Aetheryte Plaza","[Gridania] Conjurers' Guild"], "AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"InteractionType": "AcceptQuest", "InteractionType": "AcceptQuest",
"SkipConditions": { "SkipConditions": {
"AetheryteShortcutIf": { "AetheryteShortcutIf": {
"NotInSameTerritory": true "InSameTerritory": true,
"InTerritory": [
133
]
} }
} }
} }
@ -39,9 +45,8 @@
"DialogueChoices": [ "DialogueChoices": [
{ {
"Type": "YesNo", "Type": "YesNo",
"Prompt": "TEXT_CLSGLA020_00253_Q1_000_1", "Prompt": "TEXT_CLSCNJ000_00022_Q1_000_1",
"Yes": true, "Yes": true
"$": "Need to find real prompt in godbert"
} }
] ]
} }
@ -50,19 +55,6 @@
{ {
"Sequence": 2, "Sequence": 2,
"Steps": [ "Steps": [
{
"Position": {
"X": 104.02482,
"Y": 14.71474,
"Z": -263.02206
},
"TerritoryId": 148,
"InteractionType": "WalkTo",
"AethernetShortcut": [
"[Gridania] Conjurers' Guild",
"[Gridania] Blue Badger Gate (Central Shroud)"
]
},
{ {
"Position": { "Position": {
"X": 97.18397, "X": 97.18397,
@ -76,7 +68,9 @@
{ {
"DataId": 37, "DataId": 37,
"CompletionQuestVariablesFlags": [ "CompletionQuestVariablesFlags": [
null, {
"Low": 3
},
null, null,
null, null,
null, null,
@ -87,14 +81,20 @@
} }
], ],
"CompletionQuestVariablesFlags": [ "CompletionQuestVariablesFlags": [
null, {
"Low": 3
},
null, null,
null, null,
null, null,
null, null,
null null
], ],
"$": "0 0 0 0 0 0 -> 19 0 0 0 0 0" "$": "0 0 0 0 0 0 -> 19 0 0 0 0 0",
"AethernetShortcut": [
"[Gridania] Conjurers' Guild",
"[Gridania] Blue Badger Gate (Central Shroud)"
]
}, },
{ {
"Position": { "Position": {
@ -110,7 +110,9 @@
"DataId": 49, "DataId": 49,
"CompletionQuestVariablesFlags": [ "CompletionQuestVariablesFlags": [
null, null,
null, {
"High": 3
},
null, null,
null, null,
null, null,
@ -121,7 +123,9 @@
], ],
"CompletionQuestVariablesFlags": [ "CompletionQuestVariablesFlags": [
null, null,
null, {
"High": 3
},
null, null,
null, null,
null, null,
@ -143,7 +147,9 @@
"DataId": 47, "DataId": 47,
"CompletionQuestVariablesFlags": [ "CompletionQuestVariablesFlags": [
null, null,
null, {
"Low": 3
},
null, null,
null, null,
null, null,
@ -154,7 +160,9 @@
], ],
"CompletionQuestVariablesFlags": [ "CompletionQuestVariablesFlags": [
null, null,
null, {
"Low": 3
},
null, null,
null, null,
null, null,
@ -168,26 +176,20 @@
"Sequence": 255, "Sequence": 255,
"Steps": [ "Steps": [
{ {
"Position": {
"X": -259.39578,
"Y": -5.7723713,
"Z": -24.069485
},
"TerritoryId": 133,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": ["[Gridania] Aetheryte Plaza","[Gridania] Conjurers' Guild"]
},
{
"DataId": 1000692, "DataId": 1000692,
"Position": { "Position": {
"X": -258.8083, "X": -258.8083,
"Y": -5.7735243, "Y": -5.7735243,
"Z": -27.267883 "Z": -27.267883
}, },
"TerritoryId": 133, "TerritoryId": 133,
"InteractionType": "CompleteQuest", "InteractionType": "CompleteQuest",
"NextQuestId": 48 "AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"NextQuestId": 48
} }
] ]
} }

View File

@ -21,7 +21,10 @@
"InteractionType": "AcceptQuest", "InteractionType": "AcceptQuest",
"SkipConditions": { "SkipConditions": {
"AetheryteShortcutIf": { "AetheryteShortcutIf": {
"InSameTerritory": false "InSameTerritory": true,
"InTerritory": [
133
]
} }
} }
} }
@ -30,117 +33,69 @@
{ {
"Sequence": 1, "Sequence": 1,
"Steps": [ "Steps": [
{
"Position": {
"X": -172.66434,
"Y": 8.378755,
"Z": -54.010723
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"AetheryteShortcut": "South Shroud - Quarrymill"
},
{ {
"DataId": 1008149, "DataId": 1008149,
"Position": { "Position": {
"X": -172.83899, "X": -172.83899,
"Y": 8.492639, "Y": 8.492639,
"Z": -55.222473 "Z": -55.222473
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "Interact" "InteractionType": "Interact",
"AetheryteShortcut": "South Shroud - Quarrymill",
"Fly": true
} }
] ]
}, },
{ {
"Sequence": 2, "Sequence": 2,
"Steps": [ "Steps": [
{
"Position": {
"X": -182.20464,
"Y": 9.869227,
"Z": -77.148476
},
"TerritoryId": 153,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1008146, "DataId": 1008146,
"Position": { "Position": {
"X": -183.43082, "X": -183.43082,
"Y": 9.869224, "Y": 9.869224,
"Z": -76.830215 "Z": -76.830215
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "Interact" "InteractionType": "Interact"
} }
] ]
}, },
{ {
"Sequence": 3, "Sequence": 3,
"Steps": [ "Steps": [
{
"Position": {
"X": 25.950283,
"Y": 4.080406,
"Z": 33.51876
},
"TerritoryId": 153,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1008150, "DataId": 1008150,
"Position": { "Position": {
"X": 28.30542, "X": 28.30542,
"Y": 3.6544461, "Y": 3.6544461,
"Z": 35.38562 "Z": 35.38562
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "SinglePlayerDuty" "InteractionType": "SinglePlayerDuty",
"Fly": true
} }
] ]
}, },
{ {
"Sequence": 4, "Sequence": 4,
"Steps": [ "Steps": [
{
"Position": {
"X": 40.772614,
"Y": 3.1398523,
"Z": 32.263535
},
"TerritoryId": 153,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1008157, "DataId": 1008157,
"Position": { "Position": {
"X": 42.404785, "X": 42.404785,
"Y": 3.2469568, "Y": 3.2469568,
"Z": 32.88318 "Z": 32.88318
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "Interact" "InteractionType": "Interact"
} }
] ]
}, },
{ {
"Sequence": 255, "Sequence": 255,
"Steps": [ "Steps": [
{
"Position": {
"X": -259.39578,
"Y": -5.7723713,
"Z": -24.069485
},
"TerritoryId": 133,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
]
},
{ {
"DataId": 1000692, "DataId": 1000692,
"Position": { "Position": {
@ -150,6 +105,11 @@
}, },
"TerritoryId": 133, "TerritoryId": 133,
"InteractionType": "CompleteQuest", "InteractionType": "CompleteQuest",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"NextQuestId": 441 "NextQuestId": 441
} }
] ]

View File

@ -21,7 +21,10 @@
"InteractionType": "AcceptQuest", "InteractionType": "AcceptQuest",
"SkipConditions": { "SkipConditions": {
"AetheryteShortcutIf": { "AetheryteShortcutIf": {
"InSameTerritory": false "InSameTerritory": true,
"InTerritory": [
133
]
} }
} }
} }
@ -30,200 +33,131 @@
{ {
"Sequence": 1, "Sequence": 1,
"Steps": [ "Steps": [
{
"Position": {
"X": 45.534206,
"Y": 6.2985306,
"Z": -1.4239028
},
"TerritoryId": 153,
"InteractionType": "WalkTo",
"AetheryteShortcut": "South Shroud - Quarrymill"
},
{ {
"DataId": 2000899, "DataId": 2000899,
"Position": { "Position": {
"X": 43.900146, "X": 43.900146,
"Y": 6.5460815, "Y": 6.5460815,
"Z": -1.9379272 "Z": -1.9379272
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "Combat", "InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction", "EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [ "KillEnemyDataIds": [
294 294
] ],
"AetheryteShortcut": "South Shroud - Quarrymill",
"Fly": true
} }
] ]
}, },
{ {
"Sequence": 2, "Sequence": 2,
"Steps": [ "Steps": [
{
"Position": {
"X": 46.887703,
"Y": 6.348098,
"Z": -2.0700083
},
"TerritoryId": 153,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1002965, "DataId": 1002965,
"Position": { "Position": {
"X": 51.181263, "X": 51.181263,
"Y": 6.6893935, "Y": 6.6893935,
"Z": -3.2490644 "Z": -3.2490644
}, },
"TerritoryId": 153, "StopDistance": 7,
"InteractionType": "Interact" "TerritoryId": 153,
"InteractionType": "Interact"
} }
] ]
}, },
{ {
"Sequence": 3, "Sequence": 3,
"Steps": [ "Steps": [
{
"Position": {
"X": 121.718864,
"Y": 17.688908,
"Z": -134.5164
},
"TerritoryId": 153,
"InteractionType": "WalkTo"
},
{ {
"DataId": 2000901, "DataId": 2000901,
"Position": { "Position": {
"X": 122.36206, "X": 122.36206,
"Y": 17.898804, "Y": 17.898804,
"Z": -136.85822 "Z": -136.85822
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "Combat", "InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction", "EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [ "KillEnemyDataIds": [
294 294
] ],
"Fly": true
} }
] ]
}, },
{ {
"Sequence": 4, "Sequence": 4,
"Steps": [ "Steps": [
{
"Position": {
"X": 122.99925,
"Y": 17.652422,
"Z": -130.71101
},
"TerritoryId": 153,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1002966, "DataId": 1002966,
"Position": { "Position": {
"X": 124.193115, "X": 124.193115,
"Y": 17.550354, "Y": 17.550354,
"Z": -129.90009 "Z": -129.90009
}, },
"TerritoryId": 153, "StopDistance": 7,
"InteractionType": "Interact" "TerritoryId": 153,
"InteractionType": "Interact"
} }
] ]
}, },
{ {
"Sequence": 5, "Sequence": 5,
"Steps": [ "Steps": [
{
"Position": {
"X": 290.62793,
"Y": 15.393364,
"Z": -108.41017
},
"TerritoryId": 153,
"InteractionType": "WalkTo"
},
{ {
"DataId": 2000906, "DataId": 2000906,
"Position": { "Position": {
"X": 292.04236, "X": 292.04236,
"Y": 15.365784, "Y": 15.365784,
"Z": -107.286194 "Z": -107.286194
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "Combat", "InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction", "EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [ "KillEnemyDataIds": [
294 294
] ],
"Fly": true
} }
] ]
}, },
{ {
"Sequence": 6, "Sequence": 6,
"Steps": [ "Steps": [
{
"Position": {
"X": 292.93207,
"Y": 16.015324,
"Z": -111.772804
},
"TerritoryId": 153,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1002967, "DataId": 1002967,
"Position": { "Position": {
"X": 293.29358, "X": 293.29358,
"Y": 16.181925, "Y": 16.181925,
"Z": -112.68793 "Z": -112.68793
}, },
"TerritoryId": 153, "StopDistance": 7,
"InteractionType": "Interact" "TerritoryId": 153,
"InteractionType": "Interact"
} }
] ]
}, },
{ {
"Sequence": 7, "Sequence": 7,
"Steps": [ "Steps": [
{
"Position": {
"X": 331.04,
"Y": 4.1329737,
"Z": -83.1279
},
"TerritoryId": 153,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1002968, "DataId": 1002968,
"Position": { "Position": {
"X": 332.14307, "X": 332.14307,
"Y": 4.1362643, "Y": 4.1362643,
"Z": -85.648926 "Z": -85.648926
}, },
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "SinglePlayerDuty" "InteractionType": "SinglePlayerDuty",
"Fly": true
} }
] ]
}, },
{ {
"Sequence": 255, "Sequence": 255,
"Steps": [ "Steps": [
{"Position": {
"X": -259.39578,
"Y": -5.7723713,
"Z": -24.069485
},
"TerritoryId": 133,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
]
},
{ {
"DataId": 1000692, "DataId": 1000692,
"Position": { "Position": {
@ -233,6 +167,11 @@
}, },
"TerritoryId": 133, "TerritoryId": 133,
"InteractionType": "CompleteQuest", "InteractionType": "CompleteQuest",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"NextQuestId": 1079 "NextQuestId": 1079
} }
] ]

View File

@ -14,11 +14,17 @@
}, },
"TerritoryId": 133, "TerritoryId": 133,
"AetheryteShortcut": "Gridania", "AetheryteShortcut": "Gridania",
"AethernetShortcut": ["[Gridania] Aetheryte Plaza","[Gridania] Conjurers' Guild"], "AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"InteractionType": "AcceptQuest", "InteractionType": "AcceptQuest",
"SkipConditions": { "SkipConditions": {
"AetheryteShortcutIf": { "AetheryteShortcutIf": {
"InSameTerritory": false "InSameTerritory": true,
"InTerritory": [
133
]
} }
} }
} }
@ -29,13 +35,22 @@
"Steps": [ "Steps": [
{ {
"Position": { "Position": {
"X": 219.22334, "X": 220.82336,
"Y": -28.377773, "Y": -28.335487,
"Z": 335.86304 "Z": 336.9016
}, },
"AethernetShortcut": ["[Gridania] Conjurers' Guild","[Gridania] Yellow Serpent Gate (North Shroud)"], "AethernetShortcut": [
"[Gridania] Conjurers' Guild",
"[Gridania] Yellow Serpent Gate (North Shroud)"
],
"TerritoryId": 154, "TerritoryId": 154,
"InteractionType": "WalkTo" "InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
}, },
{ {
"DataId": 1000764, "DataId": 1000764,
@ -52,15 +67,6 @@
{ {
"Sequence": 2, "Sequence": 2,
"Steps": [ "Steps": [
{
"Position": {
"X": 326.5162,
"Y": -5.344409,
"Z": 388.57553
},
"TerritoryId": 154,
"InteractionType": "WalkTo"
},
{ {
"DataId": 2000883, "DataId": 2000883,
"Position": { "Position": {
@ -73,7 +79,8 @@
"EnemySpawnType": "AfterInteraction", "EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [ "KillEnemyDataIds": [
294 294
] ],
"Fly": true
} }
] ]
}, },
@ -82,12 +89,18 @@
"Steps": [ "Steps": [
{ {
"Position": { "Position": {
"X": 219.22334, "X": 220.82336,
"Y": -28.377773, "Y": -28.335487,
"Z": 335.86304 "Z": 336.9016
}, },
"TerritoryId": 154, "TerritoryId": 154,
"InteractionType": "WalkTo" "InteractionType": "WalkTo",
"Fly": true,
"SkipConditions": {
"StepIf": {
"Flying": "Locked"
}
}
}, },
{ {
"DataId": 1000764, "DataId": 1000764,
@ -104,20 +117,6 @@
{ {
"Sequence": 255, "Sequence": 255,
"Steps": [ "Steps": [
{
"Position": {
"X": -259.39578,
"Y": -5.7723713,
"Z": -24.069485
},
"TerritoryId": 133,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
]
},
{ {
"DataId": 1000692, "DataId": 1000692,
"Position": { "Position": {
@ -127,6 +126,11 @@
}, },
"TerritoryId": 133, "TerritoryId": 133,
"InteractionType": "CompleteQuest", "InteractionType": "CompleteQuest",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"NextQuestId": 91 "NextQuestId": 91
} }
] ]

View File

@ -21,7 +21,10 @@
"InteractionType": "AcceptQuest", "InteractionType": "AcceptQuest",
"SkipConditions": { "SkipConditions": {
"AetheryteShortcutIf": { "AetheryteShortcutIf": {
"InSameTerritory": false "InSameTerritory": true,
"InTerritory": [
133
]
} }
} }
} }
@ -30,16 +33,6 @@
{ {
"Sequence": 1, "Sequence": 1,
"Steps": [ "Steps": [
{
"Position": {
"X": -480.4995,
"Y": 8.030102,
"Z": 206.82132
},
"TerritoryId": 152,
"InteractionType": "WalkTo",
"AetheryteShortcut": "East Shroud - Hawthorne Hut"
},
{ {
"DataId": 1000767, "DataId": 1000767,
"Position": { "Position": {
@ -48,22 +41,19 @@
"Z": 209.46057 "Z": 209.46057
}, },
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "Interact" "InteractionType": "Interact",
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
} }
] ]
}, },
{ {
"Sequence": 2, "Sequence": 2,
"Steps": [ "Steps": [
{
"Position": {
"X": -511.13126,
"Y": 6.470027,
"Z": 38.589493
},
"TerritoryId": 152,
"InteractionType": "WalkTo"
},
{ {
"DataId": 2000885, "DataId": 2000885,
"Position": { "Position": {
@ -83,15 +73,6 @@
{ {
"Sequence": 3, "Sequence": 3,
"Steps": [ "Steps": [
{
"Position": {
"X": -480.4995,
"Y": 8.030102,
"Z": 206.82132
},
"TerritoryId": 152,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1000767, "DataId": 1000767,
"Position": { "Position": {
@ -107,15 +88,6 @@
{ {
"Sequence": 4, "Sequence": 4,
"Steps": [ "Steps": [
{
"Position": {
"X": -512.33844,
"Y": 6.7128515,
"Z": 39.61134
},
"TerritoryId": 152,
"InteractionType": "WalkTo"
},
{ {
"DataId": 2000887, "DataId": 2000887,
"Position": { "Position": {
@ -131,15 +103,6 @@
{ {
"Sequence": 5, "Sequence": 5,
"Steps": [ "Steps": [
{
"Position": {
"X": -480.4995,
"Y": 8.030102,
"Z": 206.82132
},
"TerritoryId": 152,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1000767, "DataId": 1000767,
"Position": { "Position": {
@ -155,20 +118,6 @@
{ {
"Sequence": 255, "Sequence": 255,
"Steps": [ "Steps": [
{
"Position": {
"X": -259.39578,
"Y": -5.7723713,
"Z": -24.069485
},
"TerritoryId": 133,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
]
},
{ {
"DataId": 1000692, "DataId": 1000692,
"Position": { "Position": {
@ -178,9 +127,14 @@
}, },
"TerritoryId": 133, "TerritoryId": 133,
"InteractionType": "CompleteQuest", "InteractionType": "CompleteQuest",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"NextQuestId": 92 "NextQuestId": 92
} }
] ]
} }
] ]
} }

View File

@ -21,7 +21,10 @@
"InteractionType": "AcceptQuest", "InteractionType": "AcceptQuest",
"SkipConditions": { "SkipConditions": {
"AetheryteShortcutIf": { "AetheryteShortcutIf": {
"InSameTerritory": false "InSameTerritory": true,
"InTerritory": [
133
]
} }
} }
} }
@ -35,23 +38,24 @@
"X": -276.804, "X": -276.804,
"Y": 11.2529, "Y": 11.2529,
"Z": 366.10303 "Z": 366.10303
}, },
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "WalkTo", "InteractionType": "WalkTo",
"AetheryteShortcut": "East Shroud - Hawthorne Hut" "AetheryteShortcut": "East Shroud - Hawthorne Hut",
"Fly": true
}, },
{ {
"DataId": 2000889, "DataId": 2000889,
"Position": { "Position": {
"X": -276.93604, "X": -276.93604,
"Y": 11.734131, "Y": 11.734131,
"Z": 367.20825 "Z": 367.20825
}, },
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "Combat", "InteractionType": "Combat",
"EnemySpawnType": "AfterItemUse", "EnemySpawnType": "AfterItemUse",
"ItemId": 2000121, "ItemId": 2000121,
"KillEnemyDataIds": [ "KillEnemyDataIds": [
297 297
] ]
} }
@ -60,24 +64,53 @@
{ {
"Sequence": 2, "Sequence": 2,
"Steps": [ "Steps": [
{
"Position": {
"X": -235.35493,
"Y": 3.539142,
"Z": 293.25888
},
"TerritoryId": 152,
"InteractionType": "WalkTo",
"Fly": true
},
{
"Position": {
"X": -233.34848,
"Y": 3.5425713,
"Z": 285.89532
},
"TerritoryId": 152,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": -228.59554,
"Y": 3.554365,
"Z": 283.47638
},
"TerritoryId": 152,
"InteractionType": "WalkTo",
"DisableNavmesh": true
},
{ {
"Position": { "Position": {
"X": -228.65686, "X": -228.65686,
"Y": 3.5446393, "Y": 3.5446393,
"Z": 279.4041 "Z": 279.4041
}, },
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "WalkTo" "InteractionType": "WalkTo"
}, },
{ {
"DataId": 1000561, "DataId": 1000561,
"Position": { "Position": {
"X": -230.18237, "X": -230.18237,
"Y": 3.544826, "Y": 3.544826,
"Z": 279.07214 "Z": 279.07214
}, },
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "Interact" "InteractionType": "Interact"
} }
] ]
}, },
@ -86,129 +119,121 @@
"Steps": [ "Steps": [
{ {
"Position": { "Position": {
"X": -210.88799, "X": -228.59554,
"Y": 22.813288, "Y": 3.554365,
"Z": 243.95592 "Z": 283.47638
}, },
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "WalkTo" "InteractionType": "WalkTo",
"Mount": true
},
{
"Position": {
"X": -233.34848,
"Y": 3.5425713,
"Z": 285.89532
},
"TerritoryId": 152,
"InteractionType": "WalkTo",
"DisableNavmesh": true
},
{
"Position": {
"X": -256.5985,
"Y": 0.9818871,
"Z": 287.17072
},
"TerritoryId": 152,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": -220.44954,
"Y": 22.910912,
"Z": 243.81
},
"TerritoryId": 152,
"InteractionType": "WalkTo",
"Fly": true
}, },
{ {
"DataId": 1000619, "DataId": 1000619,
"Position": { "Position": {
"X": -209.0639, "X": -209.0639,
"Y": 22.813372, "Y": 22.813372,
"Z": 245.34973 "Z": 245.34973
}, },
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "Interact" "InteractionType": "Interact"
} }
] ]
}, },
{ {
"Sequence": 4, "Sequence": 4,
"Steps": [ "Steps": [
{
"Position": {
"X": -236.00592,
"Y": 17.87103,
"Z": 245.8962
},
"TerritoryId": 152,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1003001, "DataId": 1003001,
"Position": { "Position": {
"X": -234.33282, "X": -234.33282,
"Y": 18.310072, "Y": 18.310072,
"Z": 245.68542 "Z": 245.68542
}, },
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "WaitForManualProgress", "InteractionType": "Action",
"$": "Action needs to be cure, cure needs to be added to schema--manual until then" "Action": "Cure"
} }
] ]
}, },
{ {
"Sequence": 5, "Sequence": 5,
"Steps": [ "Steps": [
{"DataId": 1003057, {
"Position": { "DataId": 1003057,
"X": -237.6593, "Position": {
"Y": 17.850079, "X": -237.6593,
"Z": 243.48816 "Y": 17.850079,
}, "Z": 243.48816
"TerritoryId": 152, },
"InteractionType": "Interact" "StopDistance": 7,
"TerritoryId": 152,
"InteractionType": "Interact"
} }
] ]
}, },
{ {
"Sequence": 6, "Sequence": 6,
"Steps": [ "Steps": [
{
"Position": {
"X": -63.76642,
"Y": -8.177125,
"Z": 232.76166
},
"TerritoryId": 152,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1001213, "DataId": 1001213,
"Position": { "Position": {
"X": -66.056335, "X": -66.056335,
"Y": -7.982843, "Y": -7.982843,
"Z": 231.15894 "Z": 231.15894
}, },
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "SinglePlayerDuty" "InteractionType": "SinglePlayerDuty",
"Fly": true
} }
] ]
}, },
{ {
"Sequence": 7, "Sequence": 7,
"Steps": [ "Steps": [
{
"Position": {
"X": -75.92712,
"Y": -9.128448,
"Z": 280.5949
},
"TerritoryId": 152,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1003006, "DataId": 1003006,
"Position": { "Position": {
"X": -76.64612, "X": -76.64612,
"Y": -9.205922, "Y": -9.205922,
"Z": 283.22266 "Z": 283.22266
}, },
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "Interact" "InteractionType": "Interact"
} }
] ]
}, },
{ {
"Sequence": 255, "Sequence": 255,
"Steps": [ "Steps": [
{
"Position": {
"X": -259.39578,
"Y": -5.7723713,
"Z": -24.069485
},
"TerritoryId": 133,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
]
},
{ {
"DataId": 1000692, "DataId": 1000692,
"Position": { "Position": {
@ -218,6 +243,11 @@
}, },
"TerritoryId": 133, "TerritoryId": 133,
"InteractionType": "CompleteQuest", "InteractionType": "CompleteQuest",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"NextQuestId": 93 "NextQuestId": 93
} }
] ]

View File

@ -21,7 +21,10 @@
"InteractionType": "AcceptQuest", "InteractionType": "AcceptQuest",
"SkipConditions": { "SkipConditions": {
"AetheryteShortcutIf": { "AetheryteShortcutIf": {
"InSameTerritory": false "InSameTerritory": true,
"InTerritory": [
133
]
} }
} }
} }
@ -30,177 +33,112 @@
{ {
"Sequence": 1, "Sequence": 1,
"Steps": [ "Steps": [
{
"Position": {
"X": -72.07284,
"Y": 1,
"Z": -33.972404
},
"TerritoryId": 148,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows"
},
{ {
"DataId": 2000891, "DataId": 2000891,
"Position": { "Position": {
"X": -74.50989, "X": -74.50989,
"Y": 1.449585, "Y": 1.449585,
"Z": -32.76117 "Z": -32.76117
}, },
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "Combat", "InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction", "EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [ "KillEnemyDataIds": [
294 294
] ],
} "AetheryteShortcut": "Central Shroud - Bentbranch Meadows",
"Fly": true
}
] ]
}, },
{ {
"Sequence": 2, "Sequence": 2,
"Steps": [ "Steps": [
{ {
"Position": {
"X": -67.59361,
"Y": 1,
"Z": -36.785305
},
"TerritoryId": 148,
"InteractionType": "WalkTo"
},
{
"DataId": 1002961, "DataId": 1002961,
"Position": { "Position": {
"X": -66.7583, "X": -66.7583,
"Y": 0.9667693, "Y": 0.9667693,
"Z": -38.4375 "Z": -38.4375
}, },
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "Interact" "InteractionType": "Interact"
} }
] ]
}, },
{ {
"Sequence": 3, "Sequence": 3,
"Steps": [ "Steps": [
{
"Position": {
"X": 148.54672,
"Y": -5.9836235,
"Z": -34.821217
},
"TerritoryId": 148,
"InteractionType": "WalkTo"
},
{ {
"DataId": 2000893, "DataId": 2000893,
"Position": { "Position": {
"X": 147.02063, "X": 147.02063,
"Y": -5.6916504, "Y": -5.6916504,
"Z": -35.50775 "Z": -35.50775
}, },
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "Combat", "InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction", "EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [ "KillEnemyDataIds": [
299 299
] ],
"Fly": true
} }
] ]
}, },
{ {
"Sequence": 4, "Sequence": 4,
"Steps": [ "Steps": [
{
"Position": {
"X": 155.83203,
"Y": -6.3384933,
"Z": -34.853024
},
"TerritoryId": 148,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1002962, "DataId": 1002962,
"Position": { "Position": {
"X": 155.9624, "X": 155.9624,
"Y": -6.358468, "Y": -6.358468,
"Z": -35.53833 "Z": -35.53833
}, },
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "Interact" "InteractionType": "Interact"
} }
] ]
}, },
{ {
"Sequence": 5, "Sequence": 5,
"Steps": [ "Steps": [
{
"Position": {
"X": 330.1284,
"Y": -31.660528,
"Z": 413.6492
},
"TerritoryId": 148,
"InteractionType": "WalkTo"
},
{ {
"DataId": 2000895, "DataId": 2000895,
"Position": { "Position": {
"X": 332.3567, "X": 332.3567,
"Y": -31.540405, "Y": -31.540405,
"Z": 414.69434 "Z": 414.69434
}, },
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "Combat", "InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction", "EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [ "KillEnemyDataIds": [
297 297
] ],
"Fly": true
} }
] ]
}, },
{ {
"Sequence": 6, "Sequence": 6,
"Steps": [ "Steps": [
{
"Position": {
"X": 335.10825,
"Y": -31.669537,
"Z": 422.18082
},
"TerritoryId": 148,
"InteractionType": "WalkTo"
},
{ {
"DataId": 1002963, "DataId": 1002963,
"Position": { "Position": {
"X": 335.95776, "X": 335.95776,
"Y": -31.68247, "Y": -31.68247,
"Z": 423.63623 "Z": 423.63623
}, },
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "Interact" "InteractionType": "Interact"
} }
] ]
}, },
{ {
"Sequence": 255, "Sequence": 255,
"Steps": [ "Steps": [
{
"Position": {
"X": -259.39578,
"Y": -5.7723713,
"Z": -24.069485
},
"TerritoryId": 133,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
]
},
{ {
"DataId": 1000692, "DataId": 1000692,
"Position": { "Position": {
@ -210,6 +148,11 @@
}, },
"TerritoryId": 133, "TerritoryId": 133,
"InteractionType": "CompleteQuest", "InteractionType": "CompleteQuest",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
],
"NextQuestId": 440 "NextQuestId": 440
} }
] ]

View File

@ -1,5 +0,0 @@
All ARR Cnj and Whm Quest paths for Questionable. All are verified. Should all work.
navigation in Camp Tranquil is hit or miss depending on Navmesh.
Cure is not an action in the plugin yet, so that part of the quest needs to be done manually.

View File

@ -29,10 +29,12 @@
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "Combat", "InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies", "EnemySpawnType": "OverworldEnemies",
"KillEnemyDataIds": [ "ComplexCombatData": [
43 {
], "DataId": 43,
"Comment": "Kill Chigoes manually" "MinimumKillCount": 3
}
]
} }
] ]
}, },

View File

@ -56,24 +56,7 @@
"exclusiveMinimum": 0 "exclusiveMinimum": 0
}, },
"Position": { "Position": {
"type": "object", "$ref": "https://git.carvel.li/liza/Questionable/raw/branch/master/Questionable.Model/common-schema.json#/$defs/Vector3"
"description": "Position to (typically) walk to",
"properties": {
"X": {
"type": "number"
},
"Y": {
"type": "number"
},
"Z": {
"type": "number"
}
},
"required": [
"X",
"Y",
"Z"
]
}, },
"StopDistance": { "StopDistance": {
"type": [ "type": [
@ -243,6 +226,22 @@
"AetheryteUnlocked": { "AetheryteUnlocked": {
"$ref": "https://git.carvel.li/liza/Questionable/raw/branch/master/Questionable.Model/common-schema.json#/$defs/Aetheryte" "$ref": "https://git.carvel.li/liza/Questionable/raw/branch/master/Questionable.Model/common-schema.json#/$defs/Aetheryte"
}, },
"NearPosition": {
"type": "object",
"properties": {
"Position": {
"$ref": "https://git.carvel.li/liza/Questionable/raw/branch/master/Questionable.Model/common-schema.json#/$defs/Vector3"
},
"MaximumDistance": {
"type": "number"
}
},
"required": [
"Position",
"MaximumDistance"
],
"additionalProperties": false
},
"ExtraCondition": { "ExtraCondition": {
"type": "string", "type": "string",
"enum": [ "enum": [
@ -814,24 +813,7 @@
"type": "object", "type": "object",
"properties": { "properties": {
"Position": { "Position": {
"type": "object", "$ref": "https://git.carvel.li/liza/Questionable/raw/branch/master/Questionable.Model/common-schema.json#/$defs/Vector3"
"description": "Position to try reaching after the jump",
"properties": {
"X": {
"type": "number"
},
"Y": {
"type": "number"
},
"Z": {
"type": "number"
}
},
"required": [
"X",
"Y",
"Z"
]
}, },
"StopDistance": { "StopDistance": {
"type": [ "type": [

View File

@ -0,0 +1,12 @@
using System.Numerics;
using System.Text.Json.Serialization;
using Questionable.Model.Common.Converter;
namespace Questionable.Model.Questing;
public sealed class NearPositionCondition
{
[JsonConverter(typeof(VectorConverter))]
public Vector3 Position { get; set; }
public float MaximumDistance { get; set; }
}

View File

@ -18,6 +18,7 @@ public sealed class SkipStepConditions
public List<ElementId> QuestsCompleted { get; set; } = new(); public List<ElementId> QuestsCompleted { get; set; } = new();
public EAetheryteLocation? AetheryteLocked { get; set; } public EAetheryteLocation? AetheryteLocked { get; set; }
public EAetheryteLocation? AetheryteUnlocked { get; set; } public EAetheryteLocation? AetheryteUnlocked { get; set; }
public NearPositionCondition? NearPosition { get; set; }
public EExtraSkipCondition? ExtraCondition { get; set; } public EExtraSkipCondition? ExtraCondition { get; set; }
public bool HasSkipConditions() public bool HasSkipConditions()
@ -35,12 +36,13 @@ public sealed class SkipStepConditions
QuestsCompleted.Count > 0 || QuestsCompleted.Count > 0 ||
AetheryteLocked != null || AetheryteLocked != null ||
AetheryteUnlocked != null || AetheryteUnlocked != null ||
NearPosition != null ||
ExtraCondition != null; ExtraCondition != null;
} }
public override string ToString() public override string ToString()
{ {
return return
$"{nameof(Never)}: {Never}, {nameof(CompletionQuestVariablesFlags)}: {CompletionQuestVariablesFlags}, {nameof(Flying)}: {Flying}, {nameof(Chocobo)}: {Chocobo}, {nameof(NotTargetable)}: {NotTargetable}, {nameof(InTerritory)}: {string.Join(" ", InTerritory)}, {nameof(NotInTerritory)}: {string.Join(" ", NotInTerritory)}, {nameof(Item)}: {Item}, {nameof(QuestsAccepted)}: {string.Join(" ", QuestsAccepted)}, {nameof(QuestsCompleted)}: {string.Join(" ", QuestsCompleted)}, {nameof(ExtraCondition)}: {ExtraCondition}"; $"{nameof(Never)}: {Never}, {nameof(CompletionQuestVariablesFlags)}: {CompletionQuestVariablesFlags}, {nameof(Flying)}: {Flying}, {nameof(Chocobo)}: {Chocobo}, {nameof(NotTargetable)}: {NotTargetable}, {nameof(InTerritory)}: {string.Join(" ", InTerritory)}, {nameof(NotInTerritory)}: {string.Join(" ", NotInTerritory)}, {nameof(Item)}: {Item}, {nameof(QuestsAccepted)}: {string.Join(" ", QuestsAccepted)}, {nameof(QuestsCompleted)}: {string.Join(" ", QuestsCompleted)}, {nameof(NearPosition)}: {NearPosition}, {nameof(ExtraCondition)}: {ExtraCondition}";
} }
} }

View File

@ -2,6 +2,26 @@
"$schema": "https://json-schema.org/draft/2020-12/schema", "$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://git.carvel.li/liza/Questionable/raw/branch/master/Questionable.Model/common-schema.json", "$id": "https://git.carvel.li/liza/Questionable/raw/branch/master/Questionable.Model/common-schema.json",
"$defs": { "$defs": {
"Vector3": {
"type": "object",
"description": "Position to try reaching after the jump",
"properties": {
"X": {
"type": "number"
},
"Y": {
"type": "number"
},
"Z": {
"type": "number"
}
},
"required": [
"X",
"Y",
"Z"
]
},
"Aetheryte": { "Aetheryte": {
"type": "string", "type": "string",
"enum": [ "enum": [

View File

@ -1,6 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Numerics;
using Dalamud.Game.ClientState.Objects.Types; using Dalamud.Game.ClientState.Objects.Types;
using Dalamud.Plugin.Services; using Dalamud.Plugin.Services;
using FFXIVClientStructs.FFXIV.Application.Network.WorkDefinitions; using FFXIVClientStructs.FFXIV.Application.Network.WorkDefinitions;
@ -204,6 +205,15 @@ internal static class SkipCondition
} }
} }
if (SkipConditions.NearPosition is { } nearPosition && clientState.TerritoryType == Step.TerritoryId)
{
if (Vector3.Distance(nearPosition.Position, clientState.LocalPlayer!.Position) <= nearPosition.MaximumDistance)
{
logger.LogInformation("Skipping step, as we're near the position");
return true;
}
}
if (SkipConditions.ExtraCondition == EExtraSkipCondition.WakingSandsMainArea && if (SkipConditions.ExtraCondition == EExtraSkipCondition.WakingSandsMainArea &&
clientState.TerritoryType == 212) clientState.TerritoryType == 212)
{ {

View File

@ -1,6 +1,5 @@
<Project Sdk="Dalamud.NET.Sdk/10.0.0"> <Project Sdk="Dalamud.NET.Sdk/10.0.0">
<PropertyGroup> <PropertyGroup>
<Version>2.4</Version>
<OutputPath>dist</OutputPath> <OutputPath>dist</OutputPath>
<PathMap Condition="$(SolutionDir) != ''">$(SolutionDir)=X:\</PathMap> <PathMap Condition="$(SolutionDir) != ''">$(SolutionDir)=X:\</PathMap>
<Platforms>x64</Platforms> <Platforms>x64</Platforms>