@Nils: Need Icons für den Loot
Huch, das sehe ich erst jetzt :-O
Hier eine kleine Anleitung, wie du es selbst hinzufügst:
Suche nach
frame.text:SetPoint("RIGHT", frame.button[3], "LEFT");
und füge drunter ein
frame.iconframe = CreateFrame("Frame", "$perentIcon", frame);
frame.iconframe:SetWidth(19.2);
frame.iconframe:SetHeight(19.2);
frame.iconframe:SetBackdrop({ bgFile = "Interface\\ChatFrame\\ChatFrameBackground", insets = { left = -1, right = -1, top = -1, bottom = -1 } });
frame.iconframe:SetBackdropColor(0, 0, 0, 1);
frame.iconframe:SetPoint("RIGHT", frame, "LEFT", -3, 0);
frame.icon = frame.iconframe:CreateTexture("$parentBackground", "BORDER");
frame.icon:SetAllPoints();
frame.icon:SetTexCoord(0.07, 0.93, 0.07, 0.93);
Ein paar Zeilen weiter unten:
Suche nach
frame.text:SetText(count > 1 and count.."x "..name or name);
und füge drunter ein
frame.icon:SetTexture(texture);
Fertig :-)