Scripting/Squirrel/Functions/Vehicle.Remove
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
This function deletes/removes a vehicle.
Syntax
Call
vehicle.Remove();
Example
This example shows how to use a command to remove the car you are driving.
function onPlayerCommand( player, cmd, text )
{
if ( cmd == "removecar" || cmd == "deletecar" )
{
player.Vehicle.Remove() //You can use ".Delete()" too.
}
}
Notes
There is another function that does the same function:
Call onPlayerCommand were used in this example. More info about them in the corresponding pages.