INC(<#var>,[amount])

Category
Variables
Added in
v0.8.2

Increments the specified counter by 1 or by the specified amount

Example

#number = 1

INC(#number)
// Outputs 2
LOG(%#number%)

INC(#number,3)
// Outputs 5
LOG(%#number%)