Overview
Activates the special feature of a structure, such as firing laser satellite.Availability
This function was added in Warzone 3.1 Beta 2.
Syntax
var returnValue = activateStructure(structure,target,ability); // or this might sometimes work... var returnValue = activateStructure(structure,{x:xPos,y:yPos},ability);
Parameters
Parameter | Type | Mandatory | Description | Game version |
---|---|---|---|---|
structure | Structure object | The structure that will perform the special action. | 3.1 beta 2 | |
target | Game object {x:xPos, y:yPos} | The target location – usually a game object, but some structures might accept any object with x,y properties. The following structure types require a target:
| 3.1 beta 2 | |
ability | (not yet documented) | 3.2 |
Return value
Value | Type | Description |
---|---|---|
true | Boolean | The structure was activated |
<error> | Error | Something went wrong |
Example
Toast the most recent droid/building that attacked me
var lastAttacker; function eventAttacked(victim,attacker) { lastAttacker = attacker; } function eventStructureReady(structure) { if (structure.stattype == LASSAT) activateStructure(structure,lastAttacker); }
See Also
- structureIdle() – find out if a given structure is ready
- eventStructureReady() – an event that's triggered when a structure is ready for its next command