Jump to content

تصحيح كود


MrCor

Recommended Posts

بسم الله الرحمن الرحيم

اليوم سويت كود بس طلع غلط ما يشتغل و حاولت حل شي و هذا الكود شوفوه

marker1 = createMarker(1544.7, -1721.4, 13.55, 'cylinder', 5, 255, 0, 0, 150) 
Ped1 = createPed ( 280, 1544.7, -1721.4, 13.55 ) 
attachElements ( marker1, Ped1, 0, 0, -1 ) 
  
function MarkerHit( hitElement, matchingDimension ) 
    local elementType = getElementType( hitElement ) 
    if isPedInVehicle ( thePlayer ) then 
        if getPlayerTeam ( thePlayer ) == getTeamFromName ( "police" ) then         
    setPedAnimation( ped1, "ped", "CopTraf_Come") 
end 
     end 
addEventHandler( "onMarkerHit", marker1, MarkerHit ) 

عمل الكود :

بيد أذا أحد تقرب منه بسياره و شرطي يسوي أنميشن

Link to comment
تبيه اذا احد قرب للماركر يعطيك ساره ولا وش

أنت شوف الكود وبتفهم !

أنا أبيه اذا أحد قرب من البيد و كان عنده سياره و من تيم معين يسوي البيد أنميشن

Link to comment
    marker1 = createMarker ( 1544.7, -1721.4, 13.55, 'cylinder', 5, 255, 0, 0, 150 ) 
    Ped1 = createPed ( 280, 1544.7, -1721.4, 13.55 ) 
    attachElements ( marker1, Ped1, 0, 0, -1 ) 
      
    function MarkerHit ( hitElement, matchingDimension ) 
        if ( getElementType ( hitElement ) == "player" and isPedInVehicle ( hitElement ) ) then 
            if ( getPlayerTeam ( hitElement ) == getTeamFromName ( "police" ) ) then 
                setPedAnimation ( ped1, "ped", "CopTraf_Come" ) 
            end 
        end 
    end 
    addEventHandler ( "onMarkerHit", marker1, MarkerHit ) 

المطلوب الآن معرفة الخطأ لأن البيد لا يظهر

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