$customHeader
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Overview

Determine if a destroyed structure was demolished by trucks or engineers.

Availability

Warzone 3.1 Beta 1 and above.

Code

// Determine if a STRUCTURE object is being demolished
function wasDemolished(structure) {
  return (!structure.status); // status == 0 if structure was demolished
}

Example

function eventDestroyed(victim) {
  if (victim.type == STRUCTURE && wasDemolished(victim)) {
    playSound("pcv340.ogg"); // demolished
  }
}

See also

  • eventDestroyed() – triggered when one of your game objects is destroyed
  • STRUCTURE – indicates game object type is a structure
  • .status – structure construction status
  • No labels