INDEX

// (remark)


Purpose:

Precedes comments or remarks in script files

Entry:

// line of text
// allows you to enter comments or remarks in the script. It can be entered on its own line or it can be entered after another script statement on the same line. Example:

S3 SENDS SPC . // select Thundergun

Restrictions, notes:

  • At the present time, if you use /**/, // or the [SETUP] block for comments, and then edit the script file with the ThrustMapper, all comments will be stripped out of the file.
  • Comments using // can extend only up to the line break (the end of that line). If you wish to enter a multi-line comment, start each line with a //, or use /**/ for the comment.
  • Any combination of characters can be used following //.
  • A space is required before and after // to separate it from other text on the same line. When used after a statement that has a terminating period ( . ), // must come after the period.
  • /**/ and // are not needed under the [SETUP] section of a script file. Text under the [SETUP] section is treated like a "block" comment that can span multiple lines.


prev home  next