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

I can t change values of addresses which doesnt have offset

The first one doesnt work but the second one working good but why? WriteInt32((IntPtr)0x4EE444, 0); WriteInt32((IntPtr)0x510CE0, 0); it doesn t give any error message it just doesn t change it
Eren Özkan
  • 59
  • 1
  • 4
0
votes
1 answer

Getting the base address of a process in vb.net

OK this is a weird on. I need to get the base address of a process in vb.net (not my application). To delve into the memory of the other process (to explore the values I needed before coding it into vb.net) I used cheat engine. Cheat engine gives me…
FraserOfSmeg
  • 1,128
  • 2
  • 23
  • 41
0
votes
1 answer

How could I make my program find the adresses manually?

I am making a hack in c++ for a roblox game(Counter Blox Roblox Offensive) and my program just changes the in-game money but when I restart my the game and run it again and start my hack it won't work because the addres has changed. Is there a way…
maxime ruys
  • 3
  • 1
  • 6
0
votes
2 answers

simple code view by Cheat Engine, but nothing found

I want to find integer value code_injct on cheat engine and modify this value 43369 or else here is my code #include #include int main() { int code_injct = 43971; while (1){ printf("%d\n", code_injct); …
0
votes
1 answer

How to monitor game address values?

After trying to break down code from GitHub and find any youtube videos that talk about this I'm starting to give up, so I'm hoping one of you can please help me. All I want to be able to do is monitor a games memory addresses value. For example,…
0
votes
1 answer

Find correct health value in Cheat Engine of out 14 addresses

I'm trying to find the correct health offset in a game, and my problem is that I have 14 addresses found which changes when I change my health address. I've tried to change the health value and update 10 times now and push 'Next Scan' but I can't…
jubibanna
  • 1,095
  • 9
  • 21
0
votes
1 answer

WriteProcessMemory with Multi Level Pointer

i am trying to write to a certain address in the memory (base address which i got from cheat engine, so it doesn't change), problem is i cant figure out how i need to write with all the offsets. Here are the following address and offsets i…
yarin Cohen
  • 995
  • 1
  • 13
  • 39
0
votes
1 answer

C#~How to read MultiLevelPointer?

I'm struggling a bit on this part... I want to do this in CE!(that is read the value 20 in my c# app) However my code is not working... [DllImport("kernel32.dll")] public static extern bool ReadProcessMemory(IntPtr hProcess, IntPtr…
Hxfs
  • 31
  • 5
0
votes
1 answer

Read score from EAs FIFA 19

Hello fellow stack overflowers, I'm up to create a program that plays the home teams goalhymn when it actually scored a goal in the football simulator FIFA 19. I know there is no open API for the game itself. The only method I see to use is to…
0
votes
2 answers

Read Process Memory Multi Level Pointer (DLL Injection)

I've successfully injected a .dll into an .exe and need to access a value through multi level pointers. This is a working example that's getting the correct value: #include #include #include #include…
snzm
  • 29
  • 1
  • 4
0
votes
1 answer

How to find pointer w/ offset [ecx+eax*4] (address offset?)

I've seen this topic: How to find a point with offset eax+ebx*4 eax will be the pointer value to look for ebx*4 will be the offset (ebx is the offset in an array with elements of 4 bytes long) so: ebx=0 : offset=0 ebx=1 : offset=4 ebx=2 :…
123iamking
  • 2,387
  • 4
  • 36
  • 56
0
votes
1 answer

C# Multiple offsets

I have problem when I write to address with multiple offsets. value doesn't change. Code: int Base = 0x00477958; VAMemory vam = new VAMemory("gameNameHere"); int localPlayer = vam.ReadInt32((IntPtr)Base); while (true) { int address =…
0
votes
1 answer

C++/Cheat Engine, Writing to memory in Google Chrome - WriteProcessMemory & ReadProcessMemory

In efforts to learn more C++, I have chosen - you know - something fun to do and that is writing to random application's memory. The code I have written seems to work on all applications but I am having difficulties getting it to work with Google…
Legitizer
  • 19
  • 2
0
votes
3 answers

C++ How can i do read/writeprocess with a given address from CE that contains a float?

I am currently working on teleport feature for a game trainer. I found the right static addresses containing a float: picture of addresses with offsets This address points to my X-coordinate. Now I am now trying to change my X-coordinate (a float)…
0
votes
1 answer

c# memory THREADSTACK0 base address

Below is my C# code that I use to read-memory (for pointers with multiple offsets). However, how should I modify it so it can be used for accessing pointers with '"THREADSTACK0"-0000032C' as a base address (instead of 0x1002CAA70)? using…
shiny
  • 171
  • 4
  • 13