Scripting/Squirrel/Functions/Object.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 "== Syntax == <pre>bool Object.Remove</pre> == Arguments == '''> Object''' - The object instance. == Example == This example will create a pickup when the script loads and...")
 
Line 11: Line 11:
This example will create a pickup when the script loads and deletes it when it unloads.
This example will create a pickup when the script loads and deletes it when it unloads.


<pre>function onScriptLoad()
<source lang=squirrel>
function onScriptLoad()
{
{
   myObject <- CreateObject( 334, 1, Vector( -2261.12, 753.12, 211.123 ),255 );
   myObject <- CreateObject( 334, 1, Vector( -2261.12, 753.12, 211.123 ),255 );
Line 20: Line 21:
   myObject.Delete();
   myObject.Delete();
}
}
</pre>

Revision as of 14:50, 9 March 2016

Syntax

bool Object.Remove

Arguments

> Object - The object instance.

Example

This example will create a pickup when the script loads and deletes it when it unloads.

<source lang=squirrel> function onScriptLoad() {

  myObject <- CreateObject( 334, 1, Vector( -2261.12, 753.12, 211.123 ),255 );

}

function onScriptUnload() {

  myObject.Delete();

}