DavidReyes2250 Posted December 15, 2020 Share Posted December 15, 2020 (edited) Hello, I would mainly like to know how the following Sanny Builder commands work and how to use the explanation in detail, which are: -0A8D: $result = read_memory [email protected] size 4 virtual_protect 0 -0A8C: write_memory 0xC0BC15 size 1 value 1 virtual_protect 0 Second, I would like you to give me an example of a CLEO mod, such as typing something on the keyboard, the infinite oxygen trick is executed, to get an idea of its operation and use, thanks Edit: From what I've researched, the infinite oxygen cheat memory is '0x96916E' Edited December 15, 2020 by DavidReyes2250 Link to comment Share on other sites More sharing options...
In45do Posted December 16, 2020 Share Posted December 16, 2020 (edited) I would like to give a suggestion to take a look at ZAZ cleo tutorial first to understand those opcodes better, you'll eventually get to learn memory address (how to read and set memory address). If you want to get to the point: - 0A8D: $result = read_memory [email protected] size 4 virtual_protect 0 0A8D function as reading the memory address (which is [email protected] from the example) and its value is stored in $result. $result could be float, int, or boolean. - 0A8C: write_memory 0xC0BC15 size 1 value 1 virtual_protect 0 0A8C function as setting the value (1 from the example) of a memory address (which is 0xC0BC15 from the example). The value could be float, int, or boolean. I don't really know what is the function of virtual protect but most of the time people will set it to 0. As for the 'size' is depends on the memory address itself (bytes), it could be 1, 2, or 4. (CMIIW) Edited December 16, 2020 by In45do Code text is invisible for some reason Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now