Questions tagged [cheat-engine]

Cheat Engine, commonly abbreviated as CE, is an open source memory scanner/hex editor/debugger created by Eric Heijnen ("Dark Byte") for the Windows operating system

About

Cheat Engine is an open source tool designed to help you with modifying single player games running under window so you can make them harder or easier depending on your preference.

Links

177 questions
0
votes
1 answer

how do i use a memory address from cheat engine with ReadProcessMemory?

im trying to make an application that monitors the speed of the character in GTAV, iv found the address of the variable with cheat engine: https://i.stack.imgur.com/klyYV.png and i made a function to open a handle to the game process: /*returns…
adam
  • 107
  • 1
  • 13
0
votes
1 answer

Why are process memory viewers reading byte arrays to strings?

I have 2 c# applications which communicate with each other through netPipe WCF. One application is sending to the other application an array of bytes. If I check the receiving application's memory map using a process memory viewer (like…
IneedHelp
  • 1,630
  • 1
  • 27
  • 58
0
votes
1 answer

find out what instructions write to this memory address olly dbg cheat engine

Is there an option in ollydbg to find out what pieces of code write to a memory address ? Just like Cheat Engine shows all the assembly instructions that write to a specific address. "breakpoint --> memory" does not work.
Fresco
  • 289
  • 3
  • 13
0
votes
1 answer

Using Cheat Engine to accelerate time in a Flash program

I have a flash exe file which has a set of inputs and does a simulation for it. The simulation takes real time to execute and takes about a day to complete 1 round. And I need to get large amounts of data from it. It was made with Macromedia…
AbdealiLoKo
  • 3,261
  • 2
  • 20
  • 36
0
votes
1 answer

Print on change

I have a hard time figuring this one out. I am new to Lua. Basically I have found a base pointer in Cheat Engine. Now I would like use Lua, to print the history of how base pointer's value changes over time. For example when I start the script, and…
Andy Andy
  • 279
  • 4
  • 7
  • 17
0
votes
1 answer

scanmem (Linux) vs. CheatEngine (Win)

scanmem is much slower than CheatEngine (although I run CheatEngine in my VirtualBox). Further scanmem is not able to scan for any-values (*) but CheatEngine is. How comes? Is there a better alternative for scanmem for Linux users?
arminb
  • 2,036
  • 3
  • 24
  • 43
-1
votes
2 answers

Is there a way to do 4-byte-alignment regex search in Python?

When reading data from an area of memory, the result is in the form of bytes string. Usually the data we concern is composed of 4 bytes (being int or float type), and the address of the data is dividable by 4. Now that the address of the data can be…
user498029
  • 115
  • 3
-1
votes
1 answer

ReadProcessMemory returning errors

When I use the ReadProcessMemory function from the windows-rs package it returns 0. This is wrong, so I used the GetLastError() function and it returned "Only part of a ReadProcessMemory or WriteProcessMemory request was completed." Here is the code…
-1
votes
1 answer

Trying to get creatureID with Cheat Engine

I am trying to get address of creature in custom client in Tibia. There are 2 actions which can be made to creature: Follow and Attack. Both of them are static addresses. Whenever i do one of the action Follow/Attack, then some address is showing in…
zarize
  • 25
  • 4
-1
votes
1 answer

Memory cheating with C++ WinApi

i'm trying to make a little program to my university that can change values in the memory of another process. With the exact address value that the Cheat Engine give me i can do this, but not ever the value is the same then my problem is with the…
-1
votes
1 answer

Find the address a Module is loadet into (memory)

I used CE to get a pointer to a value. I want to implement the pointer into my C++ Visual Studio Code. It has 3 Offsets. What I already got: Get the Process ID Add the Offsets to the base address What I need: The """base address""" Problem: I'm…
xKean
  • 94
  • 6
-1
votes
2 answers

Application.exe + 000000 Read Memorry

So as you can see I'm having some trouble with getting the .exe Base Address. In this case, let's say that was Tutorial-x86_64.exe How do I get the process address? Hope anyone can help.
Ron Segal
  • 5
  • 1
  • 2
-1
votes
1 answer

Confused With Pointers And Adresses [Cheat Engine]

I'm having problems understanding what the address means and the pointers. I got the address of the client.dll or in this case "ac_client.exe" as I'm working on assault cube. I add this address to the base address to get the local player pointer…
Me 2
  • 5
  • 1
  • 3
-1
votes
5 answers

Pointer From Cheat Engine To C++

I am looking for a way to pass a pointer address from cheat engine to a line of code. The Cheat Engine address is P-> 0C86D240. The Line of Code is as follows: WriteProcessMemory(handle,(LPVOID)P->0C86D240,). In the end i would like to change the…
Sollus
  • 11
  • 1
  • 6
-1
votes
1 answer

C# program crashing when checking checkbox

I coded a cheat for a game but I want to create a menu and I did it like this. If the checkbox is checked do while (checkbox.checked). So I started testing my program and due some reasons my program is crashing when I am checking the checkbox. Can…
1 2 3
11
12