Jump to content

Hud الاصدار الثاني [Update]


Recommended Posts

السلام عليكم ورحمة الله وبركاته

بسم الله الرحمن الرحيم

مطورة hud اليوم جبت لكم نسخة

طبعا يختلف عن النسخة القديمة

المميزات

ازالة الصورة المسيئة للاسلام(انتم تعرفونها)ء

Reload اذا كان سلاحك مافيه رصاص ينبهك ويقلك

اذ دمك قليل يفلشر ><

شريط للاوكسجين

الفلوس اذ كانت اقل من صفر يخلي لونها أحمر

غير مشفر لمن يريد التعلم

صور

جميع الصور تجدها هنا

https://community.multitheftauto.com/in ... w&id=11749

فيديو

التحميل

https://community.multitheftauto.com/ind ... s&id=11749

hudوظائف اذ كنت تريد إخفاء الـ

ضعها في أول سطر في مودك[/center]

setHudComponentVisible -- لأخفاء والإظهار 
isHudComponentVisible -- لأخفاء والإظهار 

client only

syntax

isHudComponentVisible(string component) 

component : القطعة اللي تبي تحقق منها

all : الجميع

ammo : الرصاص

armour : الدرع

health : الدم

clock : الساعة

money : الفلوس

wanted : نجوم الشرطة

weapon : صورة السلاح

breath : التنفس

setHudComponentVisible(string component, bool visible) 

component : القطعة اللي تبي تخفيها/تظهرها

all : الجميع

ammo : الرصاص

armour : الدرع

health : الدم

clock : الساعة

money : الفلوس

wanted : نجوم الشرطة

weapon : صورة السلاح

breath : التنفس

visible : true للإظهار, false للاخفاء

Hud = { } 
for k,v in ipairs({"ammo", "armour", "health", "clock", "money", "wanted", "weapon", "breath"}) do Hud[v] = true end 
function setHudComponentVisible(component, bool) 
    if component == "all" then 
        for k,v in pairs(Hud) do 
            setElementData(localPlayer, "Hud:"..k, bool) 
        end 
    else 
        if Hud[component] then 
            setElementData(localPlayer, "Hud:"..component, bool) 
        end 
    end 
end 
function isHudComponentVisible(component) 
    if component == "all" then 
        local i = 0 
        for k,v in pairs(Hud) do  
            if getElementData(localPlayer, "Hud:"..k) then 
                i = i + 1 
            end 
        end 
        return i == 8 
    else 
        return getElementData(localPlayer, "Hud:"..component) 
    end 
end 

server only

syntax

isHudComponentVisible(player thePlayer, string component) 

player : الاعب

component : القطعة اللي تبي تحقق منها

all : الجميع

ammo : الرصاص

armour : الدرع

health : الدم

clock : الساعة

money : الفلوس

wanted : نجوم الشرطة

weapon : صورة السلاح

breath : التنفس

setHudComponentVisible(player thePlayer, string component, bool visible) 

player : الاعب

component : القطعة اللي تبي تخفيها/تظهرها

all : الجميع

ammo : الرصاص

armour : الدرع

health : الدم

clock : الساعة

money : الفلوس

wanted : نجوم الشرطة

weapon : صورة السلاح

breath : التنفس

visible : true للإظهار, false للاخفاء

Hud = { } 
for k,v in ipairs({"ammo", "armour", "health", "clock", "money", "wanted", "weapon", "breath"}) do Hud[v] = true end 
function setHudComponentVisible(player, component, bool) 
    if isElement(player) and getElementType(player) == "player" then 
        if component == "all" then 
            for k,v in pairs(Hud) do 
                setElementData(player, "Hud:"..k, bool) 
            end 
        else 
            if Hud[component] then 
                setElementData(player, "Hud:"..component, bool) 
            end 
        end 
    end 
end 
function isHudComponentVisible(player, component) 
    if isElement(player) and getElementType(player) == "player" then 
        if component == "all" then 
            local i = 0 
            for k,v in pairs(Hud) do 
                if getElementData(player, "Hud:"..k) then 
                    i = i + 1 
                end 
            end 
            return i == 8 
        else 
            return getElementData(player, "Hud:"..component) 
        end 
    end 
end 

اي مشكلة راسلني خاص

والسلام عليكم

Edited by Guest
Link to comment

hudوظائف اذ كنت تريد إخفاء الـ

ضعها في أول سطر في مودك

setHudComponentVisible -- لأخفاء والإظهار 
isHudComponentVisible -- لأخفاء والإظهار 

client only

syntax

isHudComponentVisible(string component) 

component : القطعة اللي تبي تحقق منها

all : الجميع

ammo : الرصاص

armour : الدرع

health : الدم

clock : الساعة

money : الفلوس

wanted : نجوم الشرطة

weapon : صورة السلاح

breath : التنفس

setHudComponentVisible(string component, bool visible) 

component : القطعة اللي تبي تخفيها/تظهرها

all : الجميع

ammo : الرصاص

armour : الدرع

health : الدم

clock : الساعة

money : الفلوس

wanted : نجوم الشرطة

weapon : صورة السلاح

breath : التنفس

visible : true للإظهار, false للاخفاء

Hud = { } 
for k,v in ipairs({"ammo", "armour", "health", "clock", "money", "wanted", "weapon", "breath"}) do Hud[v] = true end 
function setHudComponentVisible(component, bool) 
    if component == "all" then 
        for k,v in pairs(Hud) do 
            setElementData(localPlayer, "Hud:"..k, bool) 
        end 
    else 
        if Hud[component] then 
            setElementData(localPlayer, "Hud:"..component, bool) 
        end 
    end 
end 
function isHudComponentVisible(component) 
    if component == "all" then 
        local i = 0 
        for k,v in pairs(Hud) do  
            if getElementData(localPlayer, "Hud:"..k) then 
                i = i + 1 
            end 
        end 
        return i == 8 
    else 
        return getElementData(localPlayer, "Hud:"..component) 
    end 
end 

server only

syntax

isHudComponentVisible(player thePlayer, string component) 

player : الاعب

component : القطعة اللي تبي تحقق منها

all : الجميع

ammo : الرصاص

armour : الدرع

health : الدم

clock : الساعة

money : الفلوس

wanted : نجوم الشرطة

weapon : صورة السلاح

breath : التنفس

setHudComponentVisible(player thePlayer, string component, bool visible) 

player : الاعب

component : القطعة اللي تبي تخفيها/تظهرها

all : الجميع

ammo : الرصاص

armour : الدرع

health : الدم

clock : الساعة

money : الفلوس

wanted : نجوم الشرطة

weapon : صورة السلاح

breath : التنفس

visible : true للإظهار, false للاخفاء

Hud = { } 
for k,v in ipairs({"ammo", "armour", "health", "clock", "money", "wanted", "weapon", "breath"}) do Hud[v] = true end 
function setHudComponentVisible(player, component, bool) 
    if isElement(player) and getElementType(player) == "player" then 
        if component == "all" then 
            for k,v in pairs(Hud) do 
                setElementData(player, "Hud:"..k, bool) 
            end 
        else 
            if Hud[component] then 
                setElementData(player, "Hud:"..component, bool) 
            end 
        end 
    end 
end 
function isHudComponentVisible(player, component) 
    if isElement(player) and getElementType(player) == "player" then 
        if component == "all" then 
            local i = 0 
            for k,v in pairs(Hud) do 
                if getElementData(player, "Hud:"..k) then 
                    i = i + 1 
                end 
            end 
            return i == 8 
        else 
            return getElementData(player, "Hud:"..component) 
        end 
    end 
end 
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...