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

Trouble with ReadWriteMemory module in python to read 64bit process memory

im trying to get x coordination for a game called herosiege for learning (its not for hacking) the result returns 0 and i dont know where im missing i tried to look it up and someone said i need to put baseaddress of the game in process.get_pointer…
wookidookik123
  • 79
  • 2
  • 10
0
votes
1 answer

Why is id different through id() and through the cheat engine?

When I run the code and then check the variable id using the cheat engine, they are different, why? Here's what i have: import time x = 500 while True: time.sleep(1) print(f'ID: 0x{format(id(x), "X")}\nValue: {x}') code result and cheat…
Mityailr
  • 3
  • 1
0
votes
1 answer

Executing function in other process through dll injection

I'm trying to execute a function in a VB6 app, I already know the instruction address and the format of the original code but when I execute it the app crashes. It's probably wrong the way I'm executing it or there is something else missing. This is…
Yind
  • 335
  • 3
  • 17
0
votes
0 answers

How can I bring my Cheat Engine character to life with Python

Hello I leave my thanks in advance if anyone can help me . So my english is being translated by my keyboard so excuse the spelling mistakes. It's been 5 months and I still haven't fixed it. I made a little progress now I can read the value, but for…
0
votes
1 answer

I cant read the pointer value in python

I want to read the memory pointer of Rust (game) I want to read the health values, now I did find the right pointers I think but my code will not work for some reason. I tryed multiple languages but noting works for me, the only thing that works is…
0
votes
1 answer

C++ How to take value from EXE + Pointer + Offset + Offset?

I'm learning to modifying game values using C++ but now I'm stuck. I know how to edit for example FLOAT value of Player speed: uintptr_t _EntitiesBase = (uintptr_t)GetModuleHandle(L"EntitiesMP.dll"); uintptr_t EntityBase = _EntitiesBase +…
st zxc
  • 1
0
votes
1 answer

Unable to read value from memory using offsets

I'm trying to extract the value from a memory address using the base address of a .dll + offsets. I used Cheat Engine to find the base address, and pymem to get the base address as hex. Here's the code I used to find the base address: import…
Serveira
  • 41
  • 1
  • 3
  • 21
0
votes
1 answer

How to find a pointer in a game?

I am trying to find the offset/pointer for FIFA 22 timed finishing. For example, if you double press "D" it will activate the timed finishing mechanic. If you press them too quickly, too late or in the right time it will show like this "TOO EARLY"…
0
votes
1 answer

Convert Assembly from Cheat Engine to C++

I want to write an auto for gaming. I use Cheat Engine and found the following Assembly code: push 014656DC call 00633940 add esp,04 ret I inject this code into the app using Cheat Engine and it always worked. Now, I want to use C++ code so I…
Divide
  • 19
  • 6
0
votes
0 answers

Moving an object with a rotation

I'm trying to make a freecam sort of tool for a rather obscure game. I'm trying to figure out how to move the XY position of the freecam based on the car's rotation value, but I'm struggling to do so. I've tried using Calculating X Y movement based…
0
votes
1 answer

Trying to dereference pointers programmatically to get the dynamic address c#

I'm trying to get the static address of a game called assault cube so I can get a better understanding of how memory and such works in c#, however I am stuck at one part. As seen above I need to add "ac_client.exe" and 0x10F4F4. This I have done as…
Chris hansen
  • 31
  • 1
  • 5
0
votes
1 answer

Changing memory address values and hex data

So i want to change the value of an address to something else. Say if the value of the address is 42859105827 and the address is 0A2BC6FC, How would i change the value of this address? Example: Address | Type | Value 0A2BC6FC 4 Bytes…
PackedUP32
  • 17
  • 4
0
votes
1 answer

How can take a dll from a game and inject it into gameplay?

Basically the game i am playing has a studio which lets you create games so it has toolbox that lets you insert blocks and more How can I take this toolbox DLL and inject it into the game? in normal gameplay there are no toolboxes, so what I wanna…
0
votes
1 answer

How to attach a debugger of cheat engine to an application that compiled by VS2015 successfully?

I am trying to attach a debugger of Cheat Engine to an application that wrote by me with C# VS2015. It always displays a message of debugger timeout, no matter what debugger mode I selected. How to attach a debugger of cheat engine…
Chris
  • 1
  • 3
0
votes
0 answers

How to read register values at specific instructions in C++ like Cheat Engine does?

The example of what I mean: Here I move rcx register value into a _Player symbol. rcx is the address of Player Object. The address of instructions is for e.g. module.dll+FFFF. I want to move register value into variable in my external C++…