Enable or disable the design tool...

 

Syntax

setDesign(enable);

Parameters

ParameterTypeMandatoryDescriptionGame version
enableBoolean(error)

Should the design tool be enabled?

  • true – yes, enable the design tool
  • false – no, disable the design tool

Default: false

3.1 Beta 1

Return value

ValueTypeDescriptionGame version
undefinedUndefinedThe function always returns undefined3.1 Beta 1

Notes

This function only affects the user interface for the localhost human player, it does not affect AIs in any way. That being said, AIs should avoid using new droid templates if they don't have a HQ if possible.

Enabling or disabling the design tool automatically shows or hides (as applicable) the DESIGN reticule button:

Example

function eventStructureBuilt(structure) {
  if (structure.stattype == HQ) setDesign(true);
}
function eventDestroyed(gameObj) {
  if (gameObj.type==STRUCTURE && gameObj.stattype==HQ) setDesign(false);
}

Standard game rules require that the design tool is only enabled while the player has a HQ.

Availability

Requires:

  • Warzone 3.1 Beta 1 or above
Contents

Jump to:

See also

Related articles:

Game mods:

  • Structures by Design – ability to design base defence structures in the same way droids are designed.