Compare commits
No commits in common. "master" and "v4.2" have entirely different histories.
@ -1,5 +1,5 @@
|
|||||||
<Project>
|
<Project>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Version>4.3</Version>
|
<Version>4.2</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -3,12 +3,16 @@ using System.Collections.Generic;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Numerics;
|
using System.Numerics;
|
||||||
|
using System.Text.Json;
|
||||||
|
using System.Text.Json.Nodes;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
using System.Text.Json.Serialization.Metadata;
|
||||||
using Dalamud.Game.ClientState.Objects;
|
using Dalamud.Game.ClientState.Objects;
|
||||||
using Dalamud.Game.ClientState.Objects.Enums;
|
using Dalamud.Game.ClientState.Objects.Enums;
|
||||||
using Dalamud.Game.ClientState.Objects.Types;
|
using Dalamud.Game.ClientState.Objects.Types;
|
||||||
using Dalamud.Game.Command;
|
using Dalamud.Game.Command;
|
||||||
using Dalamud.Plugin.Services;
|
using Dalamud.Plugin.Services;
|
||||||
using Lumina.Excel.Sheets;
|
using Lumina.Excel.GeneratedSheets;
|
||||||
using Questionable.Model;
|
using Questionable.Model;
|
||||||
using Questionable.Model.Gathering;
|
using Questionable.Model.Gathering;
|
||||||
using Questionable.Model.Questing;
|
using Questionable.Model.Questing;
|
||||||
@ -66,14 +70,14 @@ internal sealed class EditorCommands : IDisposable
|
|||||||
if (target == null || target.ObjectKind != ObjectKind.GatheringPoint)
|
if (target == null || target.ObjectKind != ObjectKind.GatheringPoint)
|
||||||
throw new Exception("No valid target");
|
throw new Exception("No valid target");
|
||||||
|
|
||||||
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>().GetRowOrDefault(target.DataId);
|
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>()!.GetRow(target.DataId);
|
||||||
if (gatheringPoint == null)
|
if (gatheringPoint == null)
|
||||||
throw new Exception("Invalid gathering point");
|
throw new Exception("Invalid gathering point");
|
||||||
|
|
||||||
FileInfo targetFile;
|
FileInfo targetFile;
|
||||||
GatheringRoot root;
|
GatheringRoot root;
|
||||||
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
|
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
|
||||||
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.Value.GatheringPointBase.RowId);
|
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.GatheringPointBase.Row);
|
||||||
if (location != null)
|
if (location != null)
|
||||||
{
|
{
|
||||||
targetFile = location.File;
|
targetFile = location.File;
|
||||||
@ -92,7 +96,7 @@ internal sealed class EditorCommands : IDisposable
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
(targetFile, root) = CreateNewFile(gatheringPoint.Value, target);
|
(targetFile, root) = CreateNewFile(gatheringPoint, target);
|
||||||
_chatGui.Print($"Creating new file under {targetFile.FullName}", "qG");
|
_chatGui.Print($"Creating new file under {targetFile.FullName}", "qG");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -170,16 +174,16 @@ internal sealed class EditorCommands : IDisposable
|
|||||||
?.File.Directory;
|
?.File.Directory;
|
||||||
if (targetFolder == null)
|
if (targetFolder == null)
|
||||||
{
|
{
|
||||||
var territoryInfo = _dataManager.GetExcelSheet<TerritoryType>().GetRow(_clientState.TerritoryType);
|
var territoryInfo = _dataManager.GetExcelSheet<TerritoryType>()!.GetRow(_clientState.TerritoryType)!;
|
||||||
targetFolder = _plugin.PathsDirectory
|
targetFolder = _plugin.PathsDirectory
|
||||||
.CreateSubdirectory(ExpansionData.ExpansionFolders[(EExpansionVersion)territoryInfo.ExVersion.RowId])
|
.CreateSubdirectory(ExpansionData.ExpansionFolders[(EExpansionVersion)territoryInfo.ExVersion.Row])
|
||||||
.CreateSubdirectory(territoryInfo.PlaceName.Value.Name.ToString());
|
.CreateSubdirectory(territoryInfo.PlaceName.Value!.Name.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
FileInfo targetFile =
|
FileInfo targetFile =
|
||||||
new FileInfo(
|
new FileInfo(
|
||||||
Path.Combine(targetFolder.FullName,
|
Path.Combine(targetFolder.FullName,
|
||||||
$"{gatheringPoint.GatheringPointBase.RowId}_{gatheringPoint.PlaceName.Value.Name}_{(_clientState.LocalPlayer!.ClassJob.RowId == 16 ? "MIN" : "BTN")}.json"));
|
$"{gatheringPoint.GatheringPointBase.Row}_{gatheringPoint.PlaceName.Value!.Name}_{(_clientState.LocalPlayer!.ClassJob.Id == 16 ? "MIN" : "BTN")}.json"));
|
||||||
var root = new GatheringRoot
|
var root = new GatheringRoot
|
||||||
{
|
{
|
||||||
Author = [_configuration.AuthorName],
|
Author = [_configuration.AuthorName],
|
||||||
|
@ -59,7 +59,7 @@ public sealed class RendererPlugin : IDalamudPlugin
|
|||||||
_editorWindow = new EditorWindow(this, _editorCommands, dataManager, targetManager, clientState, objectTable)
|
_editorWindow = new EditorWindow(this, _editorCommands, dataManager, targetManager, clientState, objectTable)
|
||||||
{ IsOpen = true };
|
{ IsOpen = true };
|
||||||
_windowSystem.AddWindow(_editorWindow);
|
_windowSystem.AddWindow(_editorWindow);
|
||||||
_currentClassJob = (EClassJob?)_clientState.LocalPlayer?.ClassJob.RowId ?? EClassJob.Adventurer;
|
_currentClassJob = (EClassJob?)_clientState.LocalPlayer?.ClassJob.Id ?? EClassJob.Adventurer;
|
||||||
|
|
||||||
_pluginInterface.GetIpcSubscriber<object>("Questionable.ReloadData")
|
_pluginInterface.GetIpcSubscriber<object>("Questionable.ReloadData")
|
||||||
.Subscribe(Reload);
|
.Subscribe(Reload);
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Numerics;
|
using System.Numerics;
|
||||||
using Dalamud.Game.ClientState.Objects;
|
using Dalamud.Game.ClientState.Objects;
|
||||||
@ -10,7 +11,7 @@ using Dalamud.Interface.Colors;
|
|||||||
using Dalamud.Interface.Windowing;
|
using Dalamud.Interface.Windowing;
|
||||||
using Dalamud.Plugin.Services;
|
using Dalamud.Plugin.Services;
|
||||||
using ImGuiNET;
|
using ImGuiNET;
|
||||||
using Lumina.Excel.Sheets;
|
using Lumina.Excel.GeneratedSheets;
|
||||||
using Questionable.Model.Gathering;
|
using Questionable.Model.Gathering;
|
||||||
|
|
||||||
namespace GatheringPathRenderer.Windows;
|
namespace GatheringPathRenderer.Windows;
|
||||||
@ -204,12 +205,12 @@ internal sealed class EditorWindow : Window
|
|||||||
}
|
}
|
||||||
else if (_target != null)
|
else if (_target != null)
|
||||||
{
|
{
|
||||||
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>().GetRowOrDefault(_target.DataId);
|
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>()!.GetRow(_target.DataId);
|
||||||
if (gatheringPoint == null)
|
if (gatheringPoint == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
|
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
|
||||||
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.Value.GatheringPointBase.RowId);
|
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.GatheringPointBase.Row);
|
||||||
if (location != null)
|
if (location != null)
|
||||||
{
|
{
|
||||||
var targetFile = location.File;
|
var targetFile = location.File;
|
||||||
@ -233,9 +234,9 @@ internal sealed class EditorWindow : Window
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (ImGui.Button($"Create location ({gatheringPoint.Value.GatheringPointBase.RowId})"))
|
if (ImGui.Button($"Create location ({gatheringPoint.GatheringPointBase.Row})"))
|
||||||
{
|
{
|
||||||
var (targetFile, root) = _editorCommands.CreateNewFile(gatheringPoint.Value, _target);
|
var (targetFile, root) = _editorCommands.CreateNewFile(gatheringPoint, _target);
|
||||||
_plugin.Save(targetFile, root);
|
_plugin.Save(targetFile, root);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,118 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016093,
|
|
||||||
"Position": {
|
|
||||||
"X": -776.0281,
|
|
||||||
"Y": -133.35559,
|
|
||||||
"Z": -414.32825
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016219,
|
|
||||||
"Position": {
|
|
||||||
"X": 14.389221,
|
|
||||||
"Y": -111.05486,
|
|
||||||
"Z": 413.71777
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Buffet (Sanuwa)",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016217,
|
|
||||||
"Position": {
|
|
||||||
"X": 97.48987,
|
|
||||||
"Y": -86.45681,
|
|
||||||
"Z": 466.57495
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Buffet (Sanuwa)",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016218,
|
|
||||||
"Position": {
|
|
||||||
"X": 137.95679,
|
|
||||||
"Y": -87.380325,
|
|
||||||
"Z": 434.62268
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Buffet (Sanuwa)",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -62,16 +62,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -80,7 +70,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -58,16 +58,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -76,7 +66,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -111,16 +102,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -129,7 +110,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -98,17 +98,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -117,7 +106,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -62,17 +62,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -81,7 +70,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -91,17 +91,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -110,7 +99,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -91,17 +91,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -110,7 +99,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -73,17 +73,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -92,7 +81,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -58,17 +58,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -77,7 +66,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -1,113 +1,114 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||||
"Author": "AnimaMachinae",
|
"Author": "AnimaMachinae",
|
||||||
"QuestSequence": [
|
"QuestSequence": [
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"Sequence": 0,
|
||||||
"Position": {
|
"Steps": [
|
||||||
"X": 57.297607,
|
{
|
||||||
"Y": -47.842846,
|
"DataId": 1016803,
|
||||||
"Z": -174.63953
|
"Position": {
|
||||||
},
|
"X": 57.297607,
|
||||||
"TerritoryId": 398,
|
"Y": -47.842846,
|
||||||
"InteractionType": "AcceptQuest"
|
"Z": -174.63953
|
||||||
}
|
},
|
||||||
]
|
"TerritoryId": 398,
|
||||||
},
|
"InteractionType": "AcceptQuest"
|
||||||
{
|
}
|
||||||
"Sequence": 1,
|
]
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1017031,
|
|
||||||
"Position": {
|
|
||||||
"X": 74.20459,
|
|
||||||
"Y": -48.533592,
|
|
||||||
"Z": -171.12994
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006915,
|
|
||||||
"Position": {
|
|
||||||
"X": 96.45227,
|
|
||||||
"Y": -66.2395,
|
|
||||||
"Z": 616.6017
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fumigate",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006916,
|
|
||||||
"Position": {
|
|
||||||
"X": -149.95044,
|
|
||||||
"Y": -55.25299,
|
|
||||||
"Z": 541.37476
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fumigate",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006917,
|
|
||||||
"Position": {
|
|
||||||
"X": -625.0859,
|
|
||||||
"Y": -49.94281,
|
|
||||||
"Z": 491.02002
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fumigate",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"Sequence": 1,
|
||||||
"Position": {
|
"Steps": [
|
||||||
"X": 57.297607,
|
{
|
||||||
"Y": -47.842846,
|
"DataId": 1017031,
|
||||||
"Z": -174.63953
|
"Position": {
|
||||||
},
|
"X": 74.20459,
|
||||||
"TerritoryId": 398,
|
"Y": -48.533592,
|
||||||
"InteractionType": "CompleteQuest"
|
"Z": -171.12994
|
||||||
|
},
|
||||||
|
"TerritoryId": 398,
|
||||||
|
"InteractionType": "Interact"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Sequence": 2,
|
||||||
|
"Steps": [
|
||||||
|
{
|
||||||
|
"DataId": 2006915,
|
||||||
|
"Position": {
|
||||||
|
"X": 96.45227,
|
||||||
|
"Y": -66.2395,
|
||||||
|
"Z": 616.6017
|
||||||
|
},
|
||||||
|
"TerritoryId": 398,
|
||||||
|
"InteractionType": "Action",
|
||||||
|
"Action": "Fumigate",
|
||||||
|
"Fly": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Sequence": 3,
|
||||||
|
"Steps": [
|
||||||
|
{
|
||||||
|
"DataId": 2006916,
|
||||||
|
"Position": {
|
||||||
|
"X": -149.95044,
|
||||||
|
"Y": -55.25299,
|
||||||
|
"Z": 541.37476
|
||||||
|
},
|
||||||
|
"TerritoryId": 398,
|
||||||
|
"InteractionType": "Action",
|
||||||
|
"Action": "Fumigate",
|
||||||
|
"Fly": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Sequence": 4,
|
||||||
|
"Steps": [
|
||||||
|
{
|
||||||
|
"DataId": 2006917,
|
||||||
|
"Position": {
|
||||||
|
"X": -625.0859,
|
||||||
|
"Y": -49.94281,
|
||||||
|
"Z": 491.02002
|
||||||
|
},
|
||||||
|
"TerritoryId": 398,
|
||||||
|
"InteractionType": "Action",
|
||||||
|
"Action": "Fumigate",
|
||||||
|
"Fly": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Sequence": 255,
|
||||||
|
"Steps": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 59.511234,
|
||||||
|
"Y": -48,
|
||||||
|
"Z": -171.35385
|
||||||
|
},
|
||||||
|
"TerritoryId": 398,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"Fly": true,
|
||||||
|
"Land": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DataId": 1016803,
|
||||||
|
"Position": {
|
||||||
|
"X": 57.297607,
|
||||||
|
"Y": -47.842846,
|
||||||
|
"Z": -174.63953
|
||||||
|
},
|
||||||
|
"TerritoryId": 398,
|
||||||
|
"InteractionType": "CompleteQuest"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@ -1,173 +1,173 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||||
"Author": "AnimaMachinae",
|
"Author": "AnimaMachinae",
|
||||||
"QuestSequence": [
|
"QuestSequence": [
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"Sequence": 0,
|
||||||
"Position": {
|
"Steps": [
|
||||||
"X": 57.297607,
|
{
|
||||||
"Y": -47.842846,
|
"DataId": 1016803,
|
||||||
"Z": -174.63953
|
"Position": {
|
||||||
},
|
"X": 57.297607,
|
||||||
"TerritoryId": 398,
|
"Y": -47.842846,
|
||||||
"InteractionType": "AcceptQuest"
|
"Z": -174.63953
|
||||||
}
|
},
|
||||||
]
|
"TerritoryId": 398,
|
||||||
},
|
"InteractionType": "AcceptQuest"
|
||||||
{
|
}
|
||||||
"Sequence": 1,
|
]
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 449.65012,
|
|
||||||
"Y": -51.141403,
|
|
||||||
"Z": 106.932205
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1011922,
|
"Sequence": 1,
|
||||||
"Position": {
|
"Steps": [
|
||||||
"X": 448.56934,
|
{
|
||||||
"Y": -51.141407,
|
"Position": {
|
||||||
"Z": 108.93408
|
"X": 449.65012,
|
||||||
},
|
"Y": -51.141403,
|
||||||
"TerritoryId": 398,
|
"Z": 106.932205
|
||||||
"InteractionType": "Interact"
|
},
|
||||||
}
|
"TerritoryId": 398,
|
||||||
]
|
"InteractionType": "WalkTo",
|
||||||
},
|
"Fly": true,
|
||||||
{
|
"Land": true,
|
||||||
"Sequence": 2,
|
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
|
||||||
"Steps": [
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2006918,
|
"DataId": 1011922,
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": 475.69995,
|
"X": 448.56934,
|
||||||
"Y": -44.174927,
|
"Y": -51.141407,
|
||||||
"Z": -231.46417
|
"Z": 108.93408
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "Combat",
|
"InteractionType": "Interact"
|
||||||
"EnemySpawnType": "AfterItemUse",
|
}
|
||||||
"ItemId": 2001961,
|
]
|
||||||
"KillEnemyDataIds": [
|
|
||||||
71224
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2006920,
|
"Sequence": 2,
|
||||||
"Position": {
|
"Steps": [
|
||||||
"X": 329.4879,
|
{
|
||||||
"Y": -45.487183,
|
"DataId": 2006918,
|
||||||
"Z": -262.13477
|
"Position": {
|
||||||
},
|
"X": 475.69995,
|
||||||
"TerritoryId": 398,
|
"Y": -44.174927,
|
||||||
"InteractionType": "Combat",
|
"Z": -231.46417
|
||||||
"EnemySpawnType": "AfterItemUse",
|
},
|
||||||
"ItemId": 2001961,
|
"TerritoryId": 398,
|
||||||
"KillEnemyDataIds": [
|
"InteractionType": "Combat",
|
||||||
5548
|
"EnemySpawnType": "AfterItemUse",
|
||||||
],
|
"ItemId": 2001961,
|
||||||
"Fly": true,
|
"KillEnemyDataIds": [
|
||||||
"Land": true,
|
71224
|
||||||
"CompletionQuestVariablesFlags": [
|
],
|
||||||
null,
|
"Fly": true,
|
||||||
null,
|
"Land": true,
|
||||||
null,
|
"CompletionQuestVariablesFlags": [
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
32
|
null,
|
||||||
]
|
null,
|
||||||
|
null,
|
||||||
|
128
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DataId": 2006920,
|
||||||
|
"Position": {
|
||||||
|
"X": 329.4879,
|
||||||
|
"Y": -45.487183,
|
||||||
|
"Z": -262.13477
|
||||||
|
},
|
||||||
|
"TerritoryId": 398,
|
||||||
|
"InteractionType": "Combat",
|
||||||
|
"EnemySpawnType": "AfterItemUse",
|
||||||
|
"ItemId": 2001961,
|
||||||
|
"KillEnemyDataIds": [
|
||||||
|
5548
|
||||||
|
],
|
||||||
|
"Fly": true,
|
||||||
|
"Land": true,
|
||||||
|
"CompletionQuestVariablesFlags": [
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
32
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DataId": 2006919,
|
||||||
|
"Position": {
|
||||||
|
"X": 535.45435,
|
||||||
|
"Y": -32.39496,
|
||||||
|
"Z": -410.60504
|
||||||
|
},
|
||||||
|
"TerritoryId": 398,
|
||||||
|
"InteractionType": "Combat",
|
||||||
|
"EnemySpawnType": "AfterItemUse",
|
||||||
|
"ItemId": 2001961,
|
||||||
|
"KillEnemyDataIds": [
|
||||||
|
71224
|
||||||
|
],
|
||||||
|
"Fly": true,
|
||||||
|
"Land": true
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2006919,
|
"Sequence": 3,
|
||||||
"Position": {
|
"Steps": [
|
||||||
"X": 535.45435,
|
{
|
||||||
"Y": -32.39496,
|
"Position": {
|
||||||
"Z": -410.60504
|
"X": 449.65012,
|
||||||
},
|
"Y": -51.141403,
|
||||||
"TerritoryId": 398,
|
"Z": 106.932205
|
||||||
"InteractionType": "Combat",
|
},
|
||||||
"EnemySpawnType": "AfterItemUse",
|
"TerritoryId": 398,
|
||||||
"ItemId": 2001961,
|
"InteractionType": "WalkTo",
|
||||||
"KillEnemyDataIds": [
|
"Fly": true,
|
||||||
71224
|
"Land": true,
|
||||||
],
|
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
|
||||||
"Fly": true,
|
},
|
||||||
"Land": true
|
{
|
||||||
}
|
"DataId": 1011922,
|
||||||
]
|
"Position": {
|
||||||
},
|
"X": 448.56934,
|
||||||
{
|
"Y": -51.141407,
|
||||||
"Sequence": 3,
|
"Z": 108.93408
|
||||||
"Steps": [
|
},
|
||||||
{
|
"TerritoryId": 398,
|
||||||
"Position": {
|
"InteractionType": "Interact"
|
||||||
"X": 449.65012,
|
}
|
||||||
"Y": -51.141403,
|
]
|
||||||
"Z": 106.932205
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1011922,
|
"Sequence": 255,
|
||||||
"Position": {
|
"Steps": [
|
||||||
"X": 448.56934,
|
{
|
||||||
"Y": -51.141407,
|
"Position": {
|
||||||
"Z": 108.93408
|
"X": 59.511234,
|
||||||
},
|
"Y": -48,
|
||||||
"TerritoryId": 398,
|
"Z": -171.35385
|
||||||
"InteractionType": "Interact"
|
},
|
||||||
|
"TerritoryId": 398,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"Fly": true,
|
||||||
|
"Land": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DataId": 1016803,
|
||||||
|
"Position": {
|
||||||
|
"X": 57.297607,
|
||||||
|
"Y": -47.842846,
|
||||||
|
"Z": -174.63953
|
||||||
|
},
|
||||||
|
"TerritoryId": 398,
|
||||||
|
"InteractionType": "CompleteQuest"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016803,
|
|
||||||
"Position": {
|
|
||||||
"X": 57.297607,
|
|
||||||
"Y": -47.842846,
|
|
||||||
"Z": -174.63953
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@ -78,17 +78,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -97,7 +86,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -55,16 +55,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -73,7 +63,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -91,17 +91,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -110,7 +99,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -1,125 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016803,
|
|
||||||
"Position": {
|
|
||||||
"X": 57.297607,
|
|
||||||
"Y": -47.842846,
|
|
||||||
"Z": -174.63953
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016865,
|
|
||||||
"Position": {
|
|
||||||
"X": -272.23627,
|
|
||||||
"Y": -35.408485,
|
|
||||||
"Z": 219.07373
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016864,
|
|
||||||
"Position": {
|
|
||||||
"X": -452.32324,
|
|
||||||
"Y": -35.352047,
|
|
||||||
"Z": 174.30371
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016866,
|
|
||||||
"Position": {
|
|
||||||
"X": -397.05505,
|
|
||||||
"Y": -34.192406,
|
|
||||||
"Z": 243.12195
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
5551
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016866,
|
|
||||||
"Position": {
|
|
||||||
"X": -397.05505,
|
|
||||||
"Y": -34.192406,
|
|
||||||
"Z": 243.12195
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016803,
|
|
||||||
"Position": {
|
|
||||||
"X": 57.297607,
|
|
||||||
"Y": -47.842846,
|
|
||||||
"Z": -174.63953
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -101,16 +101,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -119,7 +109,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -100,16 +100,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -118,7 +108,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -73,17 +73,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -92,7 +81,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -101,16 +101,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -119,7 +109,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||||
"Author": "liza",
|
"Author": "liza",
|
||||||
|
"Comment": "TODO untested how many RNG states this has",
|
||||||
"QuestSequence": [
|
"QuestSequence": [
|
||||||
{
|
{
|
||||||
"Sequence": 0,
|
"Sequence": 0,
|
||||||
@ -111,32 +112,6 @@
|
|||||||
null,
|
null,
|
||||||
null
|
null
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2014490,
|
|
||||||
"Position": {
|
|
||||||
"X": 485.6183,
|
|
||||||
"Y": 10.8185425,
|
|
||||||
"Z": -281.7884
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
18173
|
|
||||||
],
|
|
||||||
"RequiredQuestVariables": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"High": 3
|
|
||||||
}
|
|
||||||
],
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||||
"Author": "liza",
|
"Author": "liza",
|
||||||
|
"Disabled": true,
|
||||||
"QuestSequence": [
|
"QuestSequence": [
|
||||||
{
|
{
|
||||||
"Sequence": 0,
|
"Sequence": 0,
|
||||||
@ -27,93 +28,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2014497,
|
|
||||||
"Position": {
|
|
||||||
"X": -130.7851,
|
|
||||||
"Y": 114.39685,
|
|
||||||
"Z": 240.31421
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
18174
|
|
||||||
],
|
|
||||||
"AetheryteShortcut": "Kozama'uka - Earthenshire",
|
|
||||||
"Fly": true,
|
|
||||||
"RequiredQuestVariables": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"High": 1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2014498,
|
|
||||||
"Position": {
|
|
||||||
"X": -56.565247,
|
|
||||||
"Y": 111.77234,
|
|
||||||
"Z": 172.62524
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
18174
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"RequiredQuestVariables": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"High": 2
|
|
||||||
}
|
|
||||||
],
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2014499,
|
|
||||||
"Position": {
|
|
||||||
"X": -84.18408,
|
|
||||||
"Y": 111.436646,
|
|
||||||
"Z": 268.05518
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
18174
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"RequiredQuestVariables": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"High": 3
|
|
||||||
}
|
|
||||||
],
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||||
"Author": "liza",
|
"Author": "liza",
|
||||||
|
"Disabled": true,
|
||||||
"QuestSequence": [
|
"QuestSequence": [
|
||||||
{
|
{
|
||||||
"Sequence": 0,
|
"Sequence": 0,
|
||||||
@ -27,74 +28,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1052324,
|
|
||||||
"Position": {
|
|
||||||
"X": -248.18805,
|
|
||||||
"Y": 110.17465,
|
|
||||||
"Z": 189.01343
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Kozama'uka - Earthenshire",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1052326,
|
|
||||||
"Position": {
|
|
||||||
"X": -304.61584,
|
|
||||||
"Y": 110.20639,
|
|
||||||
"Z": 725.39856
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"RequiredQuestVariables": [
|
|
||||||
null,
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"High": 2
|
|
||||||
}
|
|
||||||
],
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1052435,
|
|
||||||
"Position": {
|
|
||||||
"X": 505.76025,
|
|
||||||
"Y": 115.10293,
|
|
||||||
"Z": 205.7373
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Kozama'uka - Many Fires",
|
|
||||||
"RequiredQuestVariables": [
|
|
||||||
null,
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"High": 1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||||
"Author": "liza",
|
"Author": "liza",
|
||||||
|
"Disabled": true,
|
||||||
"QuestSequence": [
|
"QuestSequence": [
|
||||||
{
|
{
|
||||||
"Sequence": 0,
|
"Sequence": 0,
|
||||||
@ -27,99 +28,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1051798,
|
|
||||||
"Position": {
|
|
||||||
"X": 897.734,
|
|
||||||
"Y": 6.8223433,
|
|
||||||
"Z": -285.1759
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1052328,
|
|
||||||
"Position": {
|
|
||||||
"X": 171.6792,
|
|
||||||
"Y": 16.762953,
|
|
||||||
"Z": -112.44379
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Bosom Brook",
|
|
||||||
"Fly": true,
|
|
||||||
"RequiredQuestVariables": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"High": 1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1052329,
|
|
||||||
"Position": {
|
|
||||||
"X": 216.7544,
|
|
||||||
"Y": 16.31888,
|
|
||||||
"Z": -99.687195
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Bosom Brook",
|
|
||||||
"Fly": true,
|
|
||||||
"RequiredQuestVariables": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"High": 2
|
|
||||||
}
|
|
||||||
],
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1052327,
|
|
||||||
"Position": {
|
|
||||||
"X": 186.38892,
|
|
||||||
"Y": 21.742897,
|
|
||||||
"Z": -74.47931
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Bosom Brook",
|
|
||||||
"Fly": true,
|
|
||||||
"RequiredQuestVariables": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"High": 3
|
|
||||||
}
|
|
||||||
],
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||||
"Author": "liza",
|
"Author": "liza",
|
||||||
|
"Disabled": true,
|
||||||
"QuestSequence": [
|
"QuestSequence": [
|
||||||
{
|
{
|
||||||
"Sequence": 0,
|
"Sequence": 0,
|
||||||
@ -27,84 +28,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1052333,
|
|
||||||
"Position": {
|
|
||||||
"X": 775.1736,
|
|
||||||
"Y": 12.871736,
|
|
||||||
"Z": -196.0022
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1052335,
|
|
||||||
"Position": {
|
|
||||||
"X": 867.76526,
|
|
||||||
"Y": 14.402381,
|
|
||||||
"Z": -171.31305
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1052334,
|
|
||||||
"Position": {
|
|
||||||
"X": 864.5609,
|
|
||||||
"Y": 15.056413,
|
|
||||||
"Z": -256.27533
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1052336,
|
|
||||||
"Position": {
|
|
||||||
"X": 838.4375,
|
|
||||||
"Y": 14.301746,
|
|
||||||
"Z": -222.06458
|
|
||||||
},
|
|
||||||
"TerritoryId": 1188,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
@ -116,7 +39,7 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 1188,
|
"TerritoryId": 1188,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo",
|
||||||
"Fly": true
|
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1051711,
|
"DataId": 1051711,
|
||||||
|
@ -965,8 +965,7 @@
|
|||||||
"Katon",
|
"Katon",
|
||||||
"Raiton",
|
"Raiton",
|
||||||
"Hide",
|
"Hide",
|
||||||
"Slug Shot",
|
"Slug Shot"
|
||||||
"Bosom Brook"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -41,6 +41,5 @@ public sealed class ActionConverter() : EnumConverter<EAction>(Values)
|
|||||||
{ EAction.Katon, "Katon" },
|
{ EAction.Katon, "Katon" },
|
||||||
{ EAction.Raiton, "Raiton" },
|
{ EAction.Raiton, "Raiton" },
|
||||||
{ EAction.SlugShot, "Slug Shot" },
|
{ EAction.SlugShot, "Slug Shot" },
|
||||||
{ EAction.BosomBrook, "Bosom Brook" },
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,6 @@ public enum EAction
|
|||||||
Raiton = 2267,
|
Raiton = 2267,
|
||||||
RabbitMedium = 2272,
|
RabbitMedium = 2272,
|
||||||
SlugShot = 7412,
|
SlugShot = 7412,
|
||||||
BosomBrook = 37173,
|
|
||||||
|
|
||||||
CollectMiner = 240,
|
CollectMiner = 240,
|
||||||
ScourMiner = 22182,
|
ScourMiner = 22182,
|
||||||
@ -85,7 +84,6 @@ public static class EActionExtensions
|
|||||||
or EAction.YellowGulal
|
or EAction.YellowGulal
|
||||||
or EAction.BlueGulal
|
or EAction.BlueGulal
|
||||||
or EAction.ElectrixFlux
|
or EAction.ElectrixFlux
|
||||||
or EAction.HopStep
|
or EAction.HopStep;
|
||||||
or EAction.BosomBrook;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -98,6 +98,7 @@ internal sealed class InteractionUiController : IDisposable
|
|||||||
_addonLifecycle.RegisterListener(AddonEvent.PostSetup, "SelectYesno", SelectYesnoPostSetup);
|
_addonLifecycle.RegisterListener(AddonEvent.PostSetup, "SelectYesno", SelectYesnoPostSetup);
|
||||||
_addonLifecycle.RegisterListener(AddonEvent.PostSetup, "PointMenu", PointMenuPostSetup);
|
_addonLifecycle.RegisterListener(AddonEvent.PostSetup, "PointMenu", PointMenuPostSetup);
|
||||||
_addonLifecycle.RegisterListener(AddonEvent.PostSetup, "HousingSelectBlock", HousingSelectBlockPostSetup);
|
_addonLifecycle.RegisterListener(AddonEvent.PostSetup, "HousingSelectBlock", HousingSelectBlockPostSetup);
|
||||||
|
_addonLifecycle.RegisterListener(AddonEvent.PostSetup, "TelepotTown", TeleportTownPostSetup);
|
||||||
|
|
||||||
unsafe
|
unsafe
|
||||||
{
|
{
|
||||||
@ -847,6 +848,46 @@ internal sealed class InteractionUiController : IDisposable
|
|||||||
addon->FireCallbackInt(0);
|
addon->FireCallbackInt(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void TeleportTownPostSetup(AddonEvent type, AddonArgs args)
|
||||||
|
{
|
||||||
|
if (ShouldHandleUiInteractions &&
|
||||||
|
_questController.HasCurrentTaskMatching(out AethernetShortcut.Task? aethernetShortcut) &&
|
||||||
|
aethernetShortcut.From.IsFirmamentAetheryte())
|
||||||
|
{
|
||||||
|
// this might be better via atkvalues; but this works for now
|
||||||
|
uint toIndex = aethernetShortcut.To switch
|
||||||
|
{
|
||||||
|
EAetheryteLocation.FirmamentMendicantsCourt => 0,
|
||||||
|
EAetheryteLocation.FirmamentMattock => 1,
|
||||||
|
EAetheryteLocation.FirmamentNewNest => 2,
|
||||||
|
EAetheryteLocation.FirmanentSaintRoellesDais => 3,
|
||||||
|
EAetheryteLocation.FirmamentFeatherfall => 4,
|
||||||
|
EAetheryteLocation.FirmamentHoarfrostHall => 5,
|
||||||
|
EAetheryteLocation.FirmamentWesternRisensongQuarter => 6,
|
||||||
|
EAetheryteLocation.FIrmamentEasternRisensongQuarter => 7,
|
||||||
|
_ => uint.MaxValue,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (toIndex == uint.MaxValue)
|
||||||
|
return;
|
||||||
|
|
||||||
|
_logger.LogInformation("Teleporting to {ToName} with menu index {ToIndex}", aethernetShortcut.From,
|
||||||
|
toIndex);
|
||||||
|
unsafe
|
||||||
|
{
|
||||||
|
var teleportToDestination = stackalloc AtkValue[]
|
||||||
|
{
|
||||||
|
new() { Type = ValueType.Int, Int = 11 },
|
||||||
|
new() { Type = ValueType.UInt, UInt = toIndex }
|
||||||
|
};
|
||||||
|
|
||||||
|
var addon = (AtkUnitBase*)args.Addon;
|
||||||
|
addon->FireCallback(2, teleportToDestination);
|
||||||
|
addon->FireCallback(2, teleportToDestination, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private StringOrRegex? ResolveReference(Quest? quest, string? excelSheet, ExcelRef? excelRef, bool isRegExp)
|
private StringOrRegex? ResolveReference(Quest? quest, string? excelSheet, ExcelRef? excelRef, bool isRegExp)
|
||||||
{
|
{
|
||||||
if (excelRef == null)
|
if (excelRef == null)
|
||||||
@ -864,6 +905,7 @@ internal sealed class InteractionUiController : IDisposable
|
|||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
|
_addonLifecycle.UnregisterListener(AddonEvent.PostSetup, "TelepotTown", TeleportTownPostSetup);
|
||||||
_addonLifecycle.UnregisterListener(AddonEvent.PostSetup, "HousingSelectBlock", HousingSelectBlockPostSetup);
|
_addonLifecycle.UnregisterListener(AddonEvent.PostSetup, "HousingSelectBlock", HousingSelectBlockPostSetup);
|
||||||
_addonLifecycle.UnregisterListener(AddonEvent.PostSetup, "PointMenu", PointMenuPostSetup);
|
_addonLifecycle.UnregisterListener(AddonEvent.PostSetup, "PointMenu", PointMenuPostSetup);
|
||||||
_addonLifecycle.UnregisterListener(AddonEvent.PostSetup, "SelectYesno", SelectYesnoPostSetup);
|
_addonLifecycle.UnregisterListener(AddonEvent.PostSetup, "SelectYesno", SelectYesnoPostSetup);
|
||||||
|
@ -205,9 +205,17 @@ internal static class AethernetShortcut
|
|||||||
|
|
||||||
private void DoTeleport()
|
private void DoTeleport()
|
||||||
{
|
{
|
||||||
logger.LogInformation("Using lifestream to teleport to {Destination}", Task.To);
|
if (Task.From.IsFirmamentAetheryte())
|
||||||
lifestreamIpc.Teleport(Task.To);
|
{
|
||||||
_teleported = true;
|
logger.LogInformation("Using manual teleport interaction");
|
||||||
|
_teleported = gameFunctions.InteractWith((uint)Task.From, ObjectKind.EventObj);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
logger.LogInformation("Using lifestream to teleport to {Destination}", Task.To);
|
||||||
|
lifestreamIpc.Teleport(Task.To);
|
||||||
|
_teleported = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public override ETaskResult Update()
|
public override ETaskResult Update()
|
||||||
|
33
Questionable/External/LifestreamIpc.cs
vendored
33
Questionable/External/LifestreamIpc.cs
vendored
@ -1,9 +1,5 @@
|
|||||||
using System.Collections.Generic;
|
using Dalamud.Plugin;
|
||||||
using Dalamud.Plugin;
|
|
||||||
using Dalamud.Plugin.Ipc;
|
using Dalamud.Plugin.Ipc;
|
||||||
using Dalamud.Plugin.Services;
|
|
||||||
using Lumina.Excel.Sheets;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
using Questionable.Data;
|
using Questionable.Data;
|
||||||
using Questionable.Model.Common;
|
using Questionable.Model.Common;
|
||||||
|
|
||||||
@ -12,40 +8,25 @@ namespace Questionable.External;
|
|||||||
internal sealed class LifestreamIpc
|
internal sealed class LifestreamIpc
|
||||||
{
|
{
|
||||||
private readonly AetheryteData _aetheryteData;
|
private readonly AetheryteData _aetheryteData;
|
||||||
private readonly IDataManager _dataManager;
|
|
||||||
private readonly ILogger<LifestreamIpc> _logger;
|
|
||||||
private readonly ICallGateSubscriber<string, bool> _aethernetTeleport;
|
private readonly ICallGateSubscriber<string, bool> _aethernetTeleport;
|
||||||
|
|
||||||
public LifestreamIpc(IDalamudPluginInterface pluginInterface, AetheryteData aetheryteData, IDataManager dataManager, ILogger<LifestreamIpc> logger)
|
public LifestreamIpc(IDalamudPluginInterface pluginInterface, AetheryteData aetheryteData)
|
||||||
{
|
{
|
||||||
_aetheryteData = aetheryteData;
|
_aetheryteData = aetheryteData;
|
||||||
_dataManager = dataManager;
|
|
||||||
_logger = logger;
|
|
||||||
_aethernetTeleport = pluginInterface.GetIpcSubscriber<string, bool>("Lifestream.AethernetTeleport");
|
_aethernetTeleport = pluginInterface.GetIpcSubscriber<string, bool>("Lifestream.AethernetTeleport");
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool Teleport(EAetheryteLocation aetheryteLocation)
|
public bool Teleport(EAetheryteLocation aetheryteLocation)
|
||||||
{
|
{
|
||||||
string? name = aetheryteLocation switch
|
if (aetheryteLocation == EAetheryteLocation.IshgardFirmament)
|
||||||
{
|
{
|
||||||
EAetheryteLocation.IshgardFirmament => "Firmament",
|
// TODO does this even work on non-EN clients?
|
||||||
EAetheryteLocation.FirmamentMendicantsCourt => GetPlaceName(3436),
|
return _aethernetTeleport.InvokeFunc("Firmament");
|
||||||
EAetheryteLocation.FirmamentMattock => GetPlaceName(3473),
|
}
|
||||||
EAetheryteLocation.FirmamentNewNest => GetPlaceName(3475),
|
|
||||||
EAetheryteLocation.FirmanentSaintRoellesDais => GetPlaceName(3474),
|
|
||||||
EAetheryteLocation.FirmamentFeatherfall => GetPlaceName(3525),
|
|
||||||
EAetheryteLocation.FirmamentHoarfrostHall => GetPlaceName(3528),
|
|
||||||
EAetheryteLocation.FirmamentWesternRisensongQuarter => GetPlaceName(3646),
|
|
||||||
EAetheryteLocation.FIrmamentEasternRisensongQuarter => GetPlaceName(3645),
|
|
||||||
_ => _aetheryteData.AethernetNames.GetValueOrDefault(aetheryteLocation),
|
|
||||||
};
|
|
||||||
|
|
||||||
if (name == null)
|
if (!_aetheryteData.AethernetNames.TryGetValue(aetheryteLocation, out string? name))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
_logger.LogInformation("Teleporting to '{Name}'", name);
|
|
||||||
return _aethernetTeleport.InvokeFunc(name);
|
return _aethernetTeleport.InvokeFunc(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
private string GetPlaceName(uint rowId) => _dataManager.GetExcelSheet<PlaceName>().GetRow(rowId).Name.ToString();
|
|
||||||
}
|
}
|
||||||
|
@ -243,7 +243,6 @@ internal sealed unsafe class QuestFunctions
|
|||||||
{
|
{
|
||||||
return questId.Value switch
|
return questId.Value switch
|
||||||
{
|
{
|
||||||
5215 => EAlliedSociety.None,
|
|
||||||
>= 5199 and <= 5226 => EAlliedSociety.Pelupelu,
|
>= 5199 and <= 5226 => EAlliedSociety.Pelupelu,
|
||||||
_ => EAlliedSociety.None,
|
_ => EAlliedSociety.None,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user