Versions Compared

Key

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

Overview

Excerpt

This event is triggered when a structure is ready to perform its special ability.

Currently, this only applies to the Laser Satellite Command Post, indicating that your next laser strike is available.

Each time the building is ready to perform its ability, this event will be fired once.

Parameters

NameDescription
structureA structure object describing the building that is ready to perform its special ability.

Example

Code Block
themeEclipse
languagejavascript
titleFire laser satellite when ready
linenumberstrue
function findTarget() {
  // do something here to find a target
  return targetObject;
}
 
function eventStructureReady(structure) {
  switch (structure.stattype) {
    case LASSAT: {
      // fire laser satellite
      activateStructure(structure,findTarget());
      break;
    }
    default: {
      // uhm, panic?
    }
  }
}