I made my own lua script which is
-- Define the address to search for (in hexadecimal format)
local targetAddressHex = "7AF6EF6780" -- Replace with your specific hexadecimal address
-- Convert the hexadecimal string to a number
local targetAddressNum = tonumber(targetAddressHex, 16)
-- Set the search parameters and search
gg.clearResults()
gg.searchNumber(targetAddressNum, gg.TYPE_QWORD, false, gg.SIGN_EQUAL, 0, -1)
-- Get the search results
local results = gg.getResults(500)
-- Add each result to the Game Guardian items list
gg.addListItems(results)
Which saves all found addresses as last step so i can do the text step i want which is offset calculation i do it with type float and value is 14. Anyway to do it with lua instead of keep doing manually every time?