vesperpallens How do I cheat?
Reputation: 0
Joined: 02 Sep 2024 Posts: 4
|
Posted: Tue Mar 24, 2026 7:34 pm Post subject: Cheat Engine RegEx plugin |
|
|
A Cheat Engine plugin letting you search strings using regular expressions.
You can download the plugin from GitHub at: https://github.com/palepine/CERegEx
Follow instructions in the README on GitHub to install.
I'd appreciate any feedback and bug reports.
Features:
- Scan specific memory regions using Cheat-Engine-like protection flags RWXC
- Multiple regex engines supported
- Return match addresses and matched text back to Lua
Configuration:
- encoding (ASCII and UTF16LE BMP)
- regex engine (STD regex, RE2 and PCRE2)
- case sensitivity
- minimum / maximum match string length
- find-one mode
Usage example in Lua:
| Code: | return lregexScan({
pattern = [[Hell.?\sWorld]],
protection = "+W+R-E-C",
encoding = "ASCII",
engine = "RE2",
findOne = true,
caseSensitive = true,
minLength = 8,
maxLength = 20
}) |
Feel free to support!
Mod edit to fix the link.
|
|