Jump to content

طلب آستفسآر : آبي موتر


Recommended Posts

آلسلام عليكم

 

آنآ آبي آسوي لو آحد دخل آلمآركر يجيله سيآرة آيدي 1 ولو دخل تآني يجيله 2 - يجيله سيآرآت عشوآئية يعني من آلي محددهآ

vehicleIDS = { 602, 545, 496, 517, 401 }

Vehicles = {}

VehicleM = createMarker ( -3231.28198,-3095.21338,5.00000, "cylinder", 3, 255, 0, 0, 255 )
ColorM = createMarker ( 1835,894,11, "cylinder", 3, 0, 255, 0, 255 )

addEventHandler( "onMarkerHit", root,
    function ( hitElement )
        if source == VehicleM and getElementType( hitElement ) == "player" then
            if Vehicles[hitElement] and getElementType( Vehicles[hitElement] ) == "vehicle" then
                destroyElement( Vehicles[hitElement] )
            end
            local x,y,z = getElementPosition( hitElement )
            Vehicles[hitElement] = createVehicle ( 541, x, y, z )
            if Vehicles[hitElement] then
                warpPedIntoVehicle( hitElement, Vehicles[hitElement] )
                outputChatBox( "تم آخذ سيآرة", hitElement,255,0,255,true)
            end
        elseif source == ColorM and getElementType( hitElement) == "player" and isPedInVehicle( hitElement ) then
            local player = getPedOccupiedVehicle( hitElement )
            setVehicleColor( player, math.random(255), math.random(255), math.random(255) )
            outputChatBox( "تم تلوين سيآرتك",255,0,255,true)
        end
    end
)
 
addEventHandler( "onVehicleExplode", root,
    function( )
        setTimer( destroyElement, 2000, 1, source )
    end
)
 
addEventHandler( "onPlayerQuit", root,
    function( )
        if Vehicles[source] then
            destroyElement( Vehicles[source] )
        end
    end
)

 

آنآ سويت آلسيآرآت فوق بآول سطر - آبي آنه لو دخل يآخد سيآرة منهم آي وآحدة عشوآئي كيف ؟

Link to comment
1 hour ago, Mr.Mostafa said:

آلسلام عليكم

 

آنآ آبي آسوي لو آحد دخل آلمآركر يجيله سيآرة آيدي 1 ولو دخل تآني يجيله 2 - يجيله سيآرآت عشوآئية يعني من آلي محددهآ

vehicleIDS = { 602, 545, 496, 517, 401 }

Vehicles = {}

VehicleM = createMarker ( -3231.28198,-3095.21338,5.00000, "cylinder", 3, 255, 0, 0, 255 )
ColorM = createMarker ( 1835,894,11, "cylinder", 3, 0, 255, 0, 255 )

addEventHandler( "onMarkerHit", root,
    function ( hitElement )
        if source == VehicleM and getElementType( hitElement ) == "player" then
            if Vehicles[hitElement] and getElementType( Vehicles[hitElement] ) == "vehicle" then
                destroyElement( Vehicles[hitElement] )
            end
            local x,y,z = getElementPosition( hitElement )
            Vehicles[hitElement] = createVehicle ( 541, x, y, z )
            if Vehicles[hitElement] then
                warpPedIntoVehicle( hitElement, Vehicles[hitElement] )
                outputChatBox( "تم آخذ سيآرة", hitElement,255,0,255,true)
            end
        elseif source == ColorM and getElementType( hitElement) == "player" and isPedInVehicle( hitElement ) then
            local player = getPedOccupiedVehicle( hitElement )
            setVehicleColor( player, math.random(255), math.random(255), math.random(255) )
            outputChatBox( "تم تلوين سيآرتك",255,0,255,true)
        end
    end
)
 
addEventHandler( "onVehicleExplode", root,
    function( )
        setTimer( destroyElement, 2000, 1, source )
    end
)
 
addEventHandler( "onPlayerQuit", root,
    function( )
        if Vehicles[source] then
            destroyElement( Vehicles[source] )
        end
    end
)

 

آنآ سويت آلسيآرآت فوق بآول سطر - آبي آنه لو دخل يآخد سيآرة منهم آي وآحدة عشوآئي كيف ؟

سويته , شكرآ لكم ^

Link to comment
32 minutes ago, killerProject said:

ذذ .. اذا كان لك استفسارات خاصة وفيها اكواد استعمل معها التاج الخاص بإسم اللغة لتسهيل عرضه

 

بالتوفيق

يب آعرف آلتآج - بس آنآ كنت قآصد آكتبهآ بدون تآج عشآن آحدد علي آلآيدي آلخآص بآلسيآرة عشآن آلمبرمج آلي بيسآعدني يفهم

 

زي كذآ

عمومآ شكرآ لك :) 

Link to comment
12 hours ago, Mr.Mostafa said:

زي كذآ

هذا مو تاج

شيك ع هذا الموضوع اول

 

 vehicleIDS = { 602, 545, 496, 517, 401 }

Vehicles = {}

VehicleM = createMarker ( -3231.28198,-3095.21338,5.00000, "cylinder", 3, 255, 0, 0, 255 )
ColorM = createMarker ( 1835,894,11, "cylinder", 3, 0, 255, 0, 255 )

addEventHandler( "onMarkerHit", root,
    function ( hitElement )
        if source == VehicleM and getElementType( hitElement ) == "player" then
            if Vehicles[hitElement] and getElementType( Vehicles[hitElement] ) == "vehicle" then
                destroyElement( Vehicles[hitElement] )
            end
            local x,y,z = getElementPosition( hitElement )
            Vehicles[hitElement] = createVehicle ( math.random ( tonumber(vehicleIDS) ), x, y, z )
            if Vehicles[hitElement] then
                warpPedIntoVehicle( hitElement, Vehicles[hitElement] )
                outputChatBox( "تم آخذ سيآرة", hitElement,255,0,255,true)
            end
        elseif source == ColorM and getElementType( hitElement) == "player" and isPedInVehicle( hitElement ) then
            local player = getPedOccupiedVehicle( hitElement )
            setVehicleColor( player, math.random(255), math.random(255), math.random(255) )
            outputChatBox( "تم تلوين سيآرتك",255,0,255,true)
        end
    end
)
 
addEventHandler( "onVehicleExplode", root,
    function( )
        setTimer( destroyElement, 2000, 1, source )
    end
)
 
addEventHandler( "onPlayerQuit", root,
    function( )
        if Vehicles[source] then
            destroyElement( Vehicles[source] )
        end
    end
) 

جرب

Link to comment
5 hours ago, Mr.Mostafa said:

آقصد آحدد بس

طيب زي كذا محد رح يفهم لأن الاكواد ملخبطه اذا تبيه يفهم على شي تقدر تسوي كذا

Vehicles[hitElement] = createVehicle ( math.random ( tonumber(vehicleIDS) ), x, y, z ) -- انشاء السيارة

 

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