Jump to content
  • 0

About GGsearchPointer B40000


jesty

Question

6 answers to this question

Recommended Posts

Posted
16 minutes ago, Alessa- said:

Field offset ? From dump.cs ? If yes use template field searcher from lover1500

No, I mean, you know that Lua has a function that searches for pointers searchPointer, which can search for all the pointers in your sgg search list. But I want to search for de games. His pointer prefix address must be added with b40000 so that he can find it. But in this case, it must be manually added one by one. I want to ask if there is a tool like gg searchPointer that can search all the b40000 pointers with one click. Finally, thank you, boss Thank you for your helpNo, I mean, you know that Lua has a function that searches for pointers searchPointer, which can search for all the pointers in your sgg search list. But I want to search for de games. His pointer prefix address must be added with b40000 so that he can find it. But in this case, it must be manually added one by one. I want to ask if there is a tool like gg searchPointer that can search all the b40000 pointers with one click. Finally, thank you, boss Thank you for your help

Posted
4 hours ago, jesty said:

No, I mean, you know that Lua has a function that searches for pointers searchPointer, which can search for all the pointers in your sgg search list. But I want to search for de games. His pointer prefix address must be added with b40000 so that he can find it. But in this case, it must be manually added one by one. I want to ask if there is a tool like gg searchPointer that can search all the b40000 pointers with one click. Finally, thank you, boss Thank you for your helpNo, I mean, you know that Lua has a function that searches for pointers searchPointer, which can search for all the pointers in your sgg search list. But I want to search for de games. His pointer prefix address must be added with b40000 so that he can find it. But in this case, it must be manually added one by one. I want to ask if there is a tool like gg searchPointer that can search all the b40000 pointers with one click. Finally, thank you, boss Thank you for your help

I don't know you mean

Apakah 0xb0 itu field offset ?

Posted
21 hours ago, jesty said:

No, I mean, you know that Lua has a function that searches for pointers searchPointer, which can search for all the pointers in your sgg search list. But I want to search for de games. His pointer prefix address must be added with b40000 so that he can find it. But in this case, it must be manually added one by one. I want to ask if there is a tool like gg searchPointer that can search all the b40000 pointers with one click. Finally, thank you, boss Thank you for your helpNo, I mean, you know that Lua has a function that searches for pointers searchPointer, which can search for all the pointers in your sgg search list. But I want to search for de games. His pointer prefix address must be added with b40000 so that he can find it. But in this case, it must be manually added one by one. I want to ask if there is a tool like gg searchPointer that can search all the b40000 pointers with one click. Finally, thank you, boss Thank you for your help

As far as I know there is no built in function to easily handle tagged pointers, you will have to create a lua function to handle them

Posted
19 minutes ago, BadCase said:

As far as I know there is no built in function to easily handle tagged pointers, you will have to create a lua function to handle them

Can you give me an example? I can only handle one b40000 address pointer in the above picture. I want to handle multiple addresses. Can you give me a simple example? I will be very gratefulCan you give me an example? I can only handle one b40000 address pointer in the above picture. I want to handle multiple addresses. 

Posted
21 minutes ago, BadCase said:

As far as I know there is no built in function to easily handle tagged pointers, you will have to create a lua function to handle them

local POINTER_TAG = 0xB4

local TAG_SHIFT = 56

 

local function addTag(pointer)

  return pointer | (POINTER_TAG << TAG_SHIFT)

end

 

local address = addTag(tonumber("7B12C73348", 16))   

local offset = 0xB0

local search = (address - offset)..'~'..address

gg.searchNumber(search, gg.TYPE_QWORD)

local POINTER_TAG = 0xB4
local TAG_SHIFT = 56

local function addTag(pointer)
  return pointer | (POINTER_TAG << TAG_SHIFT)
end

local address = addTag(tonumber("7B12C73348", 16))       
local offset = 0xB0    
local search = (address - offset)..'~'..address
gg.searchNumber(search, gg.TYPE_QWORD)

Archived

This topic is now archived and is closed to further replies.

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