-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActReminderXIV.cs
38 lines (36 loc) · 1.27 KB
/
ActReminderXIV.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using Dalamud.Game.Text.SeStringHandling;
using ECommons;
using ECommons.ChatMethods;
using ECommons.DalamudServices;
using ECommons.Hooks;
using ECommons.Schedulers;
using Splatoon.SplatoonScripting;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SplatoonScriptsOfficial.Generic
{
public class ActReminderXIV : SplatoonScript
{
public override HashSet<uint> ValidTerritories => new();
public override Metadata? Metadata => new(1, "Angel Wings XIV JP.Version");
public override void OnDirectorUpdate(DirectorUpdateCategory category)
{
if(category.EqualsAny(DirectorUpdateCategory.Commence, DirectorUpdateCategory.Recommence))
{
if(!Process.GetProcessesByName("Advanced Combat Tracker").Any())
{
var s = new SeStringBuilder().AddUiForeground("※WARNING※ ACTが起動してないよ! ※WARNING※", (ushort)UIColor.Red).Build();
for (var i = 0; i < 1; i++)
{
Svc.Chat.Print(s);
}
Svc.Toasts.ShowError(s.ExtractText());
}
}
}
}
}