Hatte das gleiche Proble. Bei Curse lässt sich bei den Beiträgen zu X-pearl folgendes finden:
fixed the issue. The function to update the manabar in XPerl_Player.lua wasn't doing checks to see if the player had "Show Percents" enabled.
To fix this yourself, open up XPerl_Player.lua in your favorite text editor, jump down to line 392. It's the line below: mb.text:SetFormattedText("%d/%d", playermana, playermanamax)
Replace:
if (UnitPowerType(self.partyid) >= 1) then
mb.percent:SetText(playermana)
else
mb.percent:SetFormattedText(percD, (playermana * 100.0) / playermanamax)
end
if (not self.statsFrame.greyMana) then
mb.text:Show()
mb.percent:Show()
end
With:
if (pconf.percent) then
if (UnitPowerType(self.partyid) >= 1) then
mb.percent:SetText(playermana)
else
mb.percent:SetFormattedText(percD, (playermana * 100.0) / playermanamax)
end
end
if (not self.statsFrame.greyMana) then
mb.text:Show()
if (pconf.percent) then
mb.percent:Show()
end
end
Ich habs probiert, es klappt wieder. Bin Trotzdem auf Pitbull V.4 umgestiegen. Is zwar Beta 0.9, klappt aber und is leicher zu konfigurieren als V.3.
Leider wird x-pearl seit längerem nicht mehr unterstützt und nur mehr von einigen Fans die sich auskennen am Leben erhalten wies aussieht.
gl