{
"Sequence": 1,
"Steps": [
- {
- "DataId": 1052475,
- "Position": {
- "X": -22.354492,
- "Y": 10.13581,
- "Z": -241.41296
- },
- "TerritoryId": 133,
- "InteractionType": "Interact",
- "AetheryteShortcut": "Gridania",
- "AethernetShortcut": [
- "[Gridania] Aetheryte Plaza",
- "[Gridania] Mih Khetto's Amphitheatre"
- ],
- "SkipConditions": {
- "AetheryteShortcutIf": {
- "ExtraCondition": "SkipFreeFantasia",
- "InSameTerritory": true,
- "InTerritory": [
- 133
- ]
- },
- "StepIf": {
- "ExtraCondition": "SkipFreeFantasia"
- }
- }
- },
{
"DataId": 1051889,
"Position": {
-using System.Collections.Generic;
+using System;
+using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using Dalamud.Configuration;
using Dalamud.Game.Text;
public bool ShowIncompleteSeasonalEvents { get; set; } = true;
public bool ConfigureTextAdvance { get; set; } = true;
- // TODO Temporary setting for 7.1
+ // TODO Temporary setting, 7.2 adds another fantasia
public bool PickUpFreeFantasia { get; set; } = true;
}
Configuration.General.ConfigureTextAdvance = configureTextAdvance;
Save();
}
-
- ImGui.Separator();
- ImGui.TextColored(ImGuiColors.DalamudYellow, "Patch 7.1 exclusive content");
- using (_ = ImRaii.PushIndent())
- {
- bool pickUpFreeFantasia = Configuration.General.PickUpFreeFantasia;
- if (ImGui.Checkbox("Try to pick up free limited-time fantasia during 'Little Ladies' Day' quests",
- ref pickUpFreeFantasia))
- {
- Configuration.General.PickUpFreeFantasia = pickUpFreeFantasia;
- Save();
- }
- }
}
private void DrawCombatModule()