
Suntion
Member since
{
const element = document.getElementById(elementId);
if (!element) return;
element.scrollIntoView({ behavior: 'smooth', block: 'start' });
const highlightClasses = ['bg-yellow-100', 'dark:bg-sky-700', 'transition-colors', 'duration-1000'];
element.classList.add(...highlightClasses);
setTimeout(() => element.classList.remove(...highlightClasses), 2000);
});
"
>
Recent Activity
Edited mod
Current Version: v0.4.0
Main Features
Helps you record information related to each of your raids (including raids ended via Alt+F4).
This mod automatically tracks the start and end of each game session and records key data from the raid. Specific functions include:
- Pre-Raid Statistics: Records the total value of all equipped gear, the value of items in the Secure Container, and the total value of all brought-in items upon entering a raid.
- Post-Raid Recording: Tracks the value of extracted items, losses incurred during the raid, and kill information, etc.
- Data Compression & Storage: Automatically compresses and saves raid result data for later querying.
- Record Query System: Integrates a ChatBot function, allowing players to browse their personal raid history and query detailed data for specific raids via the client.
Command System
A ChatBot for managing raid records.
After right-clicking and starting the chat, you can enter the following commands:
## Commands
**help Command**

**list Command**
Specify Page Number
Use the `limit` parameter to control the number of records displayed per page.
Use the `page` parameter to specify the page number you want to view.

**info Command**
Use the `index` parameter to get the historical record for a specified index.
Use the `serverId` parameter (case-sensitive) to get the historical record for a specific raid ID.

check Command
Used to correct the income and loss data for a specified historical record.
Parameter usage is the same as the `info` command.

cls Command
Clears the chat history. No parameters; restart the client or delete the messages to view the effect.

## Database & Configuration File Introduction
Configuration File
Location: `Game Root Directory\user\mods\suntion-raidrecord\config\config.json`
Modify the configuration by referring to the interface below.
To avoid accidentally deleting all raid records, when you execute `RaidCacheClearAll`, an exception will be thrown by default. You need to manually comment out the corresponding exception-throwing line. After clearing, it is recommended to uncomment the exception-throwing line to prevent data loss.
```ts
// Interface
export interface IModConfig {
RaidRecordClearAll: boolean, // Whether to clear all raid cache and raid records (Use with Caution!!!)
RaidCacheClearAll: boolean, // Whether to clear all raid cache
LogVictims: boolean, // Whether the log outputs kill information from the raid
// The color you wish to use for raid record log messages
LogRaidColor: string
}
```
Database Files
Located at:
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_cache.json` Raid Cache
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_record.json` Raid Records
Recommended method for resetting the database: Extract `suntion-raidrecord-v0.4.0-default-database-files.7z` to `Game Root Directory\user\mods\suntion-raidrecord\db`, overwriting the original database files.
This is because when the amount of recorded data becomes too large, VsCode will have difficulty clearing the JSON file.
Oct 7, 2025 1:22 AM
View details
Edited mod
Current Version: v0.4.0
Main Features
Helps you record information related to each of your raids (including raids ended via Alt+F4).
This mod automatically tracks the start and end of each game session and records key data from the raid. Specific functions include:
- Pre-Raid Statistics: Records the total value of all equipped gear, the value of items in the Secure Container, and the total value of all brought-in items upon entering a raid.
- Post-Raid Recording: Tracks the value of extracted items, losses incurred during the raid, and kill information, etc.
- Data Compression & Storage: Automatically compresses and saves raid result data for later querying.
- Record Query System: Integrates a ChatBot function, allowing players to browse their personal raid history and query detailed data for specific raids via the client.
Command System
A ChatBot for managing raid records.
After right-clicking and starting the chat, you can enter the following commands:
## Commands
**help Command**

**list Command**
Specify Page Number
Use the `limit` parameter to control the number of records displayed per page.
Use the `page` parameter to specify the page number you want to view.

**info Command**
Use the `index` parameter to get the historical record for a specified index.
Use the `serverId` parameter (case-sensitive) to get the historical record for a specific raid ID.

check Command
Used to correct the income and loss data for a specified historical record.
Parameter usage is the same as the `info` command.

cls Command
Clears the chat history. No parameters; restart the client or delete the messages to view the effect.

## Database & Configuration File Introduction
Configuration File
Location: `Game Root Directory\user\mods\suntion-raidrecord\config\config.json`
Modify the configuration by referring to the interface below.
To avoid accidentally deleting all raid records, when you execute `RaidCacheClearAll`, an exception will be thrown by default. You need to manually comment out the corresponding exception-throwing line. After clearing, it is recommended to uncomment the exception-throwing line to prevent data loss.
```ts
// Interface
export interface IModConfig {
RaidRecordClearAll: boolean, // Whether to clear all raid cache and raid records (Use with Caution!!!)
RaidCacheClearAll: boolean, // Whether to clear all raid cache
LogVictims: boolean, // Whether the log outputs kill information from the raid
// The color you wish to use for raid record log messages
LogRaidColor: string
}
```
Database Files
Located at:
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_cache.json` Raid Cache
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_record.json` Raid Records
Recommended method for resetting the database: Extract `suntion-raidrecord-v0.4.0-default-database-files.7z` to `Game Root Directory\user\mods\suntion-raidrecord\db`, overwriting the original database files.
This is because when the amount of recorded data becomes too large, VsCode will have difficulty clearing the JSON file.
Oct 7, 2025 1:09 AM
View details
Edited mod
Current Version: v0.4.0
Main Features
Helps you record information related to each of your raids (including raids ended via Alt+F4).
This mod automatically tracks the start and end of each game session and records key data from the raid. Specific functions include:
- Pre-Raid Statistics: Records the total value of all equipped gear, the value of items in the Secure Container, and the total value of all brought-in items upon entering a raid.
- Post-Raid Recording: Tracks the value of extracted items, losses incurred during the raid, and kill information, etc.
- Data Compression & Storage: Automatically compresses and saves raid result data for later querying.
- Record Query System: Integrates a ChatBot function, allowing players to browse their personal raid history and query detailed data for specific raids via the client.
Command System
A ChatBot for managing raid records.
After right-clicking and starting the chat, you can enter the following commands:
## Commands
**help Command**

**list Command**
Specify Page Number
Use the `limit` parameter to control the number of records displayed per page.
Use the `page` parameter to specify the page number you want to view.

**info Command**
Use the `index` parameter to get the historical record for a specified index.
Use the `serverId` parameter (case-sensitive) to get the historical record for a specific raid ID.

check Command
Used to correct the income and loss data for a specified historical record.
Parameter usage is the same as the `info` command.

cls Command
Clears the chat history. No parameters; restart the client or delete the messages to view the effect.

## Database & Configuration File Introduction
Configuration File
Location: `Game Root Directory\user\mods\suntion-raidrecord\config\config.json`
Modify the configuration by referring to the interface below.
To avoid accidentally deleting all raid records, when you execute `RaidCacheClearAll`, an exception will be thrown by default. You need to manually comment out the corresponding exception-throwing line. After clearing, it is recommended to uncomment the exception-throwing line to prevent data loss.
```ts
// Interface
export interface IModConfig {
RaidRecordClearAll: boolean, // Whether to clear all raid cache and raid records (Use with Caution!!!)
RaidCacheClearAll: boolean, // Whether to clear all raid cache
LogVictims: boolean, // Whether the log outputs kill information from the raid
// The color you wish to use for raid record log messages
LogRaidColor: string
}
```
Database Files
Located at:
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_cache.json` Raid Cache
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_record.json` Raid Records
Recommended method for resetting the database: Extract `suntion-raidrecord-v0.4.0-default-database-files.7z` to `Game Root Directory\user\mods\suntion-raidrecord\db`, overwriting the original database files.
This is because when the amount of recorded data becomes too large, VsCode will have difficulty clearing the JSON file.
Oct 7, 2025 1:08 AM
View details
Edited mod
Current Version: v0.4.0
Main Features
Helps you record information related to each of your raids (including raids ended via Alt+F4).
This mod automatically tracks the start and end of each game session and records key data from the raid. Specific functions include:
- Pre-Raid Statistics: Records the total value of all equipped gear, the value of items in the Secure Container, and the total value of all brought-in items upon entering a raid.
- Post-Raid Recording: Tracks the value of extracted items, losses incurred during the raid, and kill information, etc.
- Data Compression & Storage: Automatically compresses and saves raid result data for later querying.
- Record Query System: Integrates a ChatBot function, allowing players to browse their personal raid history and query detailed data for specific raids via the client.
Command System
A ChatBot for managing raid records.
After right-clicking and starting the chat, you can enter the following commands:
## Commands
**help Command**

**list Command**
Specify Page Number
Use the `limit` parameter to control the number of records displayed per page.
Use the `page` parameter to specify the page number you want to view.

**info Command**
Use the `index` parameter to get the historical record for a specified index.
Use the `serverId` parameter (case-sensitive) to get the historical record for a specific raid ID.

check Command
Used to correct the income and loss data for a specified historical record.
Parameter usage is the same as the `info` command.

cls Command
Clears the chat history. No parameters; restart the client or delete the messages to view the effect.

## Database & Configuration File Introduction
Configuration File
Location: `Game Root Directory\user\mods\suntion-raidrecord\config\config.json`
Modify the configuration by referring to the interface below.
To avoid accidentally deleting all raid records, when you execute `RaidCacheClearAll`, an exception will be thrown by default. You need to manually comment out the corresponding exception-throwing line. After clearing, it is recommended to uncomment the exception-throwing line to prevent data loss.
```ts
// Interface
export interface IModConfig {
RaidRecordClearAll: boolean, // Whether to clear all raid cache and raid records (Use with Caution!!!)
RaidCacheClearAll: boolean, // Whether to clear all raid cache
LogVictims: boolean, // Whether the log outputs kill information from the raid
// The color you wish to use for raid record log messages
LogRaidColor: string
}
```
Database Files
Located at:
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_cache.json` Raid Cache
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_record.json` Raid Records
Recommended method for resetting the database: Extract `suntion-raidrecord-v0.4.0-default-database-files.7z` to `Game Root Directory\user\mods\suntion-raidrecord\db`, overwriting the original database files.
This is because when the amount of recorded data becomes too large, VsCode will have difficulty clearing the JSON file.
Oct 7, 2025 1:07 AM
View details
Edited mod
Current Version: v0.4.0
Main Features
Helps you record information related to each of your raids (including raids ended via Alt+F4).
This mod automatically tracks the start and end of each game session and records key data from the raid. Specific functions include:
- Pre-Raid Statistics: Records the total value of all equipped gear, the value of items in the Secure Container, and the total value of all brought-in items upon entering a raid.
- Post-Raid Recording: Tracks the value of extracted items, losses incurred during the raid, and kill information, etc.
- Data Compression & Storage: Automatically compresses and saves raid result data for later querying.
- Record Query System: Integrates a ChatBot function, allowing players to browse their personal raid history and query detailed data for specific raids via the client.
Command System
A ChatBot for managing raid records.
After right-clicking and starting the chat, you can enter the following commands:
## Commands
**help Command**

**list Command**
Specify Page Number
Use the `limit` parameter to control the number of records displayed per page.
Use the `page` parameter to specify the page number you want to view.

**info Command**
Use the `index` parameter to get the historical record for a specified index.
Use the `serverId` parameter (case-sensitive) to get the historical record for a specific raid ID.

check Command
Used to correct the income and loss data for a specified historical record.
Parameter usage is the same as the `info` command.

cls Command
Clears the chat history. No parameters; restart the client or delete the messages to view the effect.

## Database & Configuration File Introduction
Configuration File
Location: `Game Root Directory\user\mods\suntion-raidrecord\config\config.json`
Modify the configuration by referring to the interface below.
To avoid accidentally deleting all raid records, when you execute `RaidCacheClearAll`, an exception will be thrown by default. You need to manually comment out the corresponding exception-throwing line. After clearing, it is recommended to uncomment the exception-throwing line to prevent data loss.
```ts
// Interface
export interface IModConfig {
RaidRecordClearAll: boolean, // Whether to clear all raid cache and raid records (Use with Caution!!!)
RaidCacheClearAll: boolean, // Whether to clear all raid cache
LogVictims: boolean, // Whether the log outputs kill information from the raid
// The color you wish to use for raid record log messages
LogRaidColor: string
}
```
Database Files
Located at:
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_cache.json` Raid Cache
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_record.json` Raid Records
Recommended method for resetting the database: Extract `suntion-raidrecord-v0.4.0-default-database-files.7z` to `Game Root Directory\user\mods\suntion-raidrecord\db`, overwriting the original database files.
This is because when the amount of recorded data becomes too large, VsCode will have difficulty clearing the JSON file.
Oct 7, 2025 1:05 AM
View details
Edited mod
Current Version: v0.4.0
Main Features
Helps you record information related to each of your raids (including raids ended via Alt+F4).
This mod automatically tracks the start and end of each game session and records key data from the raid. Specific functions include:
- Pre-Raid Statistics: Records the total value of all equipped gear, the value of items in the Secure Container, and the total value of all brought-in items upon entering a raid.
- Post-Raid Recording: Tracks the value of extracted items, losses incurred during the raid, and kill information, etc.
- Data Compression & Storage: Automatically compresses and saves raid result data for later querying.
- Record Query System: Integrates a ChatBot function, allowing players to browse their personal raid history and query detailed data for specific raids via the client.
Command System
A ChatBot for managing raid records.
After right-clicking and starting the chat, you can enter the following commands:
## Commands
**help Command**

**list Command**
Specify Page Number
Use the `limit` parameter to control the number of records displayed per page.
Use the `page` parameter to specify the page number you want to view.

**info Command**
Use the `index` parameter to get the historical record for a specified index.
Use the `serverId` parameter (case-sensitive) to get the historical record for a specific raid ID.

check Command
Used to correct the income and loss data for a specified historical record.
Parameter usage is the same as the `info` command.

cls Command
Clears the chat history. No parameters; restart the client or delete the messages to view the effect.

## Database & Configuration File Introduction
Configuration File
Location: `Game Root Directory\user\mods\suntion-raidrecord\config\config.json`
Modify the configuration by referring to the interface below.
To avoid accidentally deleting all raid records, when you execute `RaidCacheClearAll`, an exception will be thrown by default. You need to manually comment out the corresponding exception-throwing line. After clearing, it is recommended to uncomment the exception-throwing line to prevent data loss.
```ts
// Interface
export interface IModConfig {
RaidRecordClearAll: boolean, // Whether to clear all raid cache and raid records (Use with Caution!!!)
RaidCacheClearAll: boolean, // Whether to clear all raid cache
LogVictims: boolean, // Whether the log outputs kill information from the raid
// The color you wish to use for raid record log messages
LogRaidColor: string
}
```
Database Files
Located at:
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_cache.json` Raid Cache
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_record.json` Raid Records
Recommended method for resetting the database: Extract `suntion-raidrecord-v0.4.0-default-database-files.7z` to `Game Root Directory\user\mods\suntion-raidrecord\db`, overwriting the original database files.
This is because when the amount of recorded data becomes too large, VsCode will have difficulty clearing the JSON file.
Oct 7, 2025 1:04 AM
View details
Edited mod
Current Version: v0.4.0
Main Features
Helps you record information related to each of your raids (including raids ended via Alt+F4).
This mod automatically tracks the start and end of each game session and records key data from the raid. Specific functions include:
- Pre-Raid Statistics: Records the total value of all equipped gear, the value of items in the Secure Container, and the total value of all brought-in items upon entering a raid.
- Post-Raid Recording: Tracks the value of extracted items, losses incurred during the raid, and kill information, etc.
- Data Compression & Storage: Automatically compresses and saves raid result data for later querying.
- Record Query System: Integrates a ChatBot function, allowing players to browse their personal raid history and query detailed data for specific raids via the client.
Command System
A ChatBot for managing raid records.
After right-clicking and starting the chat, you can enter the following commands:
## Commands
**help Command**

**list Command**
Specify Page Number
Use the `limit` parameter to control the number of records displayed per page.
Use the `page` parameter to specify the page number you want to view.

**info Command**
Use the `index` parameter to get the historical record for a specified index.
Use the `serverId` parameter (case-sensitive) to get the historical record for a specific raid ID.

check Command
Used to correct the income and loss data for a specified historical record.
Parameter usage is the same as the `info` command.

cls Command
Clears the chat history. No parameters; restart the client or delete the messages to view the effect.

## Database & Configuration File Introduction
Configuration File
Location: `Game Root Directory\user\mods\suntion-raidrecord\config\config.json`
Modify the configuration by referring to the interface below.
To avoid accidentally deleting all raid records, when you execute `RaidCacheClearAll`, an exception will be thrown by default. You need to manually comment out the corresponding exception-throwing line. After clearing, it is recommended to uncomment the exception-throwing line to prevent data loss.
```ts
// Interface
export interface IModConfig {
RaidRecordClearAll: boolean, // Whether to clear all raid cache and raid records (Use with Caution!!!)
RaidCacheClearAll: boolean, // Whether to clear all raid cache
LogVictims: boolean, // Whether the log outputs kill information from the raid
// The color you wish to use for raid record log messages
LogRaidColor: string
}
```
Database Files
Located at:
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_cache.json` Raid Cache
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_record.json` Raid Records
Recommended method for resetting the database: Extract `suntion-raidrecord-v0.4.0-default-database-files.7z` to `Game Root Directory\user\mods\suntion-raidrecord\db`, overwriting the original database files.
This is because when the amount of recorded data becomes too large, VsCode will have difficulty clearing the JSON file.
Oct 7, 2025 1:00 AM
View details
Edited mod
Current Version: v0.4.0
Main Features
Helps you record information related to each of your raids (including raids ended via Alt+F4).
This mod automatically tracks the start and end of each game session and records key data from the raid. Specific functions include:
- Pre-Raid Statistics: Records the total value of all equipped gear, the value of items in the Secure Container, and the total value of all brought-in items upon entering a raid.
- Post-Raid Recording: Tracks the value of extracted items, losses incurred during the raid, and kill information, etc.
- Data Compression & Storage: Automatically compresses and saves raid result data for later querying.
- Record Query System: Integrates a ChatBot function, allowing players to browse their personal raid history and query detailed data for specific raids via the client.
Command System
A ChatBot for managing raid records.
After right-clicking and starting the chat, you can enter the following commands:
## Commands
**help Command**

**list Command**
Specify Page Number
Use the `limit` parameter to control the number of records displayed per page.
Use the `page` parameter to specify the page number you want to view.

**info Command**
Use the `index` parameter to get the historical record for a specified index.
Use the `serverId` parameter (case-sensitive) to get the historical record for a specific raid ID.

check Command
Used to correct the income and loss data for a specified historical record.
Parameter usage is the same as the `info` command.

cls Command
Clears the chat history. No parameters; restart the client or delete the messages to view the effect.

## Database & Configuration File Introduction
Configuration File
Location: `Game Root Directory\user\mods\suntion-raidrecord\config\config.json`
Modify the configuration by referring to the interface below.
To avoid accidentally deleting all raid records, when you execute `RaidCacheClearAll`, an exception will be thrown by default. You need to manually comment out the corresponding exception-throwing line. After clearing, it is recommended to uncomment the exception-throwing line to prevent data loss.
```ts
// Interface
export interface IModConfig {
RaidRecordClearAll: boolean, // Whether to clear all raid cache and raid records (Use with Caution!!!)
RaidCacheClearAll: boolean, // Whether to clear all raid cache
LogVictims: boolean, // Whether the log outputs kill information from the raid
// The color you wish to use for raid record log messages
LogRaidColor: string
}
```
Database Files
Located at:
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_cache.json` Raid Cache
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_record.json` Raid Records
Recommended method for resetting the database: Extract `suntion-raidrecord-v0.4.0-default-database-files.7z` to `Game Root Directory\user\mods\suntion-raidrecord\db`, overwriting the original database files.
This is because when the amount of recorded data becomes too large, VsCode will have difficulty clearing the JSON file.
Oct 7, 2025 12:59 AM
View details
Edited mod
Current Version: v0.4.0
Main Features
Helps you record information related to each of your raids (including raids ended via Alt+F4).
This mod automatically tracks the start and end of each game session and records key data from the raid. Specific functions include:
- Pre-Raid Statistics: Records the total value of all equipped gear, the value of items in the Secure Container, and the total value of all brought-in items upon entering a raid.
- Post-Raid Recording: Tracks the value of extracted items, losses incurred during the raid, and kill information, etc.
- Data Compression & Storage: Automatically compresses and saves raid result data for later querying.
- Record Query System: Integrates a ChatBot function, allowing players to browse their personal raid history and query detailed data for specific raids via the client.
Command System
A ChatBot for managing raid records.
After right-clicking and starting the chat, you can enter the following commands:
## Commands
**help Command**

**list Command**
Specify Page Number
Use the `limit` parameter to control the number of records displayed per page.
Use the `page` parameter to specify the page number you want to view.

**info Command**
Use the `index` parameter to get the historical record for a specified index.
Use the `serverId` parameter (case-sensitive) to get the historical record for a specific raid ID.

check Command
Used to correct the income and loss data for a specified historical record.
Parameter usage is the same as the `info` command.

cls Command
Clears the chat history. No parameters; restart the client or delete the messages to view the effect.

## Database & Configuration File Introduction
Configuration File
Location: `Game Root Directory\user\mods\suntion-raidrecord\config\config.json`
Modify the configuration by referring to the interface below.
To avoid accidentally deleting all raid records, when you execute `RaidCacheClearAll`, an exception will be thrown by default. You need to manually comment out the corresponding exception-throwing line. After clearing, it is recommended to uncomment the exception-throwing line to prevent data loss.
```ts
// Interface
export interface IModConfig {
RaidRecordClearAll: boolean, // Whether to clear all raid cache and raid records (Use with Caution!!!)
RaidCacheClearAll: boolean, // Whether to clear all raid cache
LogVictims: boolean, // Whether the log outputs kill information from the raid
// The color you wish to use for raid record log messages
LogRaidColor: string
}
```
Database Files
Located at:
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_cache.json` Raid Cache
`Game Root Directory\user\mods\suntion-raidrecord\db\raid_record.json` Raid Records
Recommended method for resetting the database: Extract `suntion-raidrecord-v0.4.0-default-database-files.7z` to `Game Root Directory\user\mods\suntion-raidrecord\db`, overwriting the original database files.
This is because when the amount of recorded data becomes too large, VsCode will have difficulty clearing the JSON file.
Oct 7, 2025 12:58 AM
View details
Followers
No followers yet.
Following
Not yet following anyone.