Scripting/Squirrel/Functions/Vehicle.Delete: Difference between revisions

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
(Created page with "This function deletes/removes a vehicle. == Syntax == Call <pre> vehicle.Delete(); </pre> == Example == This example shows how to use a command to remove the car you are dr...")
 
No edit summary
 
Line 27: Line 27:


Call [[onPlayerCommand]] were used in this example. More info about them in the corresponding pages.
Call [[onPlayerCommand]] were used in this example. More info about them in the corresponding pages.
== Related Functions ==
{{Scripting/Squirrel/Functions/Vehicle_Functions}}
[[Category:Scripting/Squirrel/Functions/Vehicle_Functions]]

Latest revision as of 22:02, 30 January 2017

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