Шаблон:Increment

Материал из Guild Wars 2 wiki
Перейти к: навигация, поиск


Usage

Increments a variable #var:<identifier> by 1. If the variable does not exist, it is initialized to 0.

{{increment|<identifier>}}

Parameters

Unnamed parameter 1
Identifier for the variable. Access the value with {{#var:<identifier>}}.

Example

{{increment|example}}
* The value of example is {{#var:example}}.
{{increment|example|2}}
* The value of example is {{#var:example}}.
{{increment|example|3}}
* The value of example is {{#var:example}}.


  • The value of example is 1.
  • The value of example is 3.
  • The value of example is 6.