Doffy Posted January 26, 2017 Share Posted January 26, 2017 أبي الاكواد حقت لوحة اختيار لون للسيارة الي هي اول ما يضغط علي زر تجيه Link to comment
Doffy Posted January 26, 2017 Author Share Posted January 26, 2017 Just now, Abu-Solo said: تلوين عشوائي يعني؟ يخوي شكلك ما فهمتني الي هي لوحة اختيار لون للسيارة الي موجود بأف1 الفري روم ابيها تفتح اول ما اضغط علي زر Link to comment
Abu-Solo Posted January 26, 2017 Share Posted January 26, 2017 تعلم من اكواد الفري روم وراح تستفيد Link to comment
Doffy Posted January 26, 2017 Author Share Posted January 26, 2017 1 minute ago, Abu-Solo said: تعلم من اكواد الفري روم وراح تستفيد يخوي ارسلها ليه باله Link to comment
Doffy Posted January 26, 2017 Author Share Posted January 26, 2017 1 minute ago, Deativated said: قصدك colorpicker ؟ يب بلظبط Link to comment
Adham Posted January 26, 2017 Share Posted January 26, 2017 ذا ملف ب جواء كود هاته من الفري روم. Link to comment
Doffy Posted January 26, 2017 Author Share Posted January 26, 2017 1 minute ago, #_iMr,[E]coo said: setVehicleColor يخوي انا قصدي علي colorpicker Link to comment
Doffy Posted January 26, 2017 Author Share Posted January 26, 2017 Just now, #_iMr,[E]coo said: مشكلتك ودك جاهز لاني ما رح اقدر اسويه ف حالتي هاذي Link to comment
Adham Posted January 26, 2017 Share Posted January 26, 2017 قلتلك فوق هذا ملف خدو من مود فري روم .! Link to comment
^iiEcoo'x_) Posted January 26, 2017 Share Posted January 26, 2017 bool setVehicleColor ( vehicle theVehicle, int r1, int g1, int b1) vehicle theVehicle = السيارة الي تبي تلونها int r1 = الون الاحمر int g1 = الون الاخضر int b1 = الون الازرق Link to comment
Doffy Posted January 26, 2017 Author Share Posted January 26, 2017 Just now, Deativated said: قلتلك فوق هذا ملف خدو من مود فري روم .! هذا هو يخوي جبته بس موب شغال + جبت ملف ال colorpicker lua و جبت الصور وكل شي وركبتهم هذولي الاكواد عدلت عليهم شوي بس مو شغالين برضو ذي addEventHandler("onClientGUIClick",root, function () if ( source == GUIEditor.button[3] ) then local vehicle = getPedOccupiedVehicle() if not vehicle then return end local colors = { getVehicleColor(vehicle) } local args = {} for i=1,12 do colors[i] = args[i] and tonumber(args[i]) or colors[i] end server.setVehicleColor(vehicle, unpack(colors)) end addCommandHandler('color') addCommandHandler('cl') function openColorPicker() editingVehicle = getPedOccupiedVehicle(localPlayer) if (editingVehicle) then colorPicker.openSelect(colors) end end function closedColorPicker() local r1, g1, b1, r2, g2, b2, r3, g3, b3, r4, g4, b4 = getVehicleColor(editingVehicle, true) server.setVehicleColor(editingVehicle, r1, g1, b1, r2, g2, b2, r3, g3, b3, r4, g4, b4) local r, g, b = getVehicleHeadLightColor(editingVehicle) server.setVehicleHeadLightColor(editingVehicle, r, g, b) editingVehicle = nil end function updateColor() if (not colorPicker.isSelectOpen) then return end local r, g, b = colorPicker.updateTempColors() if (editingVehicle and isElement(editingVehicle)) then local r1, g1, b1, r2, g2, b2, r3, g3, b3, r4, g4, b4 = getVehicleColor(editingVehicle, true) if (guiCheckBoxGetSelected(checkColor1)) then r1, g1, b1 = r, g, b end if (guiCheckBoxGetSelected(checkColor2)) then r2, g2, b2 = r, g, b end if (guiCheckBoxGetSelected(checkColor3)) then r3, g3, b3 = r, g, b end if (guiCheckBoxGetSelected(checkColor4)) then r4, g4, b4 = r, g, b end if (guiCheckBoxGetSelected(checkColor5)) then setVehicleHeadLightColor(editingVehicle, r, g, b) end setVehicleColor(editingVehicle, r1, g1, b1, r2, g2, b2, r3, g3, b3, r4, g4, b4) end end end ) Link to comment
iPrestege Posted January 26, 2017 Share Posted January 26, 2017 اخر مود لي حق useful panel افتحه وتعلم منه موجوده الخاصيه فيه 2 Link to comment
Abu-Solo Posted January 27, 2017 Share Posted January 27, 2017 10 hours ago, iPrestege said: اخر مود لي حق useful panel افتحه وتعلم منه موجوده الخاصيه فيه http://up.top4top.net/downloadf-314rpeiw1-zip.html Link to comment
Doffy Posted January 27, 2017 Author Share Posted January 27, 2017 ابي اول ما اللاعب يضغط علي زر يخليله لون السيارة احمر والباقي انا اسويه وما ينفع يغير اي لون سيارة غير الي الايدي حقها 411 محاولتي كلنت سايد addEventHandler ( 'onClientGUIClick',root, function () if ( source == GUIEditor.button[1] ) then triggerServerEvent("red", localPlayer ) guiAntiFlood(GUIEditor.button[1],500) end end ) سيرفر سايد addEvent("red",true) addEventHandler("red",root, function() setVehicleColor ( 411, 255,0,0) end) Link to comment
!#NssoR_) Posted January 27, 2017 Share Posted January 27, 2017 انت بكذا تغير لون الايدي , فـ بيقولك خطأ سويته لك يغير لون اي سياره تركبها addEvent("red",true) addEventHandler("red",root, function() local theVehicle = getPedOccupiedVehicle ( client ) if ( theVehicle ) then setVehicleColor ( theVehicle, 255,0,0) end end) Link to comment
Doffy Posted January 27, 2017 Author Share Posted January 27, 2017 1 minute ago, !#NssoR_) said: انت بكذا تغير لون الايدي , فـ بيقولك خطأ سويته لك يغير لون اي سياره تركبها addEvent("red",true) addEventHandler("red",root, function() local theVehicle = getPedOccupiedVehicle ( client ) if ( theVehicle ) then setVehicleColor ( theVehicle, 255,0,0) end end) طيب ما ينفع اخليه ل ايدي محدد بس ؟ Link to comment
^iiEcoo'x_) Posted January 27, 2017 Share Posted January 27, 2017 هو فيلم هذا له تجزاء ؟ Link to comment
Doffy Posted January 27, 2017 Author Share Posted January 27, 2017 Just now, #_iMr,[E]coo said: هو فيلم هذا له تجزاء ؟ مدري ض1 بس كذا يعني Link to comment
!#NssoR_) Posted January 27, 2017 Share Posted January 27, 2017 تقدر تتحقق من ايدي الموتر بإستخدام getElementModel 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