Jump to content

اذا طلع سيارة ينفذ امر


Recommended Posts

local vehicle = createVehicle(.....); 
setElementData(vehicle,"Created",true); 
  
addCommandHandler("...", 
    function ( ) 
        if getElementData(vehicle,"Created") == true then return outputChatBox("* Data Found!",root,255,255,0,true); end; 
end 
); 

اها يعطيك العافيهه,الحين فهمتت,,

Link to comment

حآولت كذآ

Car = createMarker(...); 
function anti() 
for _,c in ipairs(getElementType("vehicle")) do 
destroyElement(c) 
      end 
end 
addEventHandler("onClientMarkerHit",Car,anti) 

لكن مآ نفع, عندي مكان بالبحر مابي السيارة تجي فيه سويت ماركر مخفي

Link to comment

-- Server Side !

Car = createMarker ( ... ) 
  
addEventHandler ( "onMarkerHit", Car, 
    function ( theElement ) 
        if ( getElementType ( theElement ) == "vehicle" ) then 
            destroyElement ( theElement ) 
        end 
    end, false 
) 

Edited by Guest
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...