Jump to content
  • 0

Please Help


X-Line
 Share

Question

Hello, I want help. If possible, convert the value of money from dword to QWORD and add 3 billion or 4 billion. Sometimes there is no change, sometimes the money in the game looks like this - 1000000E. The maximum I can add in Game Guardian is 2 billion, and I need at least a trillion to complete the rest of the levels in a game

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

Try long pressing the desired value and open the address. Change value formats to show WORD,DWORD, QWORD etc. If you see the value the same in many data types e.g 1000 is WORD ,DWORD , etc which means you can change the largest data type in which the value exists. This is because the game reads the memory location as a specific data type. If you change in QWORD while game reads in DWORD, you will have problems.

Also you could try adding instead of overwriting.

Link to comment
Share on other sites

  • 0
11 hours ago, Silento said:

Try long pressing the desired value and open the address. Change value formats to show WORD,DWORD, QWORD etc. If you see the value the same in many data types e.g 1000 is WORD ,DWORD , etc which means you can change the largest data type in which the value exists. This is because the game reads the memory location as a specific data type. If you change in QWORD while game reads in DWORD, you will have problems.

Also you could try adding instead of overwriting.

word and dword have the same value

20231130_133155.jpg

Link to comment
Share on other sites

  • 0

WORD, DWORD, QWORD is hexadecimal number representation format.
WORD - 2 bytes long, (max 65 535)
DWORD - 4 bytes, (max 4 294 967 295)
QWORD - 8 bytes, (max 18 446 744 073 709 551 615)
On your screenshot first address xx8C, second address xx8E
From xx8C to xx8E - 2 bytes. It's format WORD
If you use next two bytes, this will be format DWORD.
Number 3198 looks same in WORD and DWORD formats.  (0x0C7E or 0x00000C7E)
You can write in cell xx8C, number in format DWORD
But if you write number in QWORD format, you will change the following data.
This can lead to problems in game.

Edited by Count_Nosferatu
Link to comment
Share on other sites

  • 0

What do you meant by..

22 hours ago, X-Line said:

..need at least a trillion to complete the rest of the levels in a game

as far as i remembered that game dont have levels to complete.

all you need is to upgrade/level up these 3 

20231201_044951.jpg

Edited by MonkeySAN
Link to comment
Share on other sites

  • 0
On 11/30/2023 at 10:57 PM, MonkeySAN said:

What do you meant by..

as far as i remembered that game dont have levels to complete.

all you need is to upgrade/level up these 3 

20231201_044951.jpg

You've shared video before that you do it .. but the video has been deleted.. so i did what you wrote about the formula but nothing changed .. can you upload another video?

Link to comment
Share on other sites

  • 0
On 11/30/2023 at 9:57 PM, MonkeySAN said:

What do you meant by..

as far as i remembered that game dont have levels to complete.

all you need is to upgrade/level up these 3 

20231201_044951.jpg

Please help with a video. I tried with Game Guardian to increase the money so that I could complete 2000km and 5000km, but I could not. I also tried to modify libil2cpp.so about Crave hex, but there is no change. Please help. Many people with us on the forum are suffering from the same problem.

Link to comment
Share on other sites

  • 0
2 hours ago, MonkeySAN said:

use this formula to search your current Drop depth :

= (current depth - 50) ÷ 10 + 1

example : 1000

-> 1000 - 50 = 950

-> 950 ÷ 10 = 95

-> 95 + 1 = 96

Search 96 for 1000km

- a group search can be use for a more precise search

group search = cart space; drop depth;offline gains::9

Cart space = current - 2

Drop depth = use formula above

Offline gains = current ÷ 2

Example :

Cart space 3

= 3 - 2

1

Drop depth 100

= use formula above

6

Offline gains 10

= 10 ÷ 2

= 5

group search = 1;6;5::9

- once found, goto address of any values and scroll up

- you will find the prices

- edit to 0 and freeze for free upgrades

Similarly you also can search the prices with group search.

Using picture above the group search will be :

100;100;137::9

same once found, goto address any of it and to find the Cart space,Drop depth and Offline gains values, this time you scroll down.

---------------------------------

use the formula to change Drop depth to any value you want to.

example : 5000

-> 5000 - 50 = 4950

-> 4950 ÷ 10 = 495

- only this time around you dont need to add 1

- just upgrade it once

- dont forget to set the price to 0 and freeze first just in case

Ok, thanks for the clarification, I will try this method

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.