-- PaladinIndicators.lua local indSize = OmaRFSettings.IndSize; local rhomb = "Interface\\AddOns\\OmaRF\\images\\rhomb"; local M = {}; OmaRFIndicators.Class["PALADIN"] = M; M.Auras = { [53563] = "TOPRIGHT", -- Beacon of Light [156910] = "TOPRIGHT", -- Beacon of Faith [200025] = "TOPRIGHT", -- Beacon of Virtue } function M.Setup(base) local inds = {}; inds["TOPRIGHT"] = base:CreateTexture(nil, "OVERLAY"); inds["TOPRIGHT"]:SetPoint("TOPRIGHT", base, "TOPRIGHT"); inds["TOPRIGHT"]:SetWidth(indSize); inds["TOPRIGHT"]:SetHeight(indSize); inds["TOPRIGHT"]:SetTexture(rhomb); inds["TOPRIGHT"]:SetVertexColor(1, 0, 0); inds["TOPRIGHT"]:Hide(); return inds; end