Maksoud Posted June 22, 2015 Share Posted June 22, 2015 السلام عليكم و رحمة الله و بركاته شباب انا ابي كود لما اضغط على الزر يخفي الهاد و الرادر و لما اضغط على نفس الزر مرة ثانية يظهرهم ثاني و كود اخر لما اضغط على الزر يخفي اللاعب و لما اضغط على نفس الزر مرة ثانية يظهر اللاعب Link to comment
</Mr.Tn6eL> Posted June 22, 2015 Share Posted June 22, 2015 اخفاء الرادار والهاد setPlayerHudComponentVisible isPlayerHudComponentVisible اخفاء الاعب triggerServerEvent setElementAlpha Link to comment
#StrOnG_,) Posted June 22, 2015 Share Posted June 22, 2015 أاخفاء اللأعب addEventHandler ( "onClientGUIClick", اسم الزر, function () if getElementAlpha(getLocalPlayer()) == 255 then setElementAlpha(getLocalPlayer(), 0) else setElementAlpha(getLocalPlayer(), 255) end end ) اذا تبيه يرجع أضغط على الزر مره ثانية Hud كود أخفاء الـ addEventHandler ("onClientGUIClick",root, function () if (source == اسم الزر) then if isPlayerHudComponentVisible("money") then setPlayerHudComponentVisible ("money", false) else setPlayerHudComponentVisible ("money", true) end end end ) Link to comment
</Mr.Tn6eL> Posted June 22, 2015 Share Posted June 22, 2015 كود اخفاء الاعب بالكلنت وهمي يعني هو يشوف نفسه مختفي لكن الاعبين الثانين يشوفونه زي ماهو ماتغير Link to comment
Maksoud Posted June 22, 2015 Author Share Posted June 22, 2015 اوك ضبط بس من وين الاقي محتويآآت ال Hud لأني جربت بدل money حطيت radar و ضبط بس من وين الاقي محتويات ال Hud Link to comment
Walid Posted June 22, 2015 Share Posted June 22, 2015 اوك ضبط بس من وين الاقي محتويآآت الHud لأني جربت بدل money حطيت radar و ضبط بس من وين الاقي محتويات ال Hud SetPlayerHudComponentVisible Link to comment
#StrOnG_,) Posted June 22, 2015 Share Posted June 22, 2015 اها كنت أعتقد يبيه بس عنده هو .. تفضل كلينت سايد addEventHandler ("onClientGUIClick", getRootElement(), function(button, state, absoluteX, absoluteY) if ( source == اسم الزر ) then triggerServerEvent("buyInvisible",getLocalPlayer()) end end ) سيرفر سايد addEvent("buyInvisible",true) addEventHandler("buyInvisible",root, function() local PlayerMoney = getPlayerMoney(source) if ( PlayerMoney >= 0) then takePlayerMoney(source,0) setElementData(source,"invELM",true) outputChatBox("You Will Be Invisible For 1.5 Minutes", source, 255, 255, 0, true) local name = getPlayerName(source) setElementAlpha(source,0) setPlayerNametagShowing(source, false) setTimer( setElementAlpha, 70000, 1, source, 500, true) setTimer( setPlayerNametagShowing, 70000, 1, source, true, true) setTimer(function () outputChatBox("Invisible Has End !",source, 255, 255, 0, true) setElementData(source,"invELM",false) end,70000,1, true) end end ) الكود من شوب أأاخوي بشر Link to comment
Ahmed.MoataZ Posted June 22, 2015 Share Posted June 22, 2015 elseif ( source == الزر ) then if isPlayerHudComponentVisible("health")then showPlayerHudComponent ( "armour", false ) showPlayerHudComponent ( "health", false ) showPlayerHudComponent ( "money", false ) showPlayerHudComponent ( "clock", false ) showPlayerHudComponent ( "weapon", false ) showPlayerHudComponent ("ammo", false) showPlayerHudComponent ( "money", false ) showPlayerHudComponent ( "wanted", false ) showPlayerHudComponent ( "radar", false ) else showPlayerHudComponent ( "armour", true ) showPlayerHudComponent ( "health", true ) showPlayerHudComponent ( "money", true ) showPlayerHudComponent ( "clock", true ) showPlayerHudComponent ( "weapon", true ) showPlayerHudComponent ("ammo", true) showPlayerHudComponent ( "money", true ) showPlayerHudComponent ( "wanted", true ) showPlayerHudComponent ( "radar", true ) end elseif ( source == الزر2 ) then if ( isChatVisible ( ) ) then showChat ( false ) else showChat ( true ) end end end ) Skype:dvrz.dvrz Link to comment
Simple. Posted June 22, 2015 Share Posted June 22, 2015 elseif ( source == الزر ) thenif isPlayerHudComponentVisible("health")then showPlayerHudComponent ( "armour", false ) showPlayerHudComponent ( "health", false ) showPlayerHudComponent ( "money", false ) showPlayerHudComponent ( "clock", false ) showPlayerHudComponent ( "weapon", false ) showPlayerHudComponent ("ammo", false) showPlayerHudComponent ( "money", false ) showPlayerHudComponent ( "wanted", false ) showPlayerHudComponent ( "radar", false ) else showPlayerHudComponent ( "armour", true ) showPlayerHudComponent ( "health", true ) showPlayerHudComponent ( "money", true ) showPlayerHudComponent ( "clock", true ) showPlayerHudComponent ( "weapon", true ) showPlayerHudComponent ("ammo", true) showPlayerHudComponent ( "money", true ) showPlayerHudComponent ( "wanted", true ) showPlayerHudComponent ( "radar", true ) end elseif ( source == الزر2 ) then if ( isChatVisible ( ) ) then showChat ( false ) else showChat ( true ) end end end ) Skype:dvrz.dvrz ليه كل هالحوسه؟ وبعدين كيف حاط elseif ومافي تحقق اصلن ووين الفنكشن؟ ووين الافنت ؟ -- هذآ لما يضغط على الزر يخفي الهود كامل وإذآ كان مخفي يسوي له إظهار addEventHandler ( "onClientGUIClick", getRootElement(), function () if ( source == الزر ) then if not HuDc then setPlayerHudComponentVisible ( localPlayer, "all", false ) HuDc = true else setPlayerHudComponentVisible ( localPlayer, "all", true ) HuDc = false end end end) Link to comment
</Mr.Tn6eL> Posted June 22, 2015 Share Posted June 22, 2015 كلاسيك بالكلنت مافيه ارقمنت لاعب في طريقة افضل بدال تحققات وحوسة setPlayerHudComponentVisible("all", not isPlayerHudComponentVisible("all")) وهذا مثال للشات showChat(not isChatVisible( )) Link to comment
Simple. Posted June 22, 2015 Share Posted June 22, 2015 معليش لخبطت ض1 addEventHandler ( "onClientGUIClick", getRootElement(), function () if ( source == الزر ) then if not HuDc then setPlayerHudComponentVisible ( "all", false ) HuDc = true else setPlayerHudComponentVisible ( "all", true ) HuDc = false end end end) وإذآ تبي آسهل آستخدم طريقة تنطيل Link to comment
Maksoud Posted June 22, 2015 Author Share Posted June 22, 2015 شكرا للكل بس آخر كود هو الشئ الوحيد الضبط بس شكرا للكل انه حاول يساعدني Link to comment
Maksoud Posted June 22, 2015 Author Share Posted June 22, 2015 اها كنت أعتقد يبيه بس عنده هو .. تفضل كلينت سايد addEventHandler ("onClientGUIClick", getRootElement(), function(button, state, absoluteX, absoluteY) if ( source == اسم الزر ) then triggerServerEvent("buyInvisible",getLocalPlayer()) end end ) سيرفر سايد الكود من شوب أأاخوي بشر حبي انا ابي يكون بالكود اذا ضغط مرة ثانية يظهر اللآعب + اسم اللاعب هذا الكود بعد التعديل -- Server Side addEvent("buyInvisible",true) addEventHandler("buyInvisible",root, function() local PlayerMoney = getPlayerMoney(source) if ( PlayerMoney >= 0) then takePlayerMoney(source,0) outputChatBox("انت الان مختفى", source, 0, 255, 0, true) local name = getPlayerName(source) setElementAlpha(source,0) setPlayerNametagShowing(source, false) end end ) Link to comment
</Mr.Tn6eL> Posted June 23, 2015 Share Posted June 23, 2015 addEvent("buyInvisible",true) addEventHandler("buyInvisible",root, function( ) outputChatBox("انت الان مختفى", source, 0, 255, 0, true) local check = getElementAlpha(source) == 255 setElementAlpha(source, check and 0 or 255) setPlayerNametagShowing(source, check) end) Link to comment
TAPL Posted June 23, 2015 Share Posted June 23, 2015 addEvent("buyInvisible", true) addEventHandler("buyInvisible", root, function() local check = getElementAlpha(source) == 255 outputChatBox(check and "انت الان مختفى" or "انت الان غير مختفي", source, 0, 255, 0, true) setElementAlpha(source, check and 0 or 255) setPlayerNametagShowing(source, not check) end) Link to comment
Maksoud Posted June 23, 2015 Author Share Posted June 23, 2015 addEvent("buyInvisible", true) addEventHandler("buyInvisible", root, function() local check = getElementAlpha(source) == 255 outputChatBox(check and "انت الان مختفى" or "انت الان غير مختفي", source, 0, 255, 0, true) setElementAlpha(source, check and 0 or 255) setPlayerNametagShowing(source, not check) end) شكرآآآآ ضبط Link to comment
Maksoud Posted June 23, 2015 Author Share Posted June 23, 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