PartyIconList_base = 0xA11B88 PartyIconList_offset = 0xC function GetPartyIcon(_pawn) local listStart = memoryReadRepeat("intptr", getProc(), PartyIconList_base, PartyIconList_offset) for i = 0, 6 do local guid = memoryReadShort(getProc(), listStart + i * 12) if guid == _pawn.GUID then return i + 1 end end end