mr.ekoo Posted May 22, 2013 Share Posted May 22, 2013 السلام عليكم انا ابحث عن اكواد التحكم باضواء السيارة كلها ياريت الاكواد من الويكي لاني دورت ومالقيت يعني مثل تشغيل الاضواء الامامية تشغيل الاضواء الجانبية والخ .. Link to comment
iPrestege Posted May 22, 2013 Share Posted May 22, 2013 : قصدك انك تبي كود واحد يشغل كلها ؟ ذذ for Prestege = 0,3 do setVehicleLightState ( vehicle , Prestege , 1 ) end Link to comment
mr.ekoo Posted May 22, 2013 Author Share Posted May 22, 2013 مشكور اخوي بريستيج بس كيف انا ابغي اشغل اضواء محددة كيف اعرف ارقمها واحطها ؟ Link to comment
iPrestege Posted May 22, 2013 Share Posted May 22, 2013 Wiki :light: A whole number determining the individual light. (0 - 3) state: A whole number determining the new state of the light. 0 represents normal lights, and 1 represents broken lights. https://wiki.multitheftauto.com/wiki/SetVehicleLightState Link to comment
mr.ekoo Posted May 22, 2013 Author Share Posted May 22, 2013 مافهمت منه شيئ اخوي ياريت لو تقولي ارقام الاضواء ؟؟ Link to comment
iPrestege Posted May 22, 2013 Share Posted May 22, 2013 جرب انت من 0 الى 3 الانوار و من 0 - 1 تشغيل ايقاف Link to comment
mr.ekoo Posted May 22, 2013 Author Share Posted May 22, 2013 بس اخوي وين اختار 1 او 2 او 3 Link to comment
iPrestege Posted May 22, 2013 Share Posted May 22, 2013 setVehicleLightState ( vehicle,0-3,0-1 ) :') Link to comment
mr.ekoo Posted May 22, 2013 Author Share Posted May 22, 2013 اخوي هذا كودي function rtll() setVehicleLightState ( vehicle,1,1 ) end function ltrl() setVehicleLightState ( vehicle,1,0 ) end -- نقوم بإضافة الأمر bindKey ( "m", "down", rtll ) bindKey ( "n", "down", ltrl ) مو شغال فيه اي خطاء ؟ Link to comment
iPrestege Posted May 22, 2013 Share Posted May 22, 2013 vehicle = ? ماهي معرفة عرفها : getPedOccupiedVehicle Link to comment
Booo Posted May 22, 2013 Share Posted May 22, 2013 عميل vehicle = getPedOccupiedVehicle(getLocalPlayer()) function rtll() if vehicle then setVehicleLightState ( vehicle,1,1 ) end end function ltrl() if vehicle then setVehicleLightState ( vehicle,1,0 ) end end -- نقوم بإضافة الأمر bindKey ( "m", "down", rtll ) bindKey ( "n", "down", ltrl ) Link to comment
AhmeD~9MoD Posted May 23, 2013 Share Posted May 23, 2013 جرب Car = { } addEvent("Lights",true) addEventHandler("Lights",getRootElement(), function ( State ) Car[source] = getPedOccupiedVehicle( source ) if ( Car[source] ) then if ( State == "On" ) then for i = 0,3 do if ( getVehicleLightState ( Car[source],i ) == 0 ) then return outputChatBox("مصباح السيارة مفتوح مسبقاً",source) end end for i = 0,3 do setVehicleLightState( Car[source],i,0 ) end elseif ( State == "Off" ) then for i = 0,3 do if ( getVehicleLightState ( Car[source],i ) == 1 ) then return outputChatBox("مصباح السيارة مفتوح مسبقاً",source) end end for i = 0,3 do setVehicleLightState( Car[source],i,1 ) end end end end ) bindKey ( "m", "down", On ) bindKey ( "n", "down", Off ) مجربنه على مودي حق الأضواء Link to comment
iMr.Dawix~# Posted May 23, 2013 Share Posted May 23, 2013 نفس الشيئ مو شغال تأكد انك حاط كود بوو كلنت مو سيرفر عميل vehicle = getPedOccupiedVehicle(getLocalPlayer()) function rtll() if vehicle then setVehicleLightState ( vehicle,1,1 ) end end function ltrl() if vehicle then setVehicleLightState ( vehicle,1,0 ) end end -- نقوم بإضافة الأمر bindKey ( "m", "down", rtll ) bindKey ( "n", "down", ltrl ) Link to comment
mr.ekoo Posted May 23, 2013 Author Share Posted May 23, 2013 متاكد انه كلاينكت + جربت سيرفر كمان وجربت كود AhmedSmood مو شغال وجربته كلينكت وسيرفر Link to comment
AhmeD~9MoD Posted May 23, 2013 Share Posted May 23, 2013 متاكد انه كلاينكت + جربت سيرفر كمانوجربت كود AhmedSmood مو شغال وجربته كلينكت وسيرفر debugscript 3 ?? Link to comment
AhmeD~9MoD Posted May 23, 2013 Share Posted May 23, 2013 انصحك تسوي نافذة فيها زرين , اطفاء النور تشغيل النور ثم عدل على كودي Server Side ! Car = { } addEvent("Lights",true) addEventHandler("Lights",getRootElement(), function ( State ) Car[source] = getPedOccupiedVehicle( source ) if ( Car[source] ) then if ( State == "On" ) then for i = 0,3 do if ( getVehicleLightState ( Car[source],i ) == 0 ) then return outputChatBox("مصباح السيارة مفتوح مسبقاً",source) end end for i = 0,3 do setVehicleLightState( Car[source],i,0 ) end elseif ( State == "Off" ) then for i = 0,3 do if ( getVehicleLightState ( Car[source],i ) == 1 ) then return outputChatBox("مصباح السيارة مفتوح مسبقاً",source) end end for i = 0,3 do setVehicleLightState( Car[source],i,1 ) end end end end ) إذا بأزرار لازم ترايقر triggerServerEvent("Lights",localPlayer,"On") -- ترايقر تشغيل النور triggerServerEvent("Lights",localPlayer,"Off") -- ترايقر إطفاء النور أتمنى اني افدتك Link to comment
iPrestege Posted May 24, 2013 Share Posted May 24, 2013 اطرح اخر كود جربتة ؟! بـ حيث نقدر نساعدكـ ونعآونكـ .. . 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