EH10 Posted March 28, 2014 Share Posted March 28, 2014 السلام عليكم طلب فنكشات Edit 3 كل وحده تكتب لون يعني 255 255 0 باختصار ابي لوحة فيها 3 ايديت تكتب فيهن الون يعني رقم كل فراغ ارقام وتضغط اختيار الون ويجي لون السياره مثل ماخترته مثلا كتبت بالايديت الاول 0 والثاني كتبت 255 والثالث كتبت 0 تجي لون السياره خضراء الون Link to comment
jafar Posted March 28, 2014 Share Posted March 28, 2014 addEventHandler ( "onClientGUIClick", root, function ( ) if source == YourButton then -- اسم الزر local R, G, B = guiGetText ( YourEdit ), guiGetText ( YourEdit2 ), guiGetText ( YourEdit3 ); -- أسماء الإيدت if tonumber ( R ) and tonumber ( G ) and tonumber ( B ) and string.len ( R ) < 4 and string.len ( G ) < 4 and string.len ( B ) < 4 then local vehicle = getPedOccupiedVehicle ( localPlayer ); if vehicle then setVehicleColor ( vehicle, R, G, B ); end end end end ); 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