Scripting/Squirrel/Functions/Object.Delete

From Vice City Multiplayer
Revision as of 14:11, 14 August 2016 by Anik (talk | contribs) (Edited it cuz there were some mistakes in the script)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

Syntax

Object.Delete

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();

}