Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt

Register a function to be called when a game object gets destroyed.

 

Syntax

Code Block
themeRDark
languagejavascript
linenumberstrue
bind(functionName, gameObject);

Parameters

ParameterTypeMandatoryDescriptionGame version
functionNameString(tick)The name of the function that should be called immediately before the gameObject is destroyed.3.1 Beta 1
gameObjectGame objects(tick)Any game object, such as a droid, structure or feature.3.1 Beta 1

Return value

ValueTypeDescriptionGame version
undefinedUndefinedIndicates the bind was successful.3.1 Beta 1
<error>ErrorIndicates there was a problem (did you remember to specify functionName as as a string?)3.1 Beta 1

Notes

To detect when your own objects are destroyed, use eventDestroyed() instead.

This function is useful because you can use it on objects owned by other players, and even destroyable features like trees.

Your function will be triggered immediately before the game object is removed from the map.

Example

Code Block
themeRDark
languagejavascript
titleDo something when someObject is destroyed
linenumberstrue
function certainDeath(gameObject) {
  // do stuff
}
 
bind("certainDeath", someObject); // where someObject is any Game Object
Div
classbox notice ping

Removed in Warzone 3.2.

Div
classbox smallstatus
Availability
Status
colourRed
title3.1 b1→3.1.0

Requires:

  • Warzone 3.1 Beta 1 → 3.1.0
  • Removed in 3.2

Later versions:

  • In Warzone 3.2 and above, use eventDestroyed() which is updated to trigger for any object owned by any player.
Div
classbox
Contents

Jump to:

Table of Contents
maxLevel5

Div
classbox

See also

Related articles: