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
2 answers

c/c++ how can i get base address of .exe running process?

Im looking for a method/function that i can use to get base address of "program.exe"+03262C08 -> B4895A0. This address is from Cheat Engine and base address has been found with Pointer scanner. In pointer scanner i can press show module list and…
Emil Mein
  • 33
  • 1
  • 5
0
votes
1 answer

ReadProcessMemory cant find array of bytes address

Using Cheat Engine I find an array of bytes at address 0x10456554. I want to find the array of bytes in C#, so I open the game process with permissions 0x1F0FFF (all access) first, then I do a ReadProcessMemory() from 0x00000000 - 0x7FFFFFFF (entire…
Jacob Fliss
  • 81
  • 2
  • 8
0
votes
1 answer

Real-time changes on IDE/Assembler

I'm new on this, sorry for bad usage of terms or overextending an explanation. I'm learning code languages and way i found to bring it to my world so i can learn it better, was coding for/with games i play. When a window close on the game a…
0
votes
1 answer

IDA vs CE Disassembly View

I am using CE to view the assembly of a program and I easily get the needed address: 00B2356E. This is from the esp, 8. CE View When I go into IDA (within the exact same area) .text:0044354B loc_44354B: ; CODE XREF:…
Rohan Pas
  • 177
  • 1
  • 14
0
votes
3 answers

C# Open Form and run fuction at the same time

I am trying to code a memory cheat for a game but I want to create a menu so I decided to make it. And now I want that my program is opening the form and doing the cheat at the same time. Because now the cheat is doing it or otherwise the cheat is…
0
votes
2 answers

Pointer to the array of pointers to structures

I've got not even a question I think that this is some kind of confirmation, that I understand the subject correctly. I'm doing some reverse engeneering study and here is what I have. Let's say we have structure/class, which looks like this: struct…
Gtzzy
  • 519
  • 4
  • 18
0
votes
1 answer

Read/WriteProcessMemory using CheatEngine Values with Pointer VB

I am using Cheat Engine to get addresses to edit something in the application. But it seems like I'm doing it wrong when putting the values in Visual Studio using Read/WriteProcessMemory and Visual Basic. Here is the values I got in Cheat Engine.…
Keanu Lorenzo
  • 79
  • 1
  • 14
0
votes
1 answer

Changing window width and height by disassembler

Well I have IDA and Cheat Engine. What I'm trying to do is change application resolution, actually just a width and height of the window. I know that changing just width and height will not make application work correctly, but it is my first step of…
ZeroVash
  • 546
  • 4
  • 20
0
votes
1 answer

C++ Unable to Read Memory Address

I'm creating a simple HACK for educational purpose only. A simple Triggerbot that reads from memory the value of player aiming to enemy YES = 1 or NO = 0. I have made some other similar HACKS however I never found this problem .. in Rainbow Six…
0
votes
1 answer

Memory copy the size of a module without it taking forever?

I have been trying to copy memory from a module from base to module size without it taking 5 years and my computer's CPU raising taller than the sky. This script I put together is in Cheat Engine LUA, and it's copying memory via reading, then…
HueHueKing
  • 13
  • 3
0
votes
1 answer

Do static memory addresses change with different computers?

I have been messing with cheat engine and I am trying to learn how to make cheats(for really basic and simple video games). So far I understand that there is static and dynamic memory and to get to the static you have to do all this weird pointer…
user4210398
0
votes
1 answer

Disable button once clicked Cheatengine Lua

So I've been struggling making a button that on pressed goes to a link and toggles Enabled to false so you cant click it anymore function CEButton1Click(sender) shellExecute("https://google.com/search") CEButton1.Enabled=false end The above is what…
user5561453
0
votes
2 answers

Aimbot - How to find the PlayerBase?

So I'm trying to create an aimbot for a game but I'm having some trouble here, how can I find the player base? If I find the player base then I can get all the information needed such as X, Y positions, current money, ammo, health, armor etc... I'm…
Louie
  • 673
  • 1
  • 7
  • 11
0
votes
1 answer

GameCih: How does it manipulate values?

Some time ago I found this app called "GameCih" which lets you modify values of some of your games. Now I was wondering - like the title is already saying - how this app gets access to the mobile's memory.
chrisp
  • 3
  • 1
0
votes
1 answer

Show 32 bit and 64 bit registers in Cheat Engine

I am currently working on a project in which I have to reverse engineer a piece of software. I need to know whether or not it is possible to show both 32 bit and 64 bit register values when looking at the memory disassembly and memory access view.
Serinice
  • 118
  • 11