#ForgeByGames Game Video Fun
Explore tagged Tumblr posts
Link
Forge By Games – Find out the relationship between value in Cheat Engine -part 2
If you not yet watch the part 1 , please watch it first Forge By Games – Find out the relationship between value in Cheat Engine -part 1
This the 2nd part of the relationship between 1 Byte, 2 Bytes, 4 Bytes, decimal, Hexadecimal, float, double, signed, unsign, 8 Bytes and string And these can be use as an easy way to convert between value of any type.
i am using Cheat Engine version 6.6 Tutorial-i386.exe Cheat Engine Tutorial – step 4
————————————————————
one 4 Bytes = two 2 Bytes 2 Bytes(A) show as hexadecimal 2 Bytes(B) show as hexadecimal
one 4 Bytes = four 1 Byte 1 Byte(A) show as hexadecimal 1 Byte(B) show as hexadecimal 1 Byte(C) show as hexadecimal 1 Byte(D) show as hexadecimal
*note* 1 Byte and 2 Bytes usually use in emulator games For emulator games, always start your search with 1 Byte unknow value change or not change, will have a better chance to find the address in a short time.
Here I take a quote from FreeER atubeacct : Note that if you’re working with emulators you may find that the bytes are not reversed, this is because the emulator is emulating a “big endian” system where the most significant bytes are stored first (just like you’rd normally write it in hex) rather than “little endian” (where the least significant bytes are stored first) like Windows uses.
————————————————————
one Float = one 4 Bytes
Float show as hexadecimal max hex = FFFFFFFF ( 8 nos F ) hexadecimal will be reverse in code or memory
Float in 4 Bytes show as decimal unsign Float in 4 Bytes show as decimal signed
Float show as decimal unsign Float show as decimal signed
** note ** for a lot games, the value of hexadecimal is show in reverse format “little endian”. Float show as hexadecimal will be reverse in code or in memory
for example hexadecimal 4365C79B = 229.7797089 Float in decimal but in memory and code it is 9B C7 65 43
it have been split into 4 parts = 4 bytes 1st part(byte) is put at 4th place at code/memory 2nd part(byte) is put at 3rd place at code/memory 3rd part(byte) is put at 2nd place at code/memory 4th part(byte) is put at 1st place at code/memory for example hexadecimal C61A5229 = -9876.540039 Float in decimal orginal hexadecimal C6 1A 52 29 “big endian” hex reverse in code 29 52 1A C6 “little endian”
——————————————————
7F7FFFFF = 3.402823466E38, what is E38 ?
E is for very small number or very Big number so, just ignore it. Don’t use it in code for example hexadecimal 5F9902F9 = 2.205129723E19 Float hexadecimal FF7FFFFF = -3.402823466E38 Float hexadecimal 80000001 = -1.401298464E-45 Float
Usually for Float and Double just ignore E . Don’t use it in code.
Float no E decimal max value is 9999998976 =501502F8 Float no E decimal min value is -9999998976 =D01502F8
All Float are signed, as you can see in the video Float unsign and signed are the same. Float in Cheat Engine are all signed, even for unsign will act same like signed so when coding the script, make sure use signed example mov [esi+00000494],(float)5000 mov [ebx+000003F0],(float)-5000
You can also just use the 4 Bytes value in coding the script mov [esi+00000494],(int)1167867904 // 5000 in Float or mov [esi+00000494], # 1167867904 // 5000 in Float
mov [ebx+000003F0],(int)3315351552 // (int)-979615744 //(float)-5000 or mov [ebx+000003F0],#-979615744 // #3315351552 // = (float)-5000
———————————————————
**note** These can be use as an easy way to convert between value of any type
this is episode 7 of my Youtube video about Cheat Engine Forge By Games – Find out the relationship between value in Cheat Engine -part 2
click here to Subscribe my Youtube channel Forge By Games , # ForgeByGames
I end my video here, this is part 2 , part 3 will be on the next video. Stay tune in for the next part of the relationship between 1 Byte, 2 Bytes, 4 Bytes, decimal, Hexadecimal, float, double, signed, unsign, 8 Bytes and string
—————————————————–
Forge By Games # ForgeByGames – Cheat Engine Tutorial series
episode 1 : How To Find start point and End point of a program using Cheat Engine – ForgeByGames
episode 2 : How To Enable Disable Button Of a Program using Cheat Engine -ForgeByGames
episode 3 : Cheat Engine Special Trick + How to write a special script when normal AOB fail
episode 4 : Forge By Games -Easy find Base Address of Multilevel Pointers special trick using Cheat Engine
episode 5 : Forge By Games – using 4 Bytes Unknow Search to hack most of the games with Cheat Engine
episode 6 : Forge By Games – Find out the relationship between value in Cheat Engine -part 1
episode 7 : Forge By Games – Find out the relationship between value in Cheat Engine -part 2
—————————————————–
Thank you !
Forge By Games # ForgeByGames
Cheat Engine http://ift.tt/JQkTZA
Don’t forget to like the video. Subscribe my channel on YouTube! https://www.youtube.com/channel/UCSUASrRQWA6nPXe9sySqrBA
Oh yeah! To get more information, Follow my blog http://ift.tt/2iYY6Bh http://ift.tt/2aY42Tj
Forge By Games # ForgeByGames – FaceBook Page http://ift.tt/2a7LHpA
Forge By Games # ForgeByGames – Twitter tweet https://twitter.com/ForgeByGames
Forge By Games # ForgeByGames – Pinterest pin http://ift.tt/2oTvWu1
Join us at FaceBook group Cheat the Game http://ift.tt/2nxDX8i I have learned a lot from here
Thanks for watching and reading this, now share it if you like it.
w4
0 notes
Link
Forge By Games – Find out the relationship between value in Cheat Engine -part 1
This time I will show the relationship between 1 Byte, 2 Bytes, 4 Bytes, decimal, Hexadecimal, float, double, signed, unsign, 8 Bytes and string
i am using Cheat Engine version 6.6 Tutorial-i386.exe start point = 00400000 end point = 0060AFFF
If you want to learn How To Find start point and End point, you can watch my 1st video: How To Find start point and End point of a program using Cheat Engine – ForgeByGames
——————————————————
** note ** for a lot games, the value of hexadecimal is show in reverse format. 4 Bytes show as hexadecimal will be reverse in code or in memory
Max hexadecimal in 4 Bytes = FFFFFFFF half = FFFFFFFF /2 = 7FFFFFFF 7FFFFFFF+1 = 80000000
for a lot games the value of hexadecimal is show in reverse format for example hexadecimal 00001388 = 5000 in decimal but in memory and code it is 88 13 00 00
it have been split into 4 parts = 4 bytes 1st part(byte) is put at 4th place at code/memory 2nd part(byte) is put at 3rd place at code/memory 3rd part(byte) is put at 2nd place at code/memory 4th part(byte) is put at 1st place at code/memory for example hexadecimal 05E30A78 = 98765432 in decimal orginal hexadecimal 05 E3 0A 78 hex reverse in code 78 0A E3 05
——————————————————
4 Bytes is integer , integer is number with no decimal point , code format = (int) or # examble : 7.5 = integer 8 , 7.4 = 7 integer , 0.499 = (int) 0 , -673.5 = #-674
4 Bytes show as hexadecimal ** note ** will be reverse in code and memory max hex = FFFFFFFF
4 Bytes show as decimal unsign max value 4294967295
4 Bytes show as signed min value is -2147483648
——————————————————
2 Bytes show as hexadecimal ** note ** will be reverse in code and memory max hex = FFFF
2 Bytes is half of 4 Bytes decimal unsign max value is 65535 decimal signed max value is 127 decimal signed min value is -128
——————————————————
1 Byte show as hexadecimal max hex = FF
1 Byte is half of 2 Bytes , or 1/4 of 4 Bytes decimal unsign max value is 255 decimal signed max value is 32767 decimal signed min value is -32768
*note* 1 Byte and 2 Bytes usually use in emulator games
———————————————————
**note** These can be use as an easy way to convert between value of any type
this is episode 6 of my Youtube video about Cheat Engine Forge By Games – using 4 Bytes Unknow Search to hack most of the games with Cheat Engine
click here to Subscribe my Youtube channel Forge By Games , # ForgeByGames
I end my video here, this is part 1 , part 2 will be on the next video. Stay tune in for the next part of the relationship between 1 Byte, 2 Bytes, 4 Bytes, decimal, Hexadecimal, float, double, signed, unsign, 8 Bytes and string
—————————————————–
Forge By Games # ForgeByGames – Cheat Engine Tutorial series
episode 1 : How To Find start point and End point of a program using Cheat Engine – ForgeByGames
episode 2 : How To Enable Disable Button Of a Program using Cheat Engine -ForgeByGames
episode 3 : Cheat Engine Special Trick + How to write a special script when normal AOB fail
episode 4 : Forge By Games -Easy find Base Address of Multilevel Pointers special trick using Cheat Engine
episode 5 : Forge By Games – using 4 Bytes Unknow Search to hack most of the games with Cheat Engine
episode 6 : Forge By Games – Find out the relationship between value in Cheat Engine -part 1
—————————————————–
Thank you !
Forge By Games # ForgeByGames
Cheat Engine http://ift.tt/JQkTZA
Don’t forget to like the video. Subscribe my channel on YouTube! https://www.youtube.com/channel/UCSUASrRQWA6nPXe9sySqrBA
Oh yeah! To get more information, Follow my blog http://ift.tt/2iYY6Bh http://ift.tt/2aY42Tj
Forge By Games # ForgeByGames – FaceBook Page http://ift.tt/2a7LHpA
Forge By Games # ForgeByGames – Twitter tweet https://twitter.com/ForgeByGames
Forge By Games # ForgeByGames – Pinterest pin http://ift.tt/2oTvWu1
Join us at FaceBook group Cheat the Game http://ift.tt/2nxDX8i I have learned a lot from here
Thanks for watching and reading this, now share it if you like it.
w4
0 notes
Link
in this video, I will show you how to find unknow value using 4 bytes ,then convert it
also I will use a game I like lot to show it
Ori and The Blind Forest – Definitive Edition _ PC game 2015
I am using Cheat Engine version 6.6
Cheat Engine -Tutorial x64 bit Step 4: Floating points (PW=890124)
I always start with 4 bytes unknow value search, even it take longer time to search. But, by this way, I will be free from getting no result, then have to do another new search again. For me, is better to get the result one time than 2 or 3 times.
Usually 4 bytes unknow value search with increase and decrease will work most of the times. But for very hard to find value like position x,y,z for the game character’s location, 4 bytes unknow value search with changed and not change , will be a better choice. Same choice if the value is encrypted, example: Chicken Invaders 4 Ultimate Omelette.
Now, the detail for Ori and The Blind Forest – Definitive Edition the health HP is shown by orb, for now the max HP is 3, but it’s value is store in float and not count as 1 2 3. the game logic is: float +4 = orb +1 ; so 1=4, 2=8 3=12 (very strange? huh?) I found it using 4 bytes unknow value search with increase and decrease ,then convert it, form that I know it is a float value. You need to get hurt first to activate the AOB script, the Array of Bytes code don’t exit until you get damage of HP, but for this game getting hurt is the most easy thing, every where, anytime you can get hurt… Haha, don’t worries, you will survive.
I just want to show it’s strange game logic here. Also I like this game a lot, I always like hand drawn art more than 3d art, animated , retexture to 2d like games always are my favourite.
Never Alone, Child of Light, Ori and The Blind Forest are three of my favourite hand drawn like art games. Any game you like is hand drawn or retexture to 2d art ?
For all of you that are still reading this. Thank You !
Here I wish to thank Steven Chapman for his YouTube video Cheat Engine Tutorial_ How to Hack GameMaker Games This is how I learn about fstp st(*) Sometimes if the stack not pop as it should, will cause error. pop the stack to none, is very useful , Thanks !
my next video will be more detail for 4 bytes, integer, float, double, 8 bytes and string
—————————————————– this is episode 5 of my Youtube video about Cheat Engine
episode 1 : How To Find start point and End point of a program using Cheat Engine – ForgeByGames
episode 2 : How To Enable Disable Button Of a Program using Cheat Engine -ForgeByGames
episode 3 : Cheat Engine Special Trick + How to write a special script when normal AOB fail
episode 4 : Forge By Games -Easy find Base Address of Multilevel Pointers special trick using Cheat Engine
episode 5 : Forge By Games – using 4 Bytes Unknow Search to hack most of the games with Cheat Engine
—————————————————–
Thank you All !
Forge By Games # ForgeByGames
Don’t forget to like the video. Subscribe my channel on YouTube! https://www.youtube.com/channel/UCSUASrRQWA6nPXe9sySqrBA?sub_confirmation=1
Oh yeah! To get more information, Follow my blog http://ift.tt/2iYY6Bh
Join us at FaceBook group Cheat the Game http://ift.tt/2nxDX8i I have learned a lot from here
Thanks for watching and reading this, now share it if you like it.
watch https://youtu.be/3_9Xebtfj0Y
Watch This Video! Share with your Friends and if you like it, don’t forget to Subscribe to my YouTube Channel_ ForgeByGames
y3
w4
0 notes
Link
Gamer, Youtuber, Streamer go to sleep. Countinue on what you are working on after get enough of rest. Like games: fill up your HP and MP first. Sleep isn’t merely a time when your body shuts off. While you rest, your brain stays busy, overseeing biological maintenance that keeps your body running in top condition, preparing you for the day ahead. Without enough hours of restorative sleep, you won’t be able to work, learn, create, and communicate at a level even close to your true potential. Regularly skimp on “service” and you’re headed for a major mental and physical breakdown.
The quality of your sleep directly affects your mental and physical health and the quality of your waking life, including your productivity, emotional balance, brain and heart health, immune system, creativity, vitality, and even your weight. No other activity delivers so many benefits with so little effort!
Recently, Brian aka PoShYbRiD , Twitch Streamer Dies During 24 Hour Charity Live Stream.
Here’s the known information about the incident so far, via a mod posting in PoShY’s Twitch chat:
Known info so far: Around 3:30AM CST Poshy said he was going for smokes and left the stream running, He never returned. around 11AM CST we were all still here assuming he had fallen asleep. around 19:00 Sorelor sees him online in discord and messages him. The person who responded identified himself as a detective and asked Sore to call him. Sore spoke with him, Called the Virginia Beach police department to confirm the detectives identity. The detective confirmed Brian had passed.
According to PVPLive: Twitch.tv streamer PoShYbRiD has been found dead after a 24-hour streaming session for Charity on Twitch. It’s speculated that he died due to heart complications from severe sleep deprivation.
This guy made it 22 hours. RIP. 24-hour stream definitely are not healthy. MAY HE REST IN PEACE
Sleep for Health
Sleep needs vary across ages and are especially impacted by lifestyle and health. To determine how much sleep you need, it’s important to assess not only where you fall on the “sleep needs spectrum,” but also to examine what lifestyle factors are affecting the quality and quantity of your sleep such as work schedules and stress.
If you’re getting less than eight hours of sleep each night, chances are you’re sleep deprived. What’s more, you probably have no idea just how much lack of sleep is affecting you.
How is it possible to be sleep deprived without knowing it? Most of the signs of sleep deprivation are much more subtle than falling face first into your dinner plate. Furthermore, if you’ve made a habit of skimping on sleep, you may not even remember what it feels like to be truly wide-awake, fully alert, and firing on all cylinders. Maybe it feels normal to get sleepy when you’re in a boring meeting, struggling through the afternoon slump, or dozing off after dinner, but the truth is that it’s only “normal” if you’re sleep deprived.
I would like to say it again “Gamer, Youtuber, Streamer! Go to sleep now! Sleep and Rest is part of the game.”
Forge By Games # ForgeByGames
w4
0 notes
Link
Base Address is static which means it will not change even after game restart, it will always be at the same place in code format. BUT, a lot of games values are dynamic Address not static, they will change a lot : after loading, after restart, after … after … somethings; so the code you found will just work for short while. To deal with this problem, you need write a script (AOB or code injection) or find the value Base Address. With Base Address you can just simply edit the value anytimes, save and reuse it again with Cheat Engine.
—————————————————–
if you don’t understand what I am doing here, please watch my previous youtube video about Cheat Engine, this is episode 4
episode 1 : How To Find start point and End point of a program using Cheat Engine – ForgeByGames
episode 2 : How To Enable Disable Button Of a Program using Cheat Engine -ForgeByGames
episode 3 : Cheat Engine Special Trick + How to write a special script when normal AOB fail
—————————————————–
After watching video made by FreeER atubeacct at YouTube, Cheat Engine Manually Finding Multilevel Pointers
I figure out this special trick to easily find the Base Address, after doing many camparing.
FreeER atubeacct have said it there are relationships between pointers, and i do found many of them; but i have give myself a mission, find the easiest way. Yes, i have found it after many try and fail.
—————————————————–
Thank you All !
Forge By Games # ForgeByGames
Because of the Cheat Engine 6.6 Tutorial Step 8 is how i learn the trick to find the start point and end point of games address, then enable the next button. And the trick i use here a special and fast way to Base Address through comparing multilever pointers. I was looking for a way to solve the multilevel pointers test by using AOB Script. Eventually, i fail and fail again, but this is not a total lost, i have learn new tricks. But, I still trying Cheat Engine 6.6 Tutorial Step 8 – Multilevel Pointers can it be solve using AOB Script ? Any help is welcome. Still hoping for a AOB Script that can change the value to 5000 after the pointer change and before the 3 second end……… and a way to change the countdown from 3 seconds to 3 minutes or somethings less or more…. For anyone out there, if you know how, please let me know. I want to learn.
Don’t forget to like the video. Subscribe my channel on YouTube! https://www.youtube.com/channel/UCSUASrRQWA6nPXe9sySqrBA?sub_confirmation=1
Oh yeah! To get more information, Follow my blog http://ift.tt/2iYY6Bh
Join us at FaceBook group Cheat the Game I have learned a lot from here
Thanks for watching and reading this, now share it if you like it.
watch https://youtu.be/D56YU764EqU
Watch This Video! Share with your Friends and if you like it, don’t forget to Subscribe to my YouTube Channel_ ForgeByGames
y3
w4
0 notes
Link
Base Address is static which means it will not change even after game restart, it will alwaysbe at the same place in code format. BUT, a lot of games values are dynamic Address notstatic, they will change a lot : after loading, after restart, after … after …somethings; so the code you found will just work for short while. To deal with this problem,you need write a script (AOB or code injection) or find the value Base Address. With BaseAddress you can just simply edit the value anytimes, save and reuse it again with Cheat Engine.
—————————————————–
if you don’t understand what I am doing here, please watch my previous youtube video about Cheat Engine, this is episode 4
episode 1 : How To Find start point and End point of a program using Cheat Engine – ForgeByGames
episode 2 : How To Enable Disable Button Of a Program using Cheat Engine -ForgeByGames
episode 3 : Cheat Engine Special Trick + How to write a special script when normal AOB fail
—————————————————–
For a long times, looking for Base Address is what i know, i don’t know script. Looking for Base Address have been taken a lot of my time, from pointer to pointer, from pointer to dead end, from pointer to pointer before it, i am walking in circle a lot of times. Things change only after i encounter the problem with : Chicken Invaders 4 Ultimate Omelette , i just don’t know how, i search and search the web looking for answer, finally is Chris Fayte @ Cheat The Game youtube video that help. From that i know Geri, i read and read his articles many times until i understand what he means. (i am a slow learner, my weak point) Now i know script, assembly code, and some special trick. I am still learning because i am just touching the surface, there a lot more i don’t know : LUA , C++, VB , C# , JAVA , so on ……….
Ok, enough of my past, back to Pointers, Base Address, Multilevel Pointers
Forge By Games – Easy way to find Base Address of Multilevel Pointers using Cheat Engine
Base Address is the root of pointers, and pointer is pointing to the value you want to change or keep.
simple Level 1 pointers : Base Address –> pointer –> game value (dynamic Address).
For multilever pointers : Base Address –> pointer –> pointer –> pointer –> pointer –> pointer –> game value. (some games have Lv7 + multilever pointers, what a trouble maker)
With Base Address there are tons ways to use it, the problem is : finding it is hard, very hard sometimes, worse is can’t found it in some of my past record.
—————————————————– simply said to myself : “you did it, after all these years, you finally found the answer”
After watching video made by FreeER atubeacct at YouTube, Cheat Engine Manually Finding Multilevel Pointers
I figure out this special trick to easily find the Base Address, after doing many camparing. FreeER atubeacct have said it there are relationships between pointers, and i do found manyof them; but i have give myself a mission, find the easiest way. Yes, i have found it aftermany try and fail.
click here to Subscribe my Youtube channel Forge By Games , ForgeByGames
—————————————————–
if you don’t understand what I am doing here, please watch my previous youtube video about
Cheat Engine, this is episode 4
episode 1 : How To Find start point and End point of a program using Cheat Engine – ForgeByGames
episode 2 : How To Enable Disable Button Of a Program using Cheat Engine -ForgeByGames
episode 3 : Cheat Engine Special Trick + How to write a special script when normal AOB fail
—————————————————–
note to myself and you that reading this line. Base Address always will be static, so the final target search must be something that have ****.exe+??? ; if not, you must have been overlook it, -ff is -255 , maybe the base address is just at -33 or somethings, so just check each Find Assembly code result start from top to bottom, the final target is in one of them. -ff can be expand to -6ff , -ffff or what you think it should; or reduce to -6f , -cf or what you think it should.
For all of you that are still reading this. Thank You !
Special Thanks to FreeER atubeacct he have been helping me since the 1st Cheat Engine video : How To Find start point and End point of a program using Cheat Engine – ForgeByGames
Thank you All ! Forge By Games # ForgeByGames
Because of the Cheat Engine 6.6 Tutorial Step 8 is how i learn the trick to find the start point and end point of games address, then enable the next button. And the trick i use here a special and fast way to Base Address through comparing multilever pointers. I was looking for a way to solve the multilevel pointers test by using AOB Script. Eventually, i fail and fail again, but this is not a total lost, i have learn new tricks. But, I still trying Cheat Engine 6.6 Tutorial Step 8 – Multilevel Pointers can it be solve using AOB Script ? Any help is welcome. Still hoping for a AOB Script that can change the value to 5000 after the pointer change and before the 3 second end……… and a way to change the countdown from 3 seconds to 3 minutes or somethings less or more…. For anyone out there, if you know how, please let me know. I want to learn.
Don’t forget to like the video. Subscribe my channel on YouTube! Forge By Games # ForgeByGames
Oh yeah! To get more information, Follow my blog http://ift.tt/2iYY6Bh
Join us at FaceBook group Cheat the Game I have learned a lot from here
Thanks for watching and reading this, now share it if you like it.
w4
0 notes
Link
Forge By Games : quote and art quote of the day art by ForgeByGames
art name: Try
Forge By Games #ForgeByGames
w4
0 notes
Link
i am very sad about what happen at forum.cheatengine.org , it have been targeted by the big company from the game industry (Seems like its due to copyright claims by Bethesda, claiming cheat engine is violating the works of companies like Bethesda ect…) [your know the big one can name any reasons] giving Dark Byte the admin and creator of Cheat Engine such a Big problem. Read more here
Dark Byte , my thanks to you for all you hard work, i hope the problem will only be temporary.
i will release a series of all i learn from forum.cheatengine.org this the 1st part Forge By Games # ForgeByGames
all credit go to , all these from
http://ift.tt/1nd54kn
YoungDragon Grandmaster Cheater Supreme
COMPLETE CheatEngine Tutorial(with pictures) UPDATE JAN 2015 Hey, here is a good tutorial(Well, I think it’s pretty good) that I made. Hope you like it.
————————————-
Table of contents:
1. Introduction
2. The tutorial introduction
3. Tutorial 1
4. Tutorial 2
5. Tutorial 3
6. Tutorial 4
7. Tutorial 5
8. Tutorial 6
9. Tutorial 7
10. Tutorial 8
11. Other related stuff
12. Credits
————————————-
Chapter 1: Introduction
Welcome to YoungDragon’s Cheat Engine tutorial, updated January 23, 2015. It needs some updating due to new tutorials in cheat engine, and because Imageshack really sucks. Pictures now on Imgur. In this tutorial, there are 12 chapters. Also, I recycled most of the old stuff, changing Chapter 9 to a way better method. Thid took me hours to make, and even more hours to update it. Anyways, this will give you a basic and more advance chance to try CheatEngine! Cheat Engine is a program which allows you scan addresses, change values, search process memory, and allows you to edit stuff you wouldn’t usually be able to edit. Cheat Engine was founded and invented by Dark Byte. It’s a very powerful and well known program. Cheat Engine can be downloaded here: Click me to go to the url!. Most Anti-virus’s think Cheat Engine is a virus. It is NOT a virus. I want to make that perfectly clear. It has some tools that Anti-Virus’s think are dangerous like hacking tools. If you are too scared to download it, download the retarded idiot version(It’s for retarded idiots who don’t trust anybody, by the way). Cheat Engine is a completely SAFE program. Also, http://ift.tt/JQkTZA is NOT responsible of any illegal use of Cheat Engine. If you get caught using it illegally, it’s your problem. It was not intended for illegal use. Now, we will continue to the tutorial. Here is an image on what the program looks like(v6.4):
————————————-
Chapter 2: The tutorial introduction
Cheat Engine comes with a FREE TUTORIAL! That’s great! We will use that in this guide. To find it, click start, all programs, find the directory where Cheat Engine was installed(By default, it’s Cheat Engine [version]), click Cheat Engine tutorial.
Here is what it looks like(v3.2)
This is where we will start the whole tutorial, which will help you with everything you need to know. Here is what Dark Byte wrote:
Dark Byte wrote: Welcome to the Cheat Engine Tutorial. (v3.2)
This tutorial will try to explain the basics of cheating on games, and getting you more familiar with Cheat Engine.
First open Cheat Engine if it hasn’t been opened yet.
Then click on the ‘open process’ icon. (top left icon, with the computer on it)
When the process window is open find this tutorial. The process name is probably ‘tutorial.exe’ unless yourenamed it.
Select it, and click ok. Just ignore all the other buttons right now, but experiment with them later if you feel like it.
When everything went right, the process window should be gone now and at the top of CE the processname isshown.
Now, click NEXT to continue to the next step. (Or fill in the password to proceed to that particular step you want)
Now, you will have to get the process of Cheat Engine Tutorial. On the top left of the screen, there is a glowing computer.
Click it to open the process menu.
Click the Cheat engine tutorial process.
Click Open and you have successfully gotten a process loaded in Cheat Engine!
Press “Next” to go to tutorial 1 and read Chapter 3.
Note: You can save the passwords it gives you so you can continue where you were. Thank Dark Byte!
Chapter 3: Tutorial 1
This is the most BASIC tutorial you have! After you press next, this is what you will get:
Dark Byte wrote: Step 2: Exact Value scanning (PW=XXXXXX)
Now that you have opened the tutorial with Cheat Engine lets get on with the next step.You see at the bottom of this window the text Health: xxx
Each time you click ‘Hit me’ your health gets decreased.
To get to the next step you have to find this value and change it to 1000
To find the value there are different ways, but I’ll tell you about the easiest, ‘Exact Value’:
First make sure value type is set to at least 2 bytes or 4 bytes, 1 byte will also work, but you’ll run into an easy to fixproblem when you’ve found the address and want to change it. The 8-byte may perhaps works if the
bytes after the address are 0, but I wouldn’t take the bet.
Single, double, and the other scans just don’t work, because they store the value in a different way.
When the value type is set correctly, make sure the scantype is set to ‘Exact Value’
Then fill in the number your health is in the value box. And click ‘First Scan’
After a while (if you have a extremely slow pc) the scan is done and the results are shown in the list on theleft
If you find more than 1 address and you don’t know for sure which address it is, click ‘Hit me’, fill in the newhealth value into the value box, and click ‘Next Scan’
repeat this until you’re sure you’ve found it. (that includes that there’s only 1 address in the list…..)
Now double click the address in the list on the left. This makes the address pop-up in the list at the bottom,showing you the current value.
Double click the value, (or select it and press enter), and change the value to 1000.
If everything went ok the next button should become enabled, and you’re ready for the next step. Note:
If you did anything wrong while scanning, click “New Scan” and repeat the scanning again.
Also, try playing around with the value and click ‘hit me’
This tutorial stores your health using the 4 byte data value. Cheat Engine uses this by default. In this case, you are given the EXACT value of health you have (100). Go to Cheat Engine and in the Value box, type in 100. Click first scan.
Look to the left. Find a table that shows “Address” and “Value”. An address is where the data is stored and the value is what the data is. The actual value.
Go to the tutorial and click “Hit me”. Your health should go down. My health got to 99. The health you got will be called “myHp”. Whenever I refer to myHp, you get the number you have as your health. Go back to Cheat Engine and then type myHp(The health number) you got into the value box. Then press next scan.
You should come up with ONE value. Now, my address is 01855F30. Your address will be different. If it’s different, don’t say “OMGZZZ, I DIDZ IT WRONGZZZZ. FUCKZZZ THIS TUTORIALZZZ!!!!!!!!” It will not be the same every time. Addresses change. Double click the address with the value of myHp(The health number. Mine is 95). It should then also be at the bottom.
Now, you see the “Next” button is grey and blocked so you can’t go to the next tutorial. () Don’t worry, we will make it clickable now! To go to the next tutorial, the value has to be >1000(Greater then 1000). Double click the value section at bottom left side. You should get this:
Change the value to 1000 and press OK.
Go back to Cheat Engine tutorial and see that the Next button is unlocked! WAIT! Don’t click it. Click “Hit me” and your Health should go UP to 99x.(Change the value to 1000 and press Next to finish Tutorial 1)
You have now finished Tutorial 1!
Chapter 4: Tutorial 2
This tutorial will help you in finding unknown values, like if all you got is a loading bar. Here is what Dark Byte wrote.
Dark Byte wrote: Step 3: Unknown initial value (PW=SEXSEX)
Ok, seeing that you’ve figured out how to find a value using exact value let’s move on to the next step.In the previous test we knew the initial value so we could do a exact value, but now we have a status bar where we don’t know the starting value.
We only know that the value is between 0 and 500. And each time you click ‘hit me’ you lose some health. The amount you lose each time is shown above the status bar.
Again there are several different ways to find the value. (like doing a decreased value by… scan), but I’ll only explain the easiest. “Unknown initial value”, and decreased value.
Because you don’t know the value it is right now, a exact value wont do any good, so choose as scantype ‘Unknown initial value’, again, the value type is 4-bytes. (most windows apps use 4-bytes)click first scan and wait till it’s done.
When it is done click ‘hit me’. You’ll lose some of your health. (the amount you lost shows for a few seconds and then disappears, but you don’t need that)
Now go to Cheat Engine, and choose ‘Decreased Value’ and click ‘Next Scan’
When that scan is done, click hit me again, and repeat the above till you only find a few.
We know the value is between 0 and 500, so pick the one that is most likely the address we need, and add it to the list.
Now change the health to 5000, to proceed to the next step.
Click new scan and the table with address/value should clear. Also, select the address we changed to 1000 and click the delete button on the keyboard. This should get rid of that to get rid of future confusion. Now, you see a full progress bar with a value you do not know. Every time you press Hit me, you will get “-(Random number)”. Here is what it looks like:
Go to cheat engine and find value type. By default, it’s 4 byte. Change 4 byte to “Unknown initial value” and click Scan.
Now, the think should go back to normal like nothing happened. It should go back to 4 byte. Now, go back to the tutorial app and click Hit me. You should see a thing that says “-(Random number)”. Click Hit me now.
As you can see, I lost 8 hp. Go to Cheat Engine, change value to type to “Decreased value by…”. Now put the number of HP you lost in the box. Then press Next scan.
Keep on doing this until you have less than 10 addresses. Now, I ended up with 4 addresses. 1 of them is 116. The others at 4,000,000,00+. You have to get at least 5000 for the “Next” button to unlock. Which one do you think is correct if the “Next” button is locked? Yes, it’s the address with the value of 116. Double click it to send it to the bottom. Change the value to 5020. Click “Hit me” and the progress bar should get full. If it didn’t, you did it wrong. Change the value to 5000 and click Next. This is how you get unknown values quickly. If you do not know what the value decreased by, change the value type to “decreased value” and hit “next scan”.
Chapter 5: Tutorial 3
In this tutorial, you will be dealing with different data types. We were dealing with 4 bytes. This time, we will deal with float and double. This is what Dark Byte wrote.
Dark Byte wrote: Step 4: Floating points (PW=890124)
In the previous tutorial we used bytes to scan, but some games store information in so called ‘floating point’ notations.
(probably to prevent simple memory scanners from finding it the easy way)
a floating point is a value with some digits behind the point. (like 5.12 or 11321.1)Below you see your health and ammo. Both are stored as Floating point notations, but health is stored as a float and ammo is stored as a double.
Click on hit me to lose some health, and on shoot to decrease your ammo with 0.5
You have to set BOTH values to 5000 or higher to proceed.
Exact value scan will work fine here, but you may want to experiment with other types too.
First, click New scan. Delete the address we changed to 5000. Keep scan type to Exact Value, but change Value type to Float.
Now, type 100 into the value textbox and click First Scan.
I got 2 addresses! That’s good. Now, click Hit me. I got 97.4. Go to cheat Engine and type 97.4 (Or whatever you got) into the textbox and click Next Scan. I came up with 1 address. We will do what we did in the other tutorials, we will double click and change the value.
Change it to 5000.
Click New Scan and do NOT delete the float address change. Change the value type to Double. Scan 100.
I came up with 1 value. Click “Fire” on the tutorial to see if it is the value. If you get 99.5 in Cheat Engine. That’s it! Double click and change the value to 5000. The “Next button” should unlock. Click next to Continue.
Congrats! You just finished the “BASICS!” Yes, the basics. If you thought that was hard, try doing to tutorial again and again until you get it right. Now, we will go to Medium. Then Hard.
This is Medium.
Chapter 6: Tutorial 4
This is a harder tutorial. We will find out how to use the Code Finder.
Here is what Dark Byte wrote:
Dark Byte wrote: Step 5: Code finder (PW=NOPW4U)
Sometimes the location something is stored at changes when you restart the game, or even while you’re playing.. In that case you can use 2 things to still make a table that works.
In this step I’ll try to describe how to use the Code Finder function.The value down here will be at a different location each time you start the tutorial, so a normal entry in the address list wouldn’t work.
First try to find the address. (you’ve got to this point so I assume you know how to)
When you’ve found the address, right-click the address in Cheat Engine and choose “Find out what writes to this address”. A window will pop up with an empty list.
Then click on the Change value button in this tutorial, and go back to Cheat Engine. If everything went right there should be an address with assembler code there now.
Click it and choose the replace option to replace it with code that does nothing. That will also add the code address to the code list in the advanced options window. (Which gets saved if you save your table)
Click on stop, so the game will start running normal again, and close to close the window.
Now, click on Change value, and if everything went right the Next button should become enabled.
Note: When you’re freezing the address with a high enough speed it may happen that next becomes visible anyhow
First, find the address. All the previous tutorials found out the address. So now, you know how to do it. Use 4 bytes.
I have found the address. Here is what I got:
Now, double click it to make it go down. Right click the address(After you put it at the very bottom) and press “Find out what writes to this address”. A new window should pop up.(If it ask you about a debugger, press yes)
Click “Change Value” where the tutorial is and then go back to Cheat Engine. Now, you should see something new. A bunch of stuff like “eax”, “ebx”, “ebp”, “xxx”, “sex”, ect, ect might pop up, but in our case, only one thing shows up.
Select it and click the replace button. ANOTHER window should pop up. Remove everything that was in it.
to
Press OK.
Now, Click “Stop” and then “Close”. Go to the tutorial and click Change Value. It should stay the same and then the “Next” button should be unlocked!!! As Charlie Sheen would say, Winning.
Chapter 7: Tutorial 5
Now, this is more advanced then the last tutorial. Still in the medium section, BUT it’s a little bit hard. This one uses pointers. Ok, first, get the address with the value of 100. At this point, you should know how to get an address.
Here is what Dark Byte wrote:
Dark Byte wrote: Step 6: Pointers: (PW=XXXXXX)
In the previous step I explained how to use the Code finder to handle changing locations. But that method alone makes it difficult to find the address to set the values you want.
That’s why there are pointers:At the bottom you’ll find 2 buttons. One will change the value, and the other changes the value AND the location of the value.
For this step you don’t really need to know assembler, but it helps a lot if you do.
First find the address of the value. When you’ve found it use the function to find out what accesses this address.
Change the value again, and a item will show in the list. Double click that item. (or select and click on more info) and a new window will open with detailed information on what happened when the instruction ran.
If the assembler instruction doesn’t have anything between a ‘[‘ and ‘]’ then use another item in the list.
If it does it will say what it think will be the value of the pointer you need.
Go back to the main cheat engine window (you can keep this extra info window open if you want, but if you close it, remember what is between the [ and ] ) and do a 4 byte scan in hexadecimal for the value the extra info told you.
When done scanning it may return 1 or a few hundred addresses. Most of the time the address you need will be the smallest one. Now click on manually add and select the pointer checkbox.
The window will change and allow you to type in the address of a pointer and a offset.
Fill in as address the address you just found.
If the assembler instruction has a calculation (e.g: [esi+12]) at the end then type the value in that’s at the end. else leave it 0. If it was a more complicated instruction look at the calculation.
example of a more complicated instruction:
[EAX*2+EDX+00000310] eax=4C and edx=00801234.
In this case EDX would be the value the pointer has, and EAX*2+00000310 the offset, so the offset you’d fill in would be 2*4C+00000310=3A8. (this is all in hex, use calc.exe from windows in scientific mode to calculate)
Back to the tutorial, click OK and the address will be added, If all went right the address will show P->xxxxxxx, with xxxxxxx being the address of the value you found. If thats not right, you’ve done something wrong.
Now, change the value using the pointer you added in 5000 and freeze it. Then click Change pointer, and if all went
right the next button will become visible. extra:
And you could also use the pointer scanner to find the pointer to this address
After you have the address. Move it to the bottom and right click. Click “Find out what writes to this address”. You will then press change value on CE tutorial and will get some info in the popup screen.
Click on the first one. Mine is 00426562 – 89 02 – mov [edx],eax. Then press more information. You should get this.
Find where it says “The value of the pointer needed to find this address is probably XXXXXXXX” Mine is 001F65E8. Close that and close the data table to just show Cheat Engine. Now click new scan and check the hex button. Type in what you got for XXXXXXXX. Click “First Scan”.
I got 1 addresses.
Press “Add address manually”. Click the pointer checkbox. Now type in the address you got. I got 00645360. For offset, leave as 0. Press OK. (NOTE: YOU SHOULD GET THE SAME THING AS ME IF YOU’RE USING TUTORIAL VERSION 3.2)
The value should be the same as the other address. If you got “??” then you did it wrong. Try again. If you got this:
Then you did it right! Try pressing “Change Value” on the tutorial to mess around with it. Both values will change!
Now, change The value of the one with the address of “P -> XXXXXXXX” to 5000. Then check the “Active box” to freeze the value. Go back to the tutorial and press “Change Pointer”. Wait for it to stop and the next button should unlock!
Press next and go to the next chapter.
Chapter 8: Tutorial 6
This is one of my FAVORITE parts of this tutorial!! This is because you get to create your own little code. Here is what Dark Byte wrote:
Dark Byte wrote: Step 7: Code Injection: (PW=ULOSER)
Code injection is a technique where one injects a piece of code into the target process, and then reroute the execution of code to go through your own written codeIn this tutorial you’ll have a health value and a button that will decrease your health with 1 each time you click it.
Your task is to use code injection to increase the value of your health with 2 every time it is clicked
Start with finding the address and then find what writes to it.
then when you’ve found the code that decreases it browse to that address in the disassembler, and open the auto assembler window (ctrl+a)
There click on template and then code injection, and give it the address that decreases health (If it isn’t already filled in correctly)
That will generate a basic auto assembler injection framework you can use for your code.
Notice the alloc, that will allocate a block of memory for your code cave, in the past, in the pre windows 2000 systems, people had to find code caves in the memory(regions of memory unused by the game), but that’s luckily a thing of the past since windows 2000, and will these days cause errors when trying to be used, due to SP2 of XP and the NX bit of new CPU’s
Also notice the line newmem: and originalcode: and the text “Place your code here”
As you guessed it, write your code here that will increase the health with 2.
An usefull assembler instruction in this case is the “ADD instruction”
here are a few examples:
“ADD [00901234],9” to increase the address at 00901234 with 9
“ADD [ESP+4],9” to increase the address pointed to by ESP+4 with 9
In this case, you’ll have to use the same thing between the brackets as the original code has that decreases your health
Notice:
It is recommended to delete the line that decreases your health from the original code section, else you’ll have to increase your health with 3 (you increase with 3, the original code decreases with 1, so the end result is increase with 2), which might become confusing. But it’s all up to you and your programming.
Notice 2:
In some games the original code can exist out of multiple instructions, and sometimes, not always, it might happen that a code at another place jumps into your jump instruction end will then cause unknown behavior. If that happens, you should usually look near that instruction and see the jumps and fix it, or perhaps even choose to use a different address to do the code injection from. As long as you’re able to figure out the address to change from inside your injected code.
To start out, delete all the addresses and restart the whole scan process. Find the address. After you find it, right click it after you took it to the bottom. Then, click “Find out what writes to this address”. Click “Hit Me” and make the HP go down. Look at the data that was traced. I got 00426C40 – FF 8B 78040000 – dec [ebx+00000478]. Click “Show disassembler”.
Now, press Ctrl + A to open Auto disassembler.
Now, click template and press “Code Injection”. Press yes if a pop up shows.
See original code? You got dec [ebx+00000478]. Copy that. Then turn it into a comment so it doesn’t interfere with our new code by adding “//” before it without the quotes. Delete the stuff next to // under newmem. paste the thing you copied under newmem and change dec to add. also, add “,2” to it. (The instructions tell you to add 2 to it every time you click “Hit me”) You should get this:
Code: add [ebx+00000478],2
Now, press Execute and you then go back to the CE tutorial. Press hit me to get +2 HP. Press next and go to the next chapter.
Again, this is my FAVORITE part. I love using code injection as it is EXTREMELY useful.
Chapter 9: Tutorial 7
This is the second to last tutorial!
Here is what Dark Byte wrote:
Dark Byte wrote: Step 8: Multilevel pointers: (PW=HAHANO)
This step will explain how to use multi-level pointers.
In step 6 you had a simple level-1 pointer, with the first address found already being the real base address.
This step however is a level-4 pointer. It has a pointer to a pointer to a pointer to a pointer to a pointer to the health.You basicly do the same as in step 6. Find out what accesses the value, look at the instruction and what probably is the base pointer value, and what is the offset, and already fill that in or write it down. But in this case the address you’ll find will also be a pointer. You just have to find out the pointer to that pointer exactly the same way as you did with the value. Find out what accesses that address you found, look at the assembler instruction, note the probable instruction and offset, and use that.
and continue till you can’t get any further (usually when the base address is a static address, shown up as green)
Click Change Value to let the tutorial access the health.
If you think you’ve found the pointer path click Change Register. The pointers and value will then change and you’ll have 3 seconds to freeze the address to 5000
Extra: This problem can also be solved using a auto assembler script, or using the pointer scanner
Extra2: In some situations it is recommended to change ce’s codefinder settings to Access violations when
Encountering instructions like mov eax,[eax] since debugregisters show it AFTER it was changed, making it hard to find out the the value of the pointer
Extra3: If you’re still reading. You might notice that when looking at the assembler instructions that the pointer is being read and filled out in the same codeblock (same routine, if you know assembler, look up till the start of the routine). This doesn’t always happen, but can be really useful in finding a pointer when debugging is troublesome
First, Find the address and move it to the lower part of CE like we always do. You should find the address pretty quickly. I am literally rewriting this tutorial because the last one sucked ass and it didn’t really help. Also, it will help if you have notepad open. You’ll see why later. Right click the address and follow what you did in Chapter 7. Find out what writes to the address. Click change value, and then when you get to this screen:
Write down in notepad “Offsets:” and under that, write “First offset: 18”. Let me explain. An offset is what is used to find pointers. It makes the pointer look in the right direction. A house could be pointed in the direction West, however just saying “West” is never going to get you the house. Now, if you tell the pointer that it’s the 18th house, then you have the exact house. a Multilevel pointer has multiple offsets. You’ll see what I mean later. Basically, it’s like “It’s the west house, the the left of the 18th house, past the 1st house, going to the right of the 14th house, and then finally arriving at the house by 0C.” Again, you’ll see what I mean later.
Now again, do what you did in Chapter 7, scan in hex for the value of the pointer and then you’ll get one-3 addresses. It’s usually the first one. However, it’s not green. Green addresses are static addresses that means that it’s what everything is pointing to and basically, in the example from earlier, the house that you’re getting. That means that it’s pointing to another address.
Again, click “Add address manually”, and then check the pointer box. ****NOTE, REMEMBER TO SET THE OFFSET TO 18!!. Then, write the address you got and press “OK”.
At this point, you need to do it all over again. Right click that, but this time click “Find out what accesses this address”. Then click “Find out what accesses this pointer”. This is different because pointers don’t write anything. They only access. It’s pretty self explanatory. Click change value and you should get 2-10 things. I got two things. It’s the same as before. Click more information. This time, notice there is no plus. That means the second offset is 0. Write down in the notepad “Second offset: 0”.
We’re writing this down because the more pointers we get, the more levels of offset we need to get to our direction. Basically, it’s like giving cheat engine to find the direction of the value. Scan for the value of the pointer to find the address in hex like usual and you should get a few addresses. Again, it’s usually the first one.
Still not green. Well, to do that again. Click “Add Address Manually”, and click the pointer box. However, before you do anything, click “Add Offset”. This will add two more textboxes. Now, this why we’re keeping track of our offsets in notepad. So that we can use them there and not have to memorize them. Make sure the top one is 18 and the second is 0. Then, put the address you found.
All the values should be the same. If they’re not, the offsets are either not correct or you messed something else up. Restart the tutorial.
Again, not green however. Keep doing this noting all the offsets until you finally get a green address.. Found it. I’ll show you photos of my CE, the address’, the offsets and everything.
So you see how multilevel pointers work or I hope you did when you saw the pictures.
Now, all there’s left to do is the change the last one to “5000”, check the active box and be done with that!! Click “Change pointer” and after 3 seconds, the next button should be clickable. There’s the last one.
Chapter 10: Tutorial 8
Here’s a hard one. a very hard tutorial. Honestly, I had a bit of studying to do as to why things were as they were. And I know now. It’s IMPORTANT that you know at least a little bit about assembly and how it works for this part of the tutorial because we will be coding with it using code injection. Here’s what Dark Byte wrote:
Dark Byte wrote: Step 9: Shared code: (PW=INUDREAM)
This step will explain how to deal with code that is used for other object of the same typeOften when you’ve found health of a unit or your own player, you will find that if you remove the code, it affects enemies as well.
In these cases you must find out how to distinguish between your and the enemies objects.
Sometimes this is as easy as checking the first 4 bytes (Function pointer table) which often point to a unique location for the player, and sometimes it’s a team number, or a pointer to a pointer to a pointer to a pointer to a pointer to a playername. It all depends on the complexity of the game, and your luck
The easiest method is finding what addresses the code you found writes to and then use the dissect data feature to compare against two structures. (Your unit(s)/player and the enemies) And then see if you can find out a way to distinguish between them.
When you have found out how to distinguish between you and the computer you can inject an assembler script that checks for the condition and then either do not execute the code or do something else. (One hit kills for example)
Alternatively, you can also use this to build a so called “Array of byte” string which you can use to search which will result in a list of all your or the enemies players
In this tutorial I have implemented the most amazing game you will ever play.
It has 4 players. 2 Players belong to your team, and 2 Players belong to the computer.
Your task is to find the code that writes the health and make it so you win the game WITHOUT freezing your health
To continue, press “Restart game and autoplay” to test that your code is correct Tip: Health is a float
Tip2: There are multiple solutions
We already know that health is a float. That’s great. Make sure you clear cheat engine from the last tutorial and then start scanning and looking for all the values, making sure you name them with the player names so that you don’t get confused.
Now, what you must do now is find a way to tell cheat engine that if the enemy hits you, you don’t die. But if you hit the enemy, their HP goes down. This is actually pretty difficult because using all of the other methods from this tutorial will not work, especially because your hit function is the same is theirs so disabling it would disable all hitting. So we must code it. Yes, code it. First of all, how the hell are we going to tell from the enemy and us?? Well, pretty simple actually. Usually in games, there is its own way of telling what is an enemy team and what’s a good team. Basically a team ID. To find that, we can use a dissect feature in Cheat Engine.
To do this, click “Memory view” and click “Tools” in the menu bar. From here, open “Dissect Data/Structure”. It should look like:
If you click “Ctrl + A”, you should get another field. Add enough so that there is 4 of them. Now, what will we do with that?? We will get the address’ from the data we got in the main window and paste it into the text boxes. Like so:
We know Hal and Kitt are on different teams so put them in a different group. Do so by right clicking the address that Hal has and then click “Change Group”. Double click new group and it doesn’t matter what you name it. Do the same for Kitt, but put it in the same group Hal is in.
If we start with the creation of the structure now, we will have a few issues. This is because the address we put in the boxes is for the health, therefore will only give us stuff for the health. But we don’t want only the health. We want stuff on the whole team. So what we can do is go back a “Word”, 4 bytes. This way, you can see the entire structure. Just type -4 after everything in the boxes.
After that, you can click “Structures” in the menu bar and click “Define new structure”. You don’t have to name it anything. I don’t anyway. Click “Yes” and “Ok” for anything that shows up. And you should get a long list of stuff. If you want to know what the color codes mean, look at “View”, and click “Settings”. What we’re looking for is “Group Different”. Basically, it’s what is the same everyone in one group, but different for everyone in the other group. If you see the offset description, you should see 0010 is the one that is different.
Note that somewhere. You can close that now. Now, what we must do is find out where the code is that is making the health go down. Simple really, you must find what accesses the address. You can use whichever, but I use Dave. Find out what accesses it and see all the weird codes.
Different value types use different assembly codes. For example the code to lose health is “fsubr” meaning “Float subtract” or whatever. Click stop and click “Show dissassembler” when highlighting that one. (Mine says 00427D7D – D8 6B 04 – fsubr dword prt [ebx+04])
Now, what you must do is go to tools and you guessed it, auto assemble. Use the code injection template. Now, this is why I told you that you needed to know some assembly. Basically, we’re going to do an if statement. It works like this. We use ebx because that’s what’s being subtracted.
The code for the if statement is “cmp”. It means compare. And it works like this:
Code: ]cmp [ebx+10],1
The 10 is what we got before, remember?? The one is what it’s checking for. Now, we need to figure out is what we want to do. We can use je to go to another function if the team id is 1, or jne to go to another function if the team id is other than 1. We will use jne because the function is already set up. (originalcode)
Delete the blue comment after newmem and put the code from earlier. The, in a new line, add
Code: jne originalcode.
That means “Go to original code if the team ID is not equal to one. If it is, continue.”
After that, copy the code from originalcode and paste it under that. Basically
Code: fsubr dword ptr [ebx+04]
fstp dword ptr [ebp-30]
However, change “fsubr” to “fadd” which means add instead of subtract. This will make your HP go up every time your hit.
Now, we must skip originalcode by going to exit, by using jmp. Put
Code: jmp exit
after everything and your code should be done. It should look like this:
After that, click execute and if it’s exactly like I did it, it should have no issues. Inject it. You can then hit the players and see if your team’s HP goes down. It should go up!! If it crashes or it doesn’t work, you did something wrong. Look at the code closely!! Now, go to the game and auto play it. It should end up like this:
Click next!!
Congrats, you are an advanced Cheat Engine user!!!!!!!
Chapter 11: Other related stuff
Cheat engine can be used from flash games, multiplayer games, up to hacking Windows itself! It’s tool that scans memory too. It’s similar to OllyDGB and some other stuff. It’s the most known, though. Cheat Engine is a very good program. The tutorial was very good help too. I thought it was good at least. That last tutorial would be impossible without studying.
Chapter 12: Credits
3 credits.
Killor1 – Made me want to actually make this guide!
Me (YoungDragon) – I made the guide, didn’t I? Too bad I was too lazy to update it until now, 2015.
Dark Byte – He made Cheat Engine and the tutorial. Without the tutorial, most people wouldn’t know how to use Cheat Engine. That’s a GREAT feature with CE!
—————————–
Yes, I know it’s VERY long, but in my opinion, it’s a good guide.
THERE ARE MORE COMMENTS at
http://ift.tt/1nd54kn
w4
0 notes
Link
This the 3rd video of Cheat Engine about Finding start point and end point Address, Finding Assembly Code, Comparing, edit code.
If you found it hard to understand, you can watch my 1st video: How To Find start point and End point of a program using Cheat Engine – ForgeByGames
2nd video: How To Enable Disable Button Of a Program using Cheat Engine -ForgeByGames
This video is continue from the 2nd video
——————————————
This time i will show
my self discover trick 1. how to change color 2. how to multiple scan
special trick i learn from FreeER atubeacct another way to Finding start and end point ( FreeER atubeacct ) is at YouTube
—————— and the continue from the 2nd video, How To Enable Disable Button Of a Program using Cheat Engine -ForgeByGames
How to write a special script when using normal AOB script will crush or fail This way of script writing, i learn from Chris Fayte @ Cheat The Game (Facebook group) and (YouTube)
—————————————— I use these 3 lines to make my special script, i have test more than 3 times, by [exit] close and restart the program again, to make sure it work.
The big problem for these kind of script are (1) need constant static and unique address, you have to find it yourself, not like Normal AOB script (2) sometimes it need more than ten lines, more detail at my post Cheat the Game _ Have Cheat Engine Find Your Address Cheats For You For Any Game AOB To Data (3) need to edit it, sometimes it need a lot of edit (4) need [exit] close and restart the program, more than 3 times to make sure it work. (5) EVEN after you have done all (1)to(4) , check and recheck ; it will fail somewhere in the game.
The good things or the use of these kind of script are (1) it can do what normal AOB script cannot (2) it take less memory (3) it can get the address of the code [sometimes useful, sometimes not useful]
************************************************************
watch these youtube video to get more detail
Steven Chapman a.k.a. Sn34ky Mofo Cheat Engine 6.4 Tutorial Part 9 – Array of Byte (AOB) Scans Demystified
————————————————
Chris Fayte @ Cheat the Game
Direct Byte Manipulation Cheat Engine Game Hacking Tutorial
Have Cheat Engine Find Your Address Cheats For You For Any Game AOB To Data
AOBSigMaker – A Great Tool For Game Hackers
************************************************************
I use these 3 lines to make my special script, i have test more than 3 times, by [exit] close and restart the program again, to make sure it work.
The big problem for these kind of script are (1) need constant static and unique address, you have to find it yourself, not like Normal AOB script (2) sometimes it need more than 20 lines, Full detail (must watch) at Cheat the Game Youtube video Have Cheat Engine Find Your Address Cheats For You For Any Game AOB To Data (3) need to edit it, sometimes it need a lot of edit. (4) need [exit] close and restart the program, more than 3 times to make sure it work. (5) EVEN after you have done all (1)to(4) , check and recheck ; it have the possibility of fail to work somewhere in the game.
The good things or the use of these kind of script are (1) it can do what normal AOB script cannot (2) it take less memory (3) it can get the address of the code [sometimes useful, sometimes not useful]
——————————————
For all of you that are still reading this Thank You ! I put a surprise present for all who watch my video from start to finish, you will find it.
Special Thanks to FreeER atubeacct he have been helping me since the 1st Cheat Engine video : How To Find start point and End point of a program using Cheat Engine – ForgeByGames
Thank you All !
Forge By Games # ForgeByGames
Because of the Cheat Engine 6.6 Tutorial Step 8 is how i learn the trick to find the start point and end point of games address, then enable the next button. I was looking for a way to solve the multilevel pointers test by using AOB Script. Eventually, i fail and fail again, but this is not a total lost, i have learn this new trick. But, I still trying Cheat Engine 6.6 Tutorial Step 8 – Multilevel Pointers can it be solve using AOB Script ? Any help is welcome. Still hoping for a AOB Script that change value to 5000 after the pointer change and before the 3 second end……… For anyone out there, if you know how, please let me know. I want to learn.
Don’t forget to like the video. Subscribe my channel on YouTube! https://www.youtube.com/channel/UCSUASrRQWA6nPXe9sySqrBA?sub_confirmation=1
Oh yeah! To get more information, Follow my blog http://ift.tt/2iYY6Bh
Thanks for watching and reading this, now share it if you like it.
watch https://youtu.be/nYxpxetTJHM
Watch This Video! Share with your Friends and if you like it, don’t forget to Subscribe to my YouTube Channel_ ForgeByGames
y3
w4
0 notes
Link
I will show you a special trick using Cheat Engine to search for assembly code.
This the 2nd video about start point and end point Address. If you found it hard to understand, you can watch my 1st video: How To Find start point and End point of a program using Cheat Engine – ForgeByGames
Remember this is not how to solve Cheat Engine -Tutorial step 2 to step 9
If you want to know how to solve Cheat Engine -Tutorial step 2 to step 9 Steven Chapman a.k.a. sn34ky mofo have a good Youtube video about this topic.
In this video, I will show you how to enable the Next button, I can do it at Cheat Engine -Tutorial step 2,3,6,8 i will show you how i fail at step 4 For Tutorial step 5,7,9 i need help, i don’t know which to find
I am using Cheat Engine version 6.6 http://ift.tt/14ILgty
In the next video, i will show how to write a special script especially made for pointer, also can be use for normal AOB Script. That I learn from Chris Fayte @ Cheat The Game (Youtube , Facebook Group)
My thanks to Chris Fayte, Geri, Steven Chapman without you guys, i still will know not things about how to use Cheat Engine.
i need help, for Tutorial step 4,5,7,9 (solve it in a special way) i have show you how to enable the Next button, i can do it at Cheat Engine -Tutorial step 2,3,6,8 i have show you how i fail at step 4 For Tutorial step 5,7,9 . i don’t know which or what to find. if anyone found the good comparing code, please let me know.
Thank you !
Forge By Games # ForgeByGames
Because of the Cheat Engine 6.6 Tutorial Step 8 is how i learn the trick to find the start point and end point of games address, then enable the next button. I was looking for a way to solve the multilevel pointers test by using AOB Script. Eventually, i fail and fail again, but this is not a total lost, i have learn this new trick. But, I still trying Cheat Engine 6.6 Tutorial Step 8 – Multilevel Pointers can it be solve using AOB Script ? Any help is welcome. Still hoping for a AOB Script that change value to 5000 after the pointer change and before the 3 second end………
For anyone out there, if you found a way to use the trick i show here, please let me know. I want to learn.
Don’t forget to like the video. Subscribe my channel on YouTube! https://www.youtube.com/channel/UCSUASrRQWA6nPXe9sySqrBA?sub_confirmation=1
Oh yeah! To get more information, Follow my blog http://ift.tt/2iYY6Bh
Thanks for watching and reading this, now share it if you like it.
watch https://youtu.be/f2D-giMv1Mo
Watch This Video! Share with your Friends and if you like it, don’t forget to Subscribe to my YouTube Channel_ ForgeByGames
y3
w4
0 notes
Link
I will show you a special trick using Cheat Engine to search for assembly code.
This the 2nd video about start point and end point Address. If you found it hard to understand, you can watch my 1st video: How To Find start point and End point of a program using Cheat Engine – ForgeByGames
Remember this is not how to solve Cheat Engine -Tutorial step 2 to step 9
If you want to know how to solve Cheat Engine -Tutorial step 2 to step 9 Steven Chapman a.k.a. sn34ky mofo have a good Youtube video about this topic.
In this video, I will show you how to enable the Next button, I can do it at Cheat Engine -Tutorial step 2,3,6,8 i will show you how i fail at step 4 For Tutorial step 5,7,9 i need help, i don’t know which to find
I am using Cheat Engine version 6.6
In the next video, i will show how to write a special script especially made for pointer, also can be use for normal AOB Script. That I learn from Chris Fayte @ Cheat The Game (Youtube , Facebook Group)
My thanks to Chris Fayte, Geri, Steven Chapman without you guys, i still will know not things about how to use Cheat Engine.
i need help, for Tutorial step 4,5,7,9 (solve it in a special way) i have show you how to enable the Next button, i can do it at Cheat Engine -Tutorial step 2,3,6,8 i have show you how i fail at step 4 For Tutorial step 5,7,9 . i don’t know which or what to find. if anyone found the good comparing code, please let me know.
Thank you !
Forge By Games # ForgeByGames
Because of the Cheat Engine 6.6 Tutorial Step 8 is how i learn the trick to find the start point and end point of games address, then enable the next button. I was looking for a way to solve the multilevel pointers test by using AOB Script. Eventually, i fail and fail again, but this is not a total lost, i have learn this new trick. But, I still trying Cheat Engine 6.6 Tutorial Step 8 – Multilevel Pointers can it be solve using AOB Script ? Any help is welcome. Still hoping for a AOB Script that change value to 5000 after the pointer change and before the 3 second end………
For anyone out there, if you found a way to use the trick i show here, please let me know. I want to learn.
Don’t forget to like the video. Subscribe my channel on YouTube! https://www.youtube.com/channel/UCSUASrRQWA6nPXe9sySqrBA?sub_confirmation=1
Oh yeah! To get more information, Follow my blog http://ift.tt/2iYY6Bh
Thanks for watching and reading this, now share it if you like it.
watch https://youtu.be/xDhGJFYX-7c
Watch This Video! Share with your Friends and if you like it, don’t forget to Subscribe to my YouTube Channel_ ForgeByGames
y3
w4
0 notes
Link
I will show you a special trick using Cheat Engine to search for assembly code.
This the 2nd video about start point and end point Address. If you found it hard to understand, you can watch my 1st video: How To Find start point and End point of a program using Cheat Engine – ForgeByGames
Remember this is not how to solve Cheat Engine -Tutorial step 2 to step 9
If you want to know how to solve Cheat Engine -Tutorial step 2 to step 9 Steven Chapman a.k.a. sn34ky mofo have a good Youtube video about this topic.
In this video, I will show you how to enable the Next button, I can do it at Cheat Engine -Tutorial step 2,3,6,8 i will show you how i fail at step 4 For Tutorial step 5,7,9 i need help, i don’t know which to find
I am using Cheat Engine version 6.6
In the next video, i will show how to write a special script especially made for pointer, also can be use for normal AOB Script. That I learn from Chris Fayte @ Cheat The Game (Youtube , Facebook Group)
My thanks to Chris Fayte, Geri, Steven Chapman without you guys, i still will know not things about how to use Cheat Engine.
i need help, for Tutorial step 4,5,7,9 (solve it in a special way) i have show you how to enable the Next button, i can do it at Cheat Engine -Tutorial step 2,3,6,8 i have show you how i fail at step 4 For Tutorial step 5,7,9 . i don’t know which or what to find. if anyone found the good comparing code, please let me know.
Thank you !
Forge By Games # ForgeByGames
Because of the Cheat Engine 6.6 Tutorial Step 8 is how i learn the trick to find the start point and end point of games address, then enable the next button. I was looking for a way to solve the multilevel pointers test by using AOB Script. Eventually, i fail and fail again, but this is not a total lost, i have learn this new trick. But, I still trying Cheat Engine 6.6 Tutorial Step 8 – Multilevel Pointers can it be solve using AOB Script ? Any help is welcome. Still hoping for a AOB Script that change value to 5000 after the pointer change and before the 3 second end………
For anyone out there, if you found a way to use the trick i show here, please let me know. I want to learn.
Don’t forget to like the video. Subscribe my channel on YouTube! https://www.youtube.com/channel/UCSUASrRQWA6nPXe9sySqrBA?sub_confirmation=1
Oh yeah! To get more information, Follow my blog http://ift.tt/2iYY6Bh
Thanks for watching and reading this, now share it if you like it.
watch https://youtu.be/eQGISA6vuqM
Watch This Video! Share with your Friends and if you like it, don’t forget to Subscribe to my YouTube Channel_ ForgeByGames
y3
w4
0 notes
Link
This is the beginning of my video about cheat engine. The basic will not be detail here, read more about the basic at my website, or you can visit these two youtube channel: sn34ky mofo , cheat the game. I learn a lot from their video. These are the three guys I wish to thank most : Geri, Chris Fayte, Steven Chapman. I learn most from them.
There are a lot of of video and guide about cheat engine but many of them is just show off, they just do what they do, not teach, at the end it just boring or make you sick because you waste your time and learn nothing at all.
I make this video because there are no other video like this, at least I don’t found one, I learn these trick after many error. I record it after success, edit it, because I don’t want to forget about it in the future.
This is the first part of my trick Find the address of start point and End point of a program using Cheat Engine.
I am using Cheat Engine version 6.6
Remember :
1) first must attach a game or program
2) memory view
3) remember the game or program name show in cheat engine
4) right mouse click
5) use deduction –
6) copy the result to notepad, save it, remember where your save is
7) search for assembly code
8) cancel when found ??
9) double click
10) keep practice until you understand all these step
The next video will be more advance trick base on this video….. Enable disable button.
Don’t forget to Subscribe my channel on YouTube! Oh yeah! To get more information Follow my blog
Thanks you for watching and reading this, now share it if you like it.
Forge By Games #ForgeByGames
Watch This Video! Share with your Friends and if you like it, don’t forget to Subscribe to my YouTube Channel : ForgeByGames
Thank !
w4
0 notes
Link
This is the beginning of my video about cheat engine. The basic will not be detail here, read more about the basic at my website, or you can visit these two youtube channel: sn34ky mofo , cheat the game. I learn a lot from their video. These are the three guys I wish to thank most Geri, Chris Fayte, Steven Chapman. I learn most from them. There are a lot of of video and guide about cheat engine but many of them is just show off, they just do what they do, not teach, at the end it just boring or make you sick because you waste your time but learn nothing ai all. I make this video because there are no other video like this, at least I don’t found one, I learn these trick after many error. I record it after success, edit it, because I don’t want to forget about it in the future. This is the first part of my trick Find the address of start point and End point of a program using Cheat Engine, the next video will be more advance trick base on this video….. Enable disable button.
Don’t Subscribe my channel on YouTube! Oh yeah! To get more information Follow my blog http://ift.tt/2aY42Tj
Thanks for watching and reading this, now share it if you like it.
Forge By Games #ForgeByGames
watch https://youtu.be/yP6rsx7RSf8
Watch This Video! Share with your Friends and if you like it, don’t forget to Subscribe to my YouTube Channel_ ForgeByGames
y3
w4
0 notes
Text
Forge By Games - Find out the relationship between value in Cheat Engine -part 2
Forge By Games – Find out the relationship between value in Cheat Engine -part 2
Forge By Games – the relationship between value in Cheat Engine -part 2
If you not yet watch the part 1 , please watch it first Forge By Games – the relationship between value in Cheat Engine -part 1
This the 2nd part of the relationship between 1 Byte, 2 Bytes, 4 Bytes, decimal, Hexadecimal, float, double, signed, unsign, 8…
View On WordPress
0 notes
Text
Forge By Games - Find out the relationship between value in Cheat Engine -part 1
Forge By Games – Find out the relationship between value in Cheat Engine -part 1
Forge By Games – Find out the relationship between value in Cheat Engine -part 1
This time I will show the relationship between 1 Byte, 2 Bytes, 4 Bytes, decimal, Hexadecimal, float, double, signed, unsign, 8 Bytes and string
i am using Cheat Engine version 6.6 Tutorial-i386.exe start point = 00400000 end point = 0060AFFF
If…
View On WordPress
0 notes