This repository was archived by the owner on May 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Merged
735 #219
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
2c94126
Add Korean translations and improve encounter triggers for Meso Termi…
kshman 16a1a67
Add triggers for Pilgrim's Traverse Stones (1-70) and Meso Terminal d…
kshman 20532fc
Add Chinese translations for Pilgrim's Traverse and Meso Terminal dun…
kshman 6e9a4f5
Add German translations and improve existing ones for various trigger…
kshman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -8,7 +8,7 @@ | |||||
|
|
||||||
| namespace Cactbot { | ||||||
| public class FFXIVProcessKo : FFXIVProcess { | ||||||
| // Last updated for FFXIV 7.2 | ||||||
| // Last updated for FFXIV 7.3 | ||||||
| // Per aers/FFXIVClientStructs, what we call EntityMemory is actually: | ||||||
| // Client::Game::Character::Character (0x22E0) | ||||||
| // Client::Game::Object::GameObject (0x190) | ||||||
|
|
@@ -25,28 +25,28 @@ public unsafe struct EntityMemory { | |||||
| [FieldOffset(0x30)] | ||||||
| public fixed byte Name[nameBytes]; | ||||||
|
|
||||||
| [FieldOffset(0x74)] | ||||||
| [FieldOffset(0x78)] | ||||||
| public uint id; | ||||||
|
|
||||||
| [FieldOffset(0x8C)] | ||||||
| [FieldOffset(0x90)] | ||||||
| public EntityType type; | ||||||
|
|
||||||
| [FieldOffset(0x92)] | ||||||
| [FieldOffset(0x96)] | ||||||
| public ushort distance; | ||||||
|
|
||||||
| [FieldOffset(0xA0)] | ||||||
| [FieldOffset(0xB0)] | ||||||
| public Single pos_x; | ||||||
|
|
||||||
| [FieldOffset(0xA4)] | ||||||
| [FieldOffset(0xB4)] | ||||||
| public Single pos_z; | ||||||
|
|
||||||
| [FieldOffset(0xA8)] | ||||||
| [FieldOffset(0xB8)] | ||||||
| public Single pos_y; | ||||||
|
|
||||||
| [FieldOffset(0xB0)] | ||||||
| [FieldOffset(0xC0)] | ||||||
| public Single rotation; | ||||||
|
|
||||||
| [FieldOffset(0x190)] | ||||||
| [FieldOffset(0x1A0)] | ||||||
| public CharacterDetails charDetails; | ||||||
| } | ||||||
|
|
||||||
|
|
@@ -106,7 +106,8 @@ public FFXIVProcessKo(ILogger logger) : base(logger) { } | |||||
| // In combat boolean. | ||||||
| // This address is written to by "mov [rax+rcx],bl" and has three readers. | ||||||
| // This reader is "cmp byte ptr [ffxiv_dx11.exe+????????],00 { (0),0 }" | ||||||
| private static String kInCombatSignature = "803D??????????74??488B03488BCBFF50"; | ||||||
| // Updated in 7.3, signature was no longer unique, include the preceeding "jz LAB_?????????" | ||||||
| private static String kInCombatSignature = "74??803D??????????74??488B03488BCBFF50"; | ||||||
| private static int kInCombatSignatureOffset = -15; | ||||||
|
||||||
| private static int kInCombatSignatureOffset = -15; | |
| private static readonly int kInCombatSignatureOffset = -15; |
Copilot
AI
Nov 14, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Field 'kInCombatSignatureRIP' can be 'readonly'.
Suggested change
| private static bool kInCombatSignatureRIP = true; | |
| private static readonly bool kInCombatSignatureRIP = true; |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Field 'kInCombatSignature' can be 'readonly'.