THETWINSOFFICIAL Posted December 3, 2022 Posted December 3, 2022 Field offset ? From dump.cs ? If yes use template field searcher from lover1500
jesty Posted December 3, 2022 Author Posted December 3, 2022 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
THETWINSOFFICIAL Posted December 3, 2022 Posted December 3, 2022 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 ?
BadCase Posted December 4, 2022 Posted December 4, 2022 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
jesty Posted December 4, 2022 Author Posted December 4, 2022 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.
jesty Posted December 4, 2022 Author Posted December 4, 2022 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)
Question
jesty
look pic thanks
6 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.