</Mr.Tn6eL> Posted July 12, 2015 Share Posted July 12, 2015 (edited) السلام عليكم ورحمة الله وبركاته بسم الله الرحمن الرحيم مطورة 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 July 13, 2015 by Guest Link to comment
</Mr.Tn6eL> Posted July 12, 2015 Author Share Posted July 12, 2015 Uploaded Video ... Link to comment
#|_oskar_|# Posted July 12, 2015 Share Posted July 12, 2015 كفو ولله ع هيك مود مرتب وكل شئ فيه حلو واحسن شئ ان ينبهك وقت يخلص السلاح والفلشر Link to comment
MoDeR2014 Posted July 12, 2015 Share Posted July 12, 2015 Hud جميل ومميز مبدع دائماً ي تنطيل تقبل مروري Link to comment
</Mr.Tn6eL> Posted July 12, 2015 Author Share Posted July 12, 2015 Nice Script .. كفو ولله ع هيك مودمرتب وكل شئ فيه حلو واحسن شئ ان ينبهك وقت يخلص السلاح والفلشر Hud جميل ومميزمبدع دائماً ي تنطيل تقبل مروري منورين Link to comment
</Mr.Tn6eL> Posted July 12, 2015 Author Share Posted July 12, 2015 مبدع بطريقة غريبة منور اخي الكريم Link to comment
Jupi Posted July 12, 2015 Share Posted July 12, 2015 مبدع بطريقة غريبة منور اخي الكريم بنورك Link to comment
Mr.R Posted July 13, 2015 Share Posted July 13, 2015 مشاء الله عليك ياتنطيل دايماً مبدع , $ مشاء الله عليك نبي اصدار ثالث يالاممير <3 Link to comment
</Mr.Tn6eL> Posted July 13, 2015 Author Share Posted July 13, 2015 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
a7zan Posted July 15, 2015 Share Posted July 15, 2015 ابداع , حلو لما ينبهك ان مافي رصاص موفق ^,^ Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now