Scripting/Squirrel/Functions/Vehicle.Remove: 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.Remove(); </pre> == Example == This example shows how to use a command to remove the car you are dr...")
 
No edit summary
 
Line 24: Line 24:
There is another function that does the same function:
There is another function that does the same function:


#<code>[[Scripting/Squirrel/Functions/Vehicle.Remove|Vehicle.Delete]]</code>
#<code>[[Scripting/Squirrel/Functions/Vehicle.Delete|Vehicle.Delete]]</code>


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.

Latest revision as of 15:37, 22 April 2016

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:

  1. Vehicle.Delete

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