Jump to content

HUDمساعدة بال


Recommended Posts

2 hours ago, #َxLysandeR said:

local width = ((getElementHealth(localPlayer)/(math.max(1, (100 + (getPedStat(localPlayer, 24) - 569) / 4.31))))*100) * (RectangleWidth/100)

غير فقط

RectangleWidth 

rectangleحطها العرض حق الـ

ما فهمت كودك الصراحة

ذا كودي

local hp = math.floor(getElementHealth(getLocalPlayer()))
if ( stat > 573 ) then	
  dxDrawRectangle(999, 111, 146/200*hp, 18, tocolor(218, 25, 0, 255), false)
  else
 dxDrawRectangle(999, 111, 146/100*hp, 18, tocolor(218, 25, 0, 255), false)
  end

وش الكود حقك ذا

Link to comment
8 minutes ago, #َxLysandeR said:

local hp = math.floor(getElementHealth(getLocalPlayer()))
local width = ((hp/(math.max(1, (100 + (getPedStat(localPlayer, 24) - 569) / 4.31))))*100) * (146/100)
dxDrawRectangle(999, 111, width, 18, tocolor(218, 25, 0, 255), false)

 

اشكرك اخوي

Link to comment
1 hour ago, #َxLysandeR said:

local hp = math.floor(getElementHealth(getLocalPlayer()))
local width = ((hp/(math.max(1, (100 + (getPedStat(localPlayer, 24) - 569) / 4.31))))*100) * (146/100)
dxDrawRectangle(999, 111, width, 18, tocolor(218, 25, 0, 255), false)

 

ماعتقد تحتاج كل التعقيد ذا :] 

اليوزفل ذا مسهلها كثير

function getPedMaxHealth(ped)
    assert(isElement(ped) and (getElementType(ped) == "ped" or getElementType(ped) == "player"), "Bad argument @ 'getPedMaxHealth' [Expected ped/player at argument 1, got " .. tostring(ped) .. "]")
    local stat = getPedStat(ped, 24)
    local maxhealth = 100 + (stat - 569) / 4.31
    return math.max(1, maxhealth)
end

local hp = math.floor(getElementHealth(getLocalPlayer()))
dxDrawRectangle(999, 111, 146 * hp / getPedMaxHealth(localPlayer), 18, tocolor(218, 25, 0, 255), false)

الطريقة ذي شغالة ومجربها 100%

يظبط علي دمك في كل الاحوال

  • Haha 1
Link to comment
1 minute ago, #DesTroeyR said:

ماعتقد تحتاج كل التعقيد ذا :] 

اليوزفل ذا مسهلها كثير


function getPedMaxHealth(ped)
    assert(isElement(ped) and (getElementType(ped) == "ped" or getElementType(ped) == "player"), "Bad argument @ 'getPedMaxHealth' [Expected ped/player at argument 1, got " .. tostring(ped) .. "]")
    local stat = getPedStat(ped, 24)
    local maxhealth = 100 + (stat - 569) / 4.31
    return math.max(1, maxhealth)
end

local hp = math.floor(getElementHealth(getLocalPlayer()))
dxDrawRectangle(999, 111, 146 * hp / getPedMaxHealth(localPlayer), 18, tocolor(218, 25, 0, 255), false)

الطريقة ذي شغالة ومجربها 100%

يظبط علي دمك في كل الاحوال

احي لسا ذاك اسهل ههه

Link to comment
6 minutes ago, #DesTroeyR said:

وين -_- ذا اسهل بكثير

ما عليك غير انك تحط اليوزفل وخلاص

ما تفرق السهوله ولا التعقيد بما ان الواحد يقدر يوصل لهدفه في النهائيه بدون اخطاء او تاثير علي السيرفر

+ لكل واحد طريقه يبرمج بها و ممكن تختلف عن الأخرين

+ ممكن تشوف طريقتي مقعده بس بالنسبه لي سهله و تقلل من سطور المود يعني تقلل من حجمه 

  • Like 3
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...