Multi-line comments

From GECK
Jump to: navigation, search

Multi-line comments are a new scripting feature added by xNVSE 6.1.7.


It is now possible to use multi-line comment operators to comment out multiple lines or whole blocks of scripts at once.
/* marks the beginning of a comment and */ marks the end of it.

Before

; This line is a comment
; As you can see,
; It is quite tedious...
; ... to comment out a bunch of lines like this.

After

/* This whole block
is a comment
It can be of any length */