Sunday 23 April 2017

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


  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://www.cheatengine.org/

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
https://forgebygames.blogspot.com
https://forgebygames.wordpress.com

Forge By Games  # ForgeByGames    - FaceBook Page
https://www.facebook.com/Forgebygames-913857608744041/

Forge By Games  # ForgeByGames    - Twitter  tweet
https://twitter.com/ForgeByGames

Forge By Games  # ForgeByGames    - Pinterest  pin
https://www.pinterest.com/forgebygames/


Join us at FaceBook group
      Cheat the Game
https://www.facebook.com/groups/CheatTheGame/
I have learned a lot from here

Thanks for watching and reading this, now share it if you like it.

Tuesday 18 April 2017

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 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 - Find out the relationship between value in Cheat Engine -part 1
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

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://www.cheatengine.org/

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
https://forgebygames.blogspot.com
https://forgebygames.wordpress.com

Forge By Games  # ForgeByGames    - FaceBook Page
https://www.facebook.com/Forgebygames-913857608744041/

Forge By Games  # ForgeByGames    - Twitter  tweet
https://twitter.com/ForgeByGames

Forge By Games  # ForgeByGames    - Pinterest  pin
https://www.pinterest.com/forgebygames/


Join us at FaceBook group
      Cheat the Game
https://www.facebook.com/groups/CheatTheGame/
I have learned a lot from here

Thanks for watching and reading this, now share it if you like it.


Monday 3 April 2017

Tough Time Don't Last, Tough People Do.

The more wise a person is, the more are the chances of a tough past.


You are never without hope as long as you believe that every dream lost a new one will take it's place, for every problem a solution will a rise, like an angle watching over us, helps seems to materialize when you need it the most.

Sometimes life is hard. Even so in tough time. Life has a way of kicking us when we're down. And just when we think we can't fall any lower, we get kicked again. But it's important to remember that setbacks, failures, and tragedy are a part of life. Whether we manage to find joy and success in the daily struggle of life is largely dependent on our ability to persevere through even the toughest adversity without ever giving up.

If you're going through a rough time, reading some inspiring manga, uplifting quotes, watch some funny anime, play a simple and beautiful game can help you remember that life isn't always bad. These seemingly long stretches of fear, disappointment, pain, and heartache are just brief, insignificant moments of time that will pass.


                        Spring will come after winter



Here are some of the best inspirational quotes for difficult times to lift your spirits up:
Uplifting Quotes For Difficult Times


"Fall seven times, stand up eight."    -  Japanese Proverb



"We must accept finite disappointment, but we must never lose infinite hope."    -  Martin Luther King


"Hope is important because it can make the present moment less difficult to bear. If we believe that tomorrow will be better, we can bear a hardship today."    -  Thich Nhat Hanh


"The friend in my adversity I shall always cherish most. I can better trust those who helped to relieve the gloom of my dark hours than those who are so ready to enjoy with me the sunshine of my prosperity."    -  Ulysses S. Grant


"We must embrace pain and burn it as fuel for our journey."    -  Kenji Miyazawa


"Sometimes our light goes out, but is blown again into instant flame by an encounter with another human being."    -  Albert Schweitzer


"We should always pray for help, but we should always listen for inspiration and impression to proceed in ways different from those we may have thought of."    -  John H. Groberg


"Next to trying and winning, the best thing is trying and failing."    -  L.M. Montgomery


"A problem is a chance for you to do your best."    -  Duke Ellington


"When everything seems to be going against you, remember that the airplane takes off against the wind, not with it."    -  Henry Ford


"The gem cannot be polished without friction, nor man perfected without trials."    -  Chinese Proverb


"Obstacles don't have to stop you. If you run into a wall, don't turn around and give up. Figure out how to climb it, go through it, or work around it."    -  Michael Jordan


"The greater the difficulty, the more glory in surmounting it. Skillful pilots gain their reputation from storms and tempests."    -  Epicetus


"Problems are not stop signs, they are guidelines."    -  Robert Schuller


"Prosperity is a great teacher; adversity is a greater. Possession pampers the mind; privation trains and strengthens it."    -  William Hazlitt


"Prosperity is not without many fears and disasters; and adversity is not without comforts and hopes."    -  Francis Bacon



"Never let your head hang down. Never give up and sit down and grieve. Find another way. And don't pray when it rains if you don't pray when the sun shines."    -  Leroy Satchel Paige


"The difference between stumbling blocks and stepping stones is how you use them."    -  Unknown


"Just as despair can come to one only from other human beings, hope, too, can be given to one only by other human beings."    -  Elie Weisel


"The greatest glory in living lies not in never failing, but in rising every time we fail."    -  Nelson Mandela



"It is only in our darkest hours that we may discover the true strength of the brilliant light within ourselves that can never, ever, be dimmed."    -  Doe Zantamata


"Tough times never last, but tough people do."    -   Robert H Schuller


"If it's not exactly like you thought it would be, you think it's a failure. What about the spectrum of colors in between."    -  Sara Evans



"I learned there are troubles of more than one kind. Some come from ahead, others come from behind. But I've bought a big bat. I'm all ready, you see. Now my troubles are going to have trouble with me."    -  Dr. Seuss


"In three words I can sum up everything I've learned about life. It goes on."    -  Robert Frost


"You are today where your thoughts have brought you; you will be tomorrow where your thoughts take you."    -  James Allen


"Prosperity makes friends, adversity tries them."    -  Publilius Syrus


"Man is fond of counting his troubles but he does not count his joys. If he counted them up, as he ought to, he would see that every lot has enough happiness provided for it."    -  Fyodor Dostoevsky


"Every adversity, every failure and every heartache carries with it the seed of an equivalent or a greater benefit."    -  Napoleon Hill


"If you don't like something change it; if you can't change it, change the way you think about it."    -  Mary Engelbreit



"Believe that life is worth living and your belief will help create the fact."    -  William James


"He knows not his own strength who hath not met adversity."    -  William Samuel Johnson


"I will love the light for it shows me the way, yet I will endure the darkness for it shows me the stars."    -  Og Mandino


"Have great hopes and dare to go all out for them. Have great dreams and dare to live them. Have tremendous expectations and believe in them."    -  Norman Vincent Peale


"Things turn out the best for the people who make the best of the way things turn out." -John Wooden



"To have darkness behind me, in front of me a bright sky, flickering lights on the water and to feel it on the stony face of the southern sun."    -  Julia Hartwig


"Use what you've been through as fuel, believe in yourself and be unstoppable!"    -  Yvonne Pierre


"Even if happiness forgets you a little bit, never completely forget about it."    -  Jacques Prevert



"It doesn't matter how slow you go, as long as you don't stop."    -  Confucius


"The best way to get rid of the pain is to feel the pain. And when you feel the pain and go beyond it, you'll see there's a very intense love that is wanting to awaken itself."    -  Deepak Chopra


"Learn how to be happy with what you have while you pursue all that you want."    -  Jim rohn



"To succeed, you have to do something and be very bad at it for a while. You have to look bad before you can look really good."    -  Barbara DeAngelis



"I ask not for a lighter burden, but for broader shoulders."    -  Jewish Proverb


"Courage doesn't always roar. Sometimes courage is the quiet voice at the end of the day, saying, "I will try again tomorrow."    -  Mary Anne Radmacher


"When things are bad, we take comfort in the thought that they could always get worse. And when they are, we find hope in the thought that things are so bad they have to get better."    -  Malcolm S. Forbes


"The bravest sight in the world is to see a great man struggling against adversity."    -  Seneca


"In times of great stress or adversity, it's always best to keep busy, to plow your anger and your energy into something positive."    -  Lee Iacocca


The more wise a person is, the more are the chances of a tough past.

    We should always learn to remember that what counts in our lives is not the mere fact that we have lived but the difference we have made in other people's lives determines the significance of the life we lived. Tough Time will forge you, you will become tough and wise.

Forge By Games # ForgeByGames

http://forgebygames.blogspot.com/2017/01/the-beautiful-game-of-never-alone-kisma.html