Jump to content

اكواد التحكم باضواء السيارة


Recommended Posts

السلام عليكم

انا ابحث عن اكواد التحكم باضواء السيارة كلها

ياريت الاكواد من الويكي

لاني دورت ومالقيت

يعني مثل تشغيل الاضواء الامامية

تشغيل الاضواء الجانبية والخ ..

Link to comment

اخوي هذا كودي

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

عميل

  
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

جرب :roll:

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 ) 

مجربنه على مودي حق الأضواء :wink:

Link to comment
نفس الشيئ مو شغال

تأكد انك حاط كود بوو كلنت مو سيرفر

عميل

  
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

انصحك تسوي نافذة فيها زرين ,

اطفاء النور

تشغيل النور

ثم عدل على كودي :D

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

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