Z-Perl Unit Frames

Z-Perl Unit Frames

15M Downloads

Ready Checks

Kyrgune opened this issue ยท 4 comments

commented

I am not seeing the ready checks, not ready checks or the "?" for have not clicked either in the raid frames or party frames.

commented

I have the same issue

commented

I assume Blizzard broke/changed something since it doesn't show on older zperl versions as well

commented

My friend helped me find a solution for this problem, @Resike (Sorry about the ping!)

Go into ZPerl.lua and replace line 3810 to 3824 with

function XPerl_Unit_UpdateReadyState(self)
    local status = conf.showReadyCheck and self.partyid and GetReadyCheckStatus(self.partyid)
    if (status) then
        self.statsFrame.ready:Show()
        if (status == "ready") then
            self.statsFrame.ready.check:SetAtlas(READY_CHECK_READY_TEXTURE)
        elseif (status == "waiting") then
            self.statsFrame.ready.check:SetAtlas(READY_CHECK_WAITING_TEXTURE)
        else -- "notready"
            self.statsFrame.ready.check:SetAtlas(READY_CHECK_NOT_READY_TEXTURE)
        end
    else
        self.statsFrame.ready:Hide()
    end
end

Then it will show again, basically just replace SetTexture with SetAtlas ๐Ÿ˜„
2023-12-22_22-34-46

commented

Very nice zeenk, thanks for the info!