Edit of asset "DER_Protection_System" Accepted
| Old/Current | New/Edit | |
|---|---|---|
| Title | DER_Protection_System | DER_Protection_System |
| Description |
DER Protection System (Beta) **Version:** 1.0.0-beta **Godot Version:** 4.6+ **Author:** 222 **License:** MIT --- ## Overview | 概述 **English** DER Protection System is an anti-cheat plugin for Godot 4.6+. It provides runtime protection for game values, memory encryption, and cheat detection. Currently in **Beta** — core features are stable, some modules are still in development. **中文** DER Protection System 是 Godot 4.6+ 的反作弊插件,提供运行时数值保护、内存加密和作弊检测功能。目前处于 **Beta 版本**——核心功能已稳定,部分模块仍在开发中。 --- ## Features | 功能 ### Tested & Working | 已测试可用 - `VanguardValue` – encrypted value storage with access pattern detection - `DERLogger` – structured logging with callback support - Basic memory protection and integrity checks ### In Development | 开发中 - Network encryption module (planned for v1.1.0) - Detector system optimization - Performance tuning --- ## Installation | 安装 1. Download this plugin from the Godot Asset Library or GitHub Releases 2. Copy `addons/der_protection_system` into your project's `addons/` folder 3. Enable it in **Project Settings → Plugins** 4. Restart the editor --- ## Quick Start | 快速上手 ```gdscript # Create a protected value var pool = DERPool.new() var player_hp = VanguardValue.new(100) pool.set_value("hp", player_hp) # Use it normally func take_damage(amount): var current = pool.get_value("hp").get_value() pool.get_value("hp").set_value(current - amount) # Scan for threats var threats = pool.scan_for_threats() if threats.size() > 0: print("Cheat detected!") |
DER Protection System (Beta) **Version:** 1.0.0-beta **Godot Version:** 4.6+ **Author:** 222 **License:** MIT --- ## Overview | 概述 **English** DER Protection System is an anti-cheat plugin for Godot 4.6+. It provides runtime protection for game values, memory encryption, and cheat detection. Currently in **Beta** — core features are stable, some modules are still in development. **中文** DER Protection System 是 Godot 4.6+ 的反作弊插件,提供运行时数值保护、内存加密和作弊检测功能。目前处于 **Beta 版本**——核心功能已稳定,部分模块仍在开发中。 --- ## Features | 功能 ### Tested & Working | 已测试可用 - `VanguardValue` – encrypted value storage with access pattern detection - `DERLogger` – structured logging with callback support - Basic memory protection and integrity checks ### In Development | 开发中 - Network encryption module (planned for v1.1.0) - Detector system optimization - Performance tuning --- ## Installation | 安装 1. Download this plugin from the Godot Asset Library or GitHub Releases 2. Copy `addons/der_protection_system` into your project's `addons/` folder 3. Enable it in **Project Settings → Plugins** 4. Restart the editor --- ## Quick Start | 快速上手 ```gdscript # Create a protected value var pool = DERPool.new() var player_hp = VanguardValue.new(100) pool.set_value("hp", player_hp) # Use it normally func take_damage(amount): var current = pool.get_value("hp").get_value() pool.get_value("hp").set_value(current - amount) # Scan for threats var threats = pool.scan_for_threats() if threats.size() > 0: print("Cheat detected!") |
| Category | Tools | Tools |
| License | MIT | MIT |
| Repository Provider | GitHub | GitHub |
| Repository Url | https://github.com/kS222138/DER_Protection_System | https://github.com/kS222138/DER_Protection_System |
| Issues Url | https://github.com/kS222138/DER_Protection_System/issues | https://github.com/kS222138/DER_Protection_System/issues |
| Godot version | Godot 4.6 | Godot 4.6 |
| Version String | 1.0.0-beta | 1.0.0-beta |
| Download Commit | d595d840c90f65783e08fc3900af25330685d4e6 | d595d840c90f65783e08fc3900af25330685d4e6 |
| Download Url (Computed) | https://github.com/kS222138/DER_Protection_System/archive/d595d840c90f65783e08fc3900af25330685d4e6.zip | https://github.com/kS222138/DER_Protection_System/archive/d595d840c90f65783e08fc3900af25330685d4e6.zip |
| Icon Url |
https://raw.githubusercontent.com/kS222138/DER_Protection_System/main/7baf87fbf7e945598457c95b7723afa3.png
|
https://raw.githubusercontent.com/kS222138/DER_Protection_System/main/7baf87fbf7e945598457c95b7723afa3.png
|