no like long press have goto pointer right?
if normal data it like 00000007516421870 like this
but this game or app it goto pointer is B40000751621870, yes it is
and have b4adress it cant can search pointer may be very big gg notsupport
i give you a example
local POINTER_TAG = 0xB4
local TAG_SHIFT = 56
local function addTag(pointer)
return pointer | (POINTER_TAG << TAG_SHIFT)
end
local d = {'', '512'}
while true do
d = gg.prompt({'Address of value in hex. E.g. BAADBEEF', 'Maximal possible offset. E.g. "100" or "100h" for hex'}, d, {'number', 'number'})
if d == nil then
break
end
local address = tonumber(d[1], 16)
if address == nil then
gg.alert('Address must be hex number')
goto continue_1
end
address = addTag(address)
local offset, hex = string.gsub(d[2], 'h', '')
if hex == 0 then
offset = tonumber(offset)
else
offset = tonumber(offset, 16)
end
if offset == nil then
gg.alert('Offset must be decimal or hex number')
goto continue_1
end
local search = (address - offset)..'~'..address
gg.searchNumber(search, gg.TYPE_QWO RD)
break;
::continue_1::
end。
it can seach b4 address but it can one by one very solwly no searchpointer faster do you now? think for you answer