Scripting/Squirrel/Functions/Vehicle.Delete

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
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:

  1. Vehicle.Remove

Call onPlayerCommand were used in this example. More info about them in the corresponding pages.

Related Functions