This commit is contained in:
南沢响也
2025-12-17 23:57:46 +08:00
parent b121c8e574
commit ae5e63075b
3 changed files with 40 additions and 6 deletions

View File

@@ -53,22 +53,40 @@ public class NewDuty
public bool isText { get; set; } = true; public bool isText { get; set; } = true;
/*
#region 遗忘行路雾之迹 #region 遗忘行路雾之迹
[ScriptMethod(name: "—————— 遗忘行路雾之迹 ——————", eventType: EventTypeEnum.StartCasting, eventCondition: ["ActionId:"])]
public void 遗忘行路雾之迹(Event @event, ScriptAccessory accessory) { }
#endregion #endregion
*/
/*
#region 格莱杨拉波尔歼灭战 #region 格莱杨拉波尔歼灭战
[ScriptMethod(name: "—————— 格莱杨拉波尔歼灭战 ——————", eventType: EventTypeEnum.StartCasting, eventCondition: ["ActionId:"])]
public void 格莱杨拉波尔歼灭战(Event @event, ScriptAccessory accessory) { }
#endregion #endregion
*/
/*
#region 格莱杨拉波尔歼殛战 #region 格莱杨拉波尔歼殛战
[ScriptMethod(name: "—————— 格莱杨拉波尔歼殛战 ——————", eventType: EventTypeEnum.StartCasting, eventCondition: ["ActionId:"])]
public void 格莱杨拉波尔歼殛战(Event @event, ScriptAccessory accessory) { }
#endregion #endregion
*/
#region #region
[ScriptMethod(name: "—————— 月读幻巧战 ——————", eventType: EventTypeEnum.StartCasting, eventCondition: ["ActionId:"])]
public void (Event @event, ScriptAccessory accessory) { }
private const uint TsukuyomiDataId = 123456; private const uint TsukuyomiDataId = 123456;

View File

@@ -866,12 +866,28 @@
{ {
"Name": "PVP技能绘制", "Name": "PVP技能绘制",
"Guid": "070e161a-26e9-4a57-8b19-da8c4201058c", "Guid": "070e161a-26e9-4a57-8b19-da8c4201058c",
"Version": "0.0.0.1", "Version": "0.0.0.2",
"Author": "Tetora", "Author": "Tetora",
"Repo": "https://github.com/Hibiya615/TetoraKAScript/tree/main", "Repo": "https://github.com/Hibiya615/TetoraKAScript/tree/main",
"DownloadUrl": "https://raw.githubusercontent.com/Hibiya615/TetoraKAScript/refs/heads/main/PVP/PVPAction.cs", "DownloadUrl": "https://raw.githubusercontent.com/Hibiya615/TetoraKAScript/refs/heads/main/PVP/PVPAction.cs",
"Note": "v0.0.0.1:\r\nPVP技能绘制全部地图可用未做任何区域限制。\r\n推荐先自己过一遍设置把不需要的关闭\r\n【仅适用敌方目标标记】是用于四小的因为一般都会给四小标头标x", "Note": "v0.0.0.2:\r\nPVP技能绘制全部地图可用未做任何区域限制。\r\n推荐先自己过一遍设置把不需要的关闭\r\n【仅适用敌方目标标记】是用于四小的因为一般都会给四小标头标x",
"UpdateInfo": "", "UpdateInfo": "API14",
"TerritoryIds": [] "TerritoryIds": []
},
{
"Name": "最新最热临时绘制",
"Guid": "80890eac-4730-4708-ad1b-05aba469c2a1",
"Version": "0.0.0.1",
"Author": "Tetora",
"Repo": "https://github.com/Hibiya615/TetoraKAScript/tree/main",
"DownloadUrl": "https://raw.githubusercontent.com/Hibiya615/TetoraKAScript/refs/heads/main/00-Other/NewDuty.cs",
"Note": "v0.0.0.1:\r\n最新最热副本绘制可能会电介意请关闭\r\n别人的正式版发了这边就删",
"UpdateInfo": "",
"TerritoryIds": [
1314,
1307,
1308,
1318
]
} }
] ]

View File

@@ -22,13 +22,13 @@ using FFXIVClientStructs.FFXIV.Client.Game.UI;
namespace PVPAction; namespace PVPAction;
[ScriptType(guid: "070e161a-26e9-4a57-8b19-da8c4201058c", name: "PVP技能绘制", territorys: [], [ScriptType(guid: "070e161a-26e9-4a57-8b19-da8c4201058c", name: "PVP技能绘制", territorys: [],
version: "0.0.0.1", author: "Tetora", note: noteStr)] version: "0.0.0.2", author: "Tetora", note: noteStr)]
public class PVPTAction public class PVPTAction
{ {
const string noteStr = const string noteStr =
""" """
v0.0.0.1: v0.0.0.2:
PVP技能绘制 PVP技能绘制
x x
@@ -816,5 +816,5 @@ public static class ActionExt
} }
public static bool IsSpellReady(this uint spellId) => IsReadyWithCanCast(spellId, ActionType.Action); public static bool IsSpellReady(this uint spellId) => IsReadyWithCanCast(spellId, ActionType.Action);
public static bool IsAbilityReady(this uint abilityId) => IsReadyWithCanCast(abilityId, ActionType.Ability); // public static bool IsAbilityReady(this uint abilityId) => IsReadyWithCanCast(abilityId, EventAction.Ability);
} }