Scripting/Squirrel/Functions/Vehicle.Remove: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
PerikiyoXD (talk | contribs) (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...") |
PerikiyoXD (talk | contribs) 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. | #<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:
Call onPlayerCommand were used in this example. More info about them in the corresponding pages.