This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run this script in an Admin(!) Powershell within your EVE settings folder. | |
# Open the %localappdata%\CCP\EVE folder to dig for the actual settings folder. | |
# e.g., %localappdata%\CCP\EVE\CCP\EVE\c_eve_sharedcache_tq_tranquility\settings_Low_Graphics | |
# Set these to the char and user file you want to mirror from. | |
$charSource = Get-ChildItem "core_char_####.dat" | |
$userSource = Get-ChildItem "core_user_####.dat" | |
function HardLink-Many | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Displays an Embed with every possible option. | |
/// </summary> | |
/// <returns></returns> | |
[Command("embed")] | |
[Summary("Displays an Embed.")] | |
public async Task<RuntimeResult> Embed() | |
{ | |
Color pink = new Color(255, 0, 255); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Trigger R="14:2306:(Halicarnassus|Halicarnasse|Halikarnassos|ハリカルナッソス)" SD="Swords Swords Swords" ST="3" CR="F" C=" General" T="F" TN="" Ta="F" /> | |
<Trigger R="14:2308:(Halicarnassus|Halicarnasse|Halikarnassos|ハリカルナッソス)" SD="Vines Vines Vines" ST="3" CR="F" C=" General" T="F" TN="" Ta="F" /> | |
<Trigger R="14:230A:(Halicarnassus|Halicarnasse|Halikarnassos|ハリカルナッソス)" SD="Blue Blue Blue" ST="3" CR="F" C=" General" T="F" TN="" Ta="F" /> | |
<Trigger R="14:230E:(Halicarnassus|Halicarnasse|Halikarnassos|ハリカルナッソス)" SD="Books Books Books" ST="3" CR="F" C=" General" T="F" TN="" Ta="F" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<TriggernometryExport Version="1"> | |
<ExportedFolder FFXIVJobFilterEnabled="false" FFXIVJobFilter="0" ZoneFilterEnabled="false" EventFilterEnabled="false" ZoneFilterRegularExpression="" EventFilterRegularExpression="" Name="Deltascape v3.0 (Savage)" Enabled="true"> | |
<Folders /> | |
<Triggers> | |
<Trigger Enabled="true" Name="The Queen's Waltz: Swords" Id="61f079bc-723d-4f2a-952f-1d38a9e2498f" RegularExpression="(?i)^\[[0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]{3}\] 14:2306:" AllowRefire="true" RefireDelayed="false" RefireDelayExpression="0"> | |
<Actions> | |
<Action OrderNumber="1" AuraName="" AuraImage="" AuraImageMode="Normal" AuraXIniExpression="" AuraYIniExpression="" AuraWIniExpression="" AuraHIniExpression="" AuraOIniExpression="" AuraXTickExpression="" AuraYTickExpression="" AuraWTickExpression="" AuraHTickExpression="" AuraOTickExpression="" AuraTTLTickExpression="" Enabled="true" ActionType="UseTTS" ExecutionDelayExpression="0" Asynchronous="true" RefireInterrupt="true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<TriggernometryExport Version="1"> | |
<ExportedTrigger Enabled="true" Name="On Wipe" Id="d2f2668d-dfd5-456d-a404-1d2b5cdd18cd" RegularExpression="(wipeout|0038:end|21:([0-9,a-f,A-F]{8}):40000010)" DebugLevel="Inherit" PrevActions="Keep" PrevActionsRefire="Allow" Scheduling="FromFire" PeriodRefire="Allow" RefirePeriodExpression="0"> | |
<Actions> | |
<Action DiscordTts="false" OrderNumber="1" AuraImageMode="Normal" TextAuraAlignment="MiddleCenter" TextAuraFontSize="8.25" TextAuraEffect="None" TextAuraUseOutline="false" Enabled="true" ActionType="EndEncounter" ExecutionDelayExpression="0" Asynchronous="true" DebugLevel="Inherit" RefireInterrupt="false" RefireRequeue="true" SystemBeepFreqExpression="1000" SystemBeepLengthExpression="100" PlaySoundVolumeExpression="100" PlaySoundExclusive="true" PlaySoundMyself="false" PlaySpeechMyself="false" UseTTSVolumeExpression="100" UseTTSRateExpression="0" UseTTSExclusive="true" LaunchProcessWindowStyle="Normal" ExecScriptType="CSharp" MessageBoxIcon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
SET s=FFXIV_CHR004000174ACEA8B9 | |
for /D %%i in (FFXIV_CHR*) do ( | |
IF NOT "%s%" == "%%i" ( | |
echo "Linking %s% -> %%i" | |
for %%x in (ACQ ADDON COMMON CONTROL0 CONTROL1 HOTBAR KEYBIND LOGFLTR MACRO) do ( | |
del "%%i\%%x.DAT" | |
mklink /H "%%i\%%x.DAT" "%s%\%%x.DAT" |