INC(<#var>,[amount])
Increments the specified counter by 1 or by the specified amount
#number = 1 INC(#number) // Outputs 2 LOG(%#number%) INC(#number,3) // Outputs 5 LOG(%#number%)