Jump to content

Respawning vehicles from .map


WhoAmI

Recommended Posts

Posted
for _, cars in ipairs( getElementsByType( "vehicle" ) ) do 
 if getElementData( cars, "mapeditor" ) == 1 then 
  respawnVehicle( cars ) 
 end 
end 

Add elementdata in the spawn function for normal vehicles to distinguish.

  • Scripting Moderators
Posted
for _, v in ipairs ( getElementsByType ( "vehicle" ) ) do 
    if getElementID ( v ):find ( "vehicle" ) then 
        respawnVehicle ( v ) 
    end 
end 

?

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