Let Macro

From GECK
Jump to: navigation, search

The Let macro is a new scripting feature added by xNVSE 6.1.0.



Let can now be implicitly called using this syntax:

Let Macro Let equivalent
iCount = 10 let iCount := 10
iCount += 10 let iCount += 10
iCount -= 5 let iCount -= 5
iCount *= 5 let iCount *= 5

Using Let this way still enables the use of NVSE Expressions.

See Also