local itemSetSkillsBase = 0x9E2038 local itemSetSkillasLevel_offset = 0x328 function ItemSetSkill(num) local id = memoryReadInt(getProc(),itemSetSkillsBase + (num - 1)) if id == 0 then return end local name = GetIdName(id) local address = GetItemAddress(id) local asLevel = memoryReadInt(getProc(), address + itemSetSkillasLevel_offset) print(name,id,asLevel) end