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
-2
votes
1 answer

Array List Help Cheat Engine

I am looking for a way to make a array list in cheat engine does anyone know how to make one? I have attempted to make scripts to no success.
-2
votes
1 answer

How Change Value From Memory Through C++ (Get Value From Cheat Engine)

I have found the address of a value in MyGame using Cheat Engine and created a Cheat Table (mygame.ct) Here is some Lua code I found to change values: function AOBRep(search, change) local aob = AOBScan(search) if aob then for…
Abdul
  • 1
  • 3
-2
votes
2 answers

How to write process memory with multilevel pointer with c++?

I'm trying to make a cheat for RE2. I found memory's with pointer-scan with cheat engine. My code is not working :( #include #include using namespace std; int main() { int newValue = 10 ; HWND hwnd =…
-2
votes
1 answer

How to set If in Assembly and then

I'm searching for a specific value in some EAX need to change it at one specific case. The code: If EBX="000080" then EBX = "0000200" End If But I'm running on Auto Assemble. So far if need to change the value mov ebx,0000200 else mov…
Matriz51
  • 7
  • 2
-2
votes
2 answers

Store scan result to a csv file using lua

I am newbie in lua. I play a game and scan for values to get addresses and values in memory by using Cheat Engine. I want write a CSV file that contains the values from a set of addresses which get updated every frame and load these values from…
JoeFern
  • 117
  • 1
  • 8
-2
votes
1 answer

Calculating multi-level pointer

I'm trying to work out a multi-level pointer to a variable, but on the 3rd level my offset is 'rcx + r9*8'. Full instruction: 140BD82D4 - 4A 8B 04 C9 - mov rax,[rcx+r9*8] I normally use the offset to deduct it in calculator from the address of…
MTM
  • 92
  • 1
  • 9
-3
votes
1 answer

Not getting the right address with pointer and offsets

I am a beginner in C++ and I'm trying to get the Health-Value of the player in CS:GO, but I face some problem. With CheatEngine I found that the playerbase is "client_panorama.dll" + 0xCBD6B4 and the offset to the health value is 0x100. That works…
Varsius
  • 25
  • 1
  • 4
-3
votes
2 answers

How can I avoid cheat engine to see my strings at runtime

I was playing with the CheatEngine and saw that it can view all my string in a client side application. I wonder what should I do to make the cheat engine not see my string at runtime. I tried every kind of approach that I knew, but whenever I have…
Flávio
  • 27
  • 2
-4
votes
2 answers

How to get memory address knowing pointer

What actions should I take to get to this address: 0DE1AC74 knowing pointer Offsets: 194 5C And this: "bin.exe"+0121AC10 The goal is to use pointer instead of searching address every app restart? enter image description here
-4
votes
1 answer

Unfinished long string near

function writeFloat([=[==[===[====["game.exe"+XXXXXXXX]+XXX====]+XXX===]+XXX==]+XXX=]+XXX, trackbar_getPosition(TRAINERFORM_CETrackBar1)) end gives me the error [string "--code..."]:4: unfinished long string near
user5888870
  • 21
  • 1
  • 2
-5
votes
3 answers

Convert integer to array of bytes

I'm trying to convert an integer value of 10 digits for byte, but the function only returns me 4 values, I need 6 points, how to solve? function I'm using to convert integer in bytes var i, j: integer; bbI : array[1.. sizeof(integer)] of…
0x4
  • 21
  • 1
  • 6
-6
votes
2 answers

View Double Variable In Memory

I'm studing about how programs save data on their memory. So I made a simple program that contains a global double variable : #include #include using namespace std; double b = 512; int main(){ getch(); return…
Mohammad Sina Karvandi
  • 1,064
  • 3
  • 25
  • 44
1 2 3
11
12