Other great resources: Official JS API docs, Scripting Forum
eventStructureReady()
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.
Syntax
function eventStructureReady(structure) { // do stuff }
Parameters
Name | Type | Description |
---|---|---|
structure | Structure object | 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? } } }Â
See also
- structureIdle() – you can use this to manually check whether a structure is idle