Anti Cheat System

01/27/2026 01:16 GM Wifo#1
Anti-Cheat Memory Range Instruction

What is the offset range?

The offset range from 0x00401000 to 0x006BAFFF represents a block of memory in the game. It includes every byte starting at address 0x00401000 and ending at 0x006BAFFF.

This range contains:
0x006BAFFF - 0x00401000 + 1 = 2,847,000 bytes (approximately 2.71 MB)

️ How does the anti-cheat use it?

1. At game startup, the anti-cheat takes a snapshot of all 2,847,000 bytes in this range.
2. Every few seconds, it compares the current memory to the original snapshot.
3. If any byte has changed, it triggers a security alert and terminates the game.

✅ Why is this useful?

- You don’t need to hardcode expected values.
- It detects any unauthorized change in that memory block.
- It’s efficient and easy to expand to other ranges.

Important:
This method assumes you're reading memory from your own process. If you're scanning another process, you’ll need to use ReadProcessMemory on Windows.

Note :
This anti-cheat system detects all newly created tools and is connected to both the server side and client side. It can never be replaced by any game.exe, even if others attempt to bypass it. All newly created cheats are recorded in log.txt

If you have any further questions, just send a message to my Discord ID: gmwifo

02/04/2026 02:23 GM Wifo#2
ANTI-CHEAT SYSTEM with DLL IP Protection
To ensure fair gameplay and protect the integrity of our server, we’ve implemented a robust Anti-Cheat System.

Key Features:
DLL IP Protection
Prevents unauthorized DLL injections and suspicious modifications that could compromise the game.

Cheat Logging
All detected cheat attempts are automatically recorded in the system log file:

Code
C:\ShaiyaServer\PSM_Client\Bin\Log\PS_ANTICHEAT__s ystem.log__
This log contains detailed information about players who attempt to use cheats.

Player Accountability
Any player caught using cheats will be flagged in the log, making it easier for administrators to take immediate action.

Why This Matters:
Protects honest players from unfair advantages.

Maintains server stability and security.

Builds a trustworthy gaming environment where skill—not cheats—defines success.

02/05/2026 03:19 GM Wifo#3
Anti Cheat System Full Preview

This is just a sample to show how the system works. In the original version I created, it records player information such as their user IDs and IP addresses. I need to keep this data hidden because it contains their personal information, including details about their computers.