Jump to content

سؤال


Recommended Posts

قصدك color picker ?

اذ هو استعمل

حمل المود وشغله

https://community.multitheftauto.com/in ... ls&id=3247

مثال

للفتح

exports.cpicker:openPicker(localPlayer, "#ff0000", "vehicle color") 

للاغلاق

exports.cpicker:closePicker(localPlayer) 

الافنت onColorPickerOK

يشتغل الحدث اذا ضغط ok

addEventHandler("onColorPickerOK", root, function(_, hex, r, g, b) 
    outputChatBox("Your Color Is : "..string.format("hex:%s RGB:%d,%d,%d", hex, r, g, b)) 
end) 

الافنت onColorPickerChange

يشتغل الحدث اذا الاعب يختار لون

addEventHandler("onColorPickerChange", root, function(vehicle, _, r, g, b) 
    setVehicleColor(vehicle, r, g, b) 
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...