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
Name | Description |
---|
structure | A structure object describing the building that is ready to perform its special ability. |
Example
Code Block |
---|
theme | Eclipse |
---|
language | javascript |
---|
title | Fire laser satellite when ready |
---|
linenumbers | true |
---|
|
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?
}
}
} |