Jump to content
  • 0

Can't do a search if don't use memory range "Other"


Question

8 answers to this question

Recommended Posts

  • 0
Posted (edited)
9 hours ago, MonkeySAN said:

Please elaborate the problem.

I can't find the number without using memory range the "Other",Previously I used redmi 9 to hack games and it worked in all memory ranges but after Change it with a new one it only worked in the "Other" memory range.

 

I hope you understand, because I don't know how to explain it either.XD

Edited by Tama7
  • 0
Posted
9 hours ago, MonkeySAN said:

Please elaborate the problem.

If you see in the second photo, I searched for the number with all the memory and no it didn't find anything

 

And the first photo I just used memory Range "Other" and it worked,Some people design their scripts using memory ranges from the Java heap to anonymous So I can't use it 

  • 0
Posted
10 hours ago, Tama7 said:

I can't find the number without using memory range the "Other",

Depending on processor architecture and Android version, GG itself determines in which region program (game) code is located.
For Android 11+ version, and the x64 architecture, in most cases it determines "Other"

  • 0
Posted
On 11/9/2024 at 9:04 PM, Count_Nosferatu said:

Depending on processor architecture and Android version, GG itself determines in which region program (game) code is located.
For Android 11+ version, and the x64 architecture, in most cases it determines "Other"

So, how to fix it?

  • 0
Posted
2 hours ago, Tama7 said:

how to fix it?

This is not possible now.
It’s easier to add a check to script, like this:

...
gg.setRanges(gg.REGION_ANONYMOUS | gg.REGION_C_ALLOC) -- default for x32 
if gg.getTargetInfo().x64 then gg.setRanges(gg.REGION_C_ALLOC | gg.REGION_OTHER) end
...

 

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
×
×
  • 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.