Scripting/Squirrel/Functions/Vehicle.Delete
This wiki is using an old backup from 2020
Some information may be old/missing
This function deletes/removes a vehicle.
Syntax
Call
vehicle.Delete();
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.Delete() //You can use ".Remove()" 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.