Other great resources: Official JS API docs, Scripting Forum
countStruct()
- Aubergine
Owned by Aubergine
Count the number of structures of a given type...
Â
Syntax
var numStructs = countStruct(structureID[, player]);
Parameters
Parameter | Type | Mandatory | Notes | Game Version |
---|---|---|---|---|
structureID | String | The ID of the structure type to count. | 3.1.0 | |
player | Number Constant | Which player(s) should the structures be counted for? You can specify a specific player ID, or one of the following constants:
Default: me | 3.1.0 |
Return value
Value | Type | Notes | Warzone Version |
---|---|---|---|
<number> | Number | The number of structures of the specified type for the specified player(s). | 3.1.0 |
<error> | Error | An error occurred, most likely you used an unsupported structureID or the specified player does not exist. | 3.1.0 |
Notes
Does not count off-world structures (use enumStructOffWorld() to list those).
Example
Â
Â
This function is significantly faster than using enumStruct() and inspecting the .length property of the returned array, because countStruct() is referencing an existing value within the game engine and just returning that value.
Availability 3.1.0+
Requires:
- Warzone 3.1.0 and above
Contents
Jump to:
See also
Related articles:
- enumStruct() – return a list of structure objects for matching structuers
- countDroid() – count number of droids of given type
- isStructureAvailable() – quickly work out if a structure can be built
- getStructureLimit() – determine limits for a given type of structure
Â