Comment lines are ignored by the SUDS importer, and are there just for your own use.
You add comments to your script by starting the line with a hash/pound (#
) character:
# This is a Comment
# More comments here
NPC: Did you say something?
It doesn't matter how you indent the comment line.
You cannot add comments to the end of other types of lines:
NPC: Oops # THIS IS NOT VALID
Although other languages support this, SUDS does not right now.
The reason is mainly that we reserve the end of lines to append localisation tags, and supporting both trailing line comments and these would over-complicate things.
SUDS also supports using a specialised comment syntax to communicate information to translators. Take a look at the Translator Comments section for more information.