This page is about commenting text in Skript+

To comment a line, you can use this:

@ Comment text

If you want as a statement, you can also use this:

Remark: Comment text

To comment multiple lines, use this:

/*
Comment text
Blah blah
Blah blah
*/

Comments can be nested!

This will also work:

RemarkStart:
Comment text
Hi! This is a comment
RemarkEnd

Example edit

This is a example of a script, with comments:

%x%: 24 @ Declare variable with a value
Remark: Print text
Output: Hello, world!
Output: %x% /* Output the variable, x with a value of 24 */
/* Nested /* comment! */ */
RemarkStart:
Hello
RemarkStart:
Nested!
RemarkEnd
RemarkEnd
@ Another single-line comment!
RemarkStart:
Blah blah
Blah blah
RemarkEnd