function guildtest() local ignorelist = {0x9E868C,0x9E8690,0x9E8694,0x9E8698,0x9E86B4,0x9E86B8,0x9E86BC,0x9E86C0} local function ignorenum(address) for k,v in pairs(ignorelist) do if address == v then return true end end end for addr = 0x9E868C, 0x9E89A8, 4 do if not ignorenum(addr) then local tmp = memoryReadInt(getProc(), addr) if tmp ~= -1 then printf("%X\t%d\n",addr,tmp) end end end end