Scripting/Squirrel/Functions/Object.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
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Syntax

Object.Delete

Arguments

Object - The object instance.

Example

This example will create an object when the script loads and deletes it when it unloads.

function onScriptLoad()
{
   myObject <- CreateObject( 334, 1, Vector( -2261.12, 753.12, 211.123 ),255 );
}

function onScriptUnload()
{
   myObject.Delete();
}

Related Functions