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
1
vote
1 answer

Assembly x86 ADD command

I'm trying to learn Assembly as I feel it will be helpful when I start my CS courses that deal with lower level languages and material down the road (C is the lowest I've learned so far). To do this, I'm using CE and looking at memory addresses and…
user6952065
1
vote
2 answers

How do I get the (physical) baseaddress of an .DLL used in a process?

I recently started a new c++ win32 console Project. It basically rewrites the value of a given Address in Memory. The point is, I want it to use a pointer-map with offsets to recalculate the address it should use. Here is an image of the pointer map…
AECX
  • 11
  • 1
  • 2
1
vote
1 answer

How to get process's base address with MODULEENTRY32?

I'm looking to do something in this example: Python - How to get the start/base address of a process?. I'm having the same issue as the person in that topic, in that the pointers cheat engine provides is in reference to the base address of the…
Garrett Jones
  • 11
  • 1
  • 3
1
vote
0 answers

How to use a hotkey multiplier like CTRL+F1 in my game trainer cheat program?

I'm barely on the verge of being considered knowledgable in anything I'm doing right now, so I appreciate the help... I'm currently working on a C# Steam game trainer right now, and what I'd like to be able to do here is replace the current hotkey…
Cpt.Noob
  • 11
  • 1
1
vote
1 answer

Anti-Cheat / Glitch in game

Currently I am working with a team on a Unity-based game. The game is still in development and alpha version. Recently, we saw that the game was vulnerable to Cheat Engine, speedhack etc. Updates after updates, cheats are now stable. We also…
1
vote
1 answer

C++ : What's a good way to read memory from injected DLL?

I'm new to this area of experties so I'm not entirely sure... I know externaly you've got two functions: WriteProcessMemory and ReadProcessMemory , but internally things are different... I'm also not familiar enough with pointers yet to make it…
Naltamer14
  • 187
  • 3
  • 10
1
vote
1 answer

How can i make completetly undetectable program ( a program known)?

This question is little complex. I want to hide "cheat engine" from some detecter programs.They're checking cheat engine name in running program list,and checking memory for some special strings or data for detect that program. How can i make…
erginduran
  • 1,678
  • 5
  • 28
  • 51
1
vote
1 answer

Get VU of VSXu artiste with C++

this is my code so far: #include "iostream" #include "Windows.h" #include "stdio.h" using namespace std; int main() { HWND hWnd = FindWindow(NULL,TEXT("Vovoid VSXu Artiste 0.4.0 [Windows 64-bit]")); if (hWnd == 0) { cerr <<…
Trirop
  • 113
  • 4
1
vote
1 answer

JNA - EnumProcessModules() not returning all DLLs?

I trying to read coordinates from a game. This works perfectly fine, when using ReadProcessMemory on a HANDLE that I receive through OpenProcess, with the memory I find in CheatEngine. For example, if I know the float value in the running process is…
Schaka
  • 772
  • 9
  • 20
0
votes
0 answers

How to block a MessageBox with IDA?

I am using the free version of IDA. I'm trying to change the opcode in a game with Cheat Engine, but the game has blocked it. When I open the game it shows me an error message box and closes the game. What can I do to block this functionality? I…
Eray Eser
  • 23
  • 3
0
votes
0 answers

If then how to use ReClass here without having to use a 1 gb padding?

So I'm currently a bit stuck in reversing the player structure of a game. I found the health address on lets say address 1 then i found the position and rotation on address 1251864 (size 20: x, y, z, pitch, yaw) and then the stamina on addresss…
0
votes
0 answers

Search In Memory Using X32dbg

In Cheat Engine, I can search for values in the memory region of the process I am targeting. How can I do the same thing with x32dbg?!
0
votes
0 answers

Could not read memory at: 28, length: 4 - GetLastError: 299

i get this error when i try to acces to location in memory* From Get Pointer:: Could not read memory at: 28, length: 4 - GetLastError: 299 From Get Incress Suns:: Could not read memory at: 0, length: 4 - GetLastError: 299 from pymem import…
0
votes
0 answers

Patching a file with x64dbg after finding ram addresses

I've been tinkering with an exe game. After finding a memory address I wanted to change using Cheat Engine (I want to change a je to a jne op), I successfully managed to change the game's code. I want to modify the .exe file so that when I launch…
0
votes
0 answers

x64dbg injection is not avaliable

Now, I am new to reverse engineering and I am trying to attach (by x64dbg) to starcraft.exe game process. But after attaching it, this process always closes. Here is my log debug. ! Database file:…
tvxth
  • 1
  • 1