Jump to content

xX[مساعدة في مود الفيب 3]Xx


Doffy

Recommended Posts

Just now, Abu-Solo said:

تلوين عشوائي يعني؟

يخوي شكلك ما فهمتني الي هي لوحة اختيار لون للسيارة الي موجود بأف1 الفري روم ابيها تفتح اول ما اضغط علي زر

Link to comment
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

 ابي اول ما اللاعب يضغط علي زر يخليله لون السيارة احمر والباقي انا اسويه وما ينفع يغير اي لون سيارة غير الي الايدي حقها 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

انت بكذا تغير لون الايدي , فـ بيقولك خطأ

سويته لك يغير لون اي سياره تركبها

addEvent("red",true)
addEventHandler("red",root,
function()
    local theVehicle = getPedOccupiedVehicle ( client )
    if ( theVehicle ) then
    	setVehicleColor ( theVehicle, 255,0,0) 
    end
end)

 

Link to comment
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

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...