Just a low-priority discrepency in your /help comments section: "You can place comments anywhere in a script, they are ignored during processing." Perhaps it'd be a good idea to rewrite this for a future version...

From
Quote:
You can add comments to your scripts by using the ; semi-colon at the start of a line, or /* and */ to enclose text.

;This is a comment

/*
This is a comment
*/

You can place comments anywhere in a script, they are ignored during processing.


To
Quote:
You can add comments to your scripts by using the ; semi-colon for single line comments, or /* and */ to enclose multiple lines of text. You can place comments anywhere in a script, providing they begin and end on their own line. Comments are ignored during processing.

;This is a comment

/*
This is a comment
*/

Last edited by s00p; 03/09/09 09:08 AM.