Цитата Сообщение от Wbtest2 Посмотреть сообщение
PHP код:
PlayerFrameHealthBarText:SetPoint("CENTER"PlayerFrame00);
PlayerFrameManaBarText:SetPoint("TOP"PlayerFrameHealthBarText"BOTTOM"00); 



PHP код:
local FrameList = {
    [
"PlayerFrameHealthBar"] = true,
    [
"PlayerFrameManaBar"] = true,    
};
hooksecurefunc("TextStatusBar_UpdateTextString",function(self)
    if 
not FrameList[self:GetName()] then return; end;
    
local Text self.TextString;
    
local Value self:GetValue();
    if 
Value and Value and Text then
        local _
MaxValue self:GetMinMaxValues();
        
local HealthPercent math.ceil((Value MaxValue)*100);
        
Text:SetFormattedText("%u%%"HealthPercent);
    
end;
end
Большое спасибо))) Помогло