Overview
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
Name | Description |
---|---|
structure | A structure object describing the building that is ready to perform its special ability. |
Example
Fire laser satellite when ready
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? } } }