Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Excerpt

Triggered when a new technology has been researched by you or an ally...

 

Overview

The event is also triggered when you gain technology by picking up an artefact (something that an AI cannot currently do, but a human ally can).

Syntax

Code Block
themeRDark
languagejavascript
linenumberstrue
function eventResearched(research

...

, structure

...

An event that is run whenever a new research is available. The structure parameter is set if the research comes from a research lab.

research = what has been completed (specified as a Research Object )

...

) {
  // do stuff
}

Parameters

ParameterTypeMandatoryDescriptionGame version
researchResearch object(tick)An object describing the research that has been completed.3.1
structureStructure object(error)

If the research was completed in one of your labs, this will be the structure object for that RESEARCH lab.

The parameter will be undefined if the research was completed by one of your allies, or gifted via a script, etc.

3.1

Example

Code Block
themeRDark
languagejavascript
titleSet a new research task for the lab that completed current research
linenumberstrue
eventResearched(research, structure) {
  if (structure) pursueResearch(structure, myResearchPath);
}
Div
classbox
Availability
Status
colourGreen
titleStable

Requires:

  • Warzone 3.1 Beta 1 or above
Div
classbox
Contents

Jump to:

Table of Contents
maxLevel5

Div
classbox

See also

Related articles: