Following the
PS4 ReaperStudio Public Beta updates and various
PS4 Debuggers / Memory Editing Tools previously released, developer
hemanthl7 has made available
Cheat Engine Server for PS4 v1.0.1 utilizing
Cheat Engine 7.4 which is a Linux / Android Cheat Engine Server to Windows fork ported from the official
Cheat Engine Repository on Github.
Download:
CEServerPS4.1.0.1.zip (Latest Version) /
GIT
The project is currently a work-in-progress (WIP), and from the
README.md comes some additional details:
Cheat engine windows server
A port of the linux/android cheat engine server to Windows utilizing C# ported from the
official Cheat Engine repository. The initial reason this project was created was to 'bypass' some applications that block Cheat Engine when running in the same machine or just refuse to run when Cheat Engine is running as well. With this you can run Cheat Engine in a separate environment and connect to the target machine.
Example usage
If you just want to run the server as is there is a console project named
CEServerApplication that takes advantage of the generated library which is an assembly with the following code:
Code:
CheatEngineServer server = new CheatEngineServer();
server.StartAsync().Wait();
If you just want to run the server as is there is a console application named
CEServerPS4.exe:
Code:
CEServerPS4.exe 192.168.137.2
If you wish to handle a specific command from cheat engine differently or register a new one you can do this by either extending one of the defined Commands in
CEServerWindows.CheatEnginePackets.S2C or by implementing the
ICheatEngineResponse interface although it is recommended to...