// NOTE: The "SEC:" function will spawn CHANGE.EXE (a program that changes
// security levels and places folks in conferences).  The commandline will be
// identical in the first functional beta release....  This will create an 
// real-time environment where responses will dictate what security 
// level/conference(s) the individual should be given.  

I:  @X1Fҷ@X0F
I:  @X1Fǽ  This is a configurable script.  Items preceeded by  Ӷ@X0F
I:  @X1F   an I: will be displayed to standard output but not   @X0F
I:  @X1Fķ the output file                                    Ķ@X0F
I:  @X1FĽ@X0F
I:  @X0E   // Let's set the color to YELLOW for following questions
           // I set the color outside of the questions so that the
           // colorizing string will not be written to the output file

// The Multiple guess option (M:) will allow you to specify what the 
// "only" possible responses will be.  Be sure not to start off two options
// with the same letter.  Each option should be preceeded by a comma.
// All available choices will be added to the question with "()".
//

M:Did you put in your correct name, Yes,No,Maybe
  R:N,REALNAME
  R:M,MAYBE

// Script questions (S:) will simply prompt the user after the question
//
S:What is your age
S:How did you hear about this BBS
S:What kind of activities would you like to see

// It should be noted that only the Multiple Guess options can use a 
// Response option (R:)
//
M:Are you a SYSOP, Yes,No
  R:N,BASIC
  R:Y,SYSOP

S:This is a test right
I:@X8A     // Blinking Green
I:Thanks for filling out the script!
I:@X0F     // Reset color 

END:       // Gotta have this after the basic script stuff so we don't continue
           // on to the following routines.

//
//:::::::::::[ MISC ROUTINES CALLED BY ABOVE SCRIPT FOLLOW  ]:::::::::::::
//

:REALNAME  // Have at least one space or comment after label name
           // or label will not be found; will be fixed in beta release
   S:What is your real name then
   S:Why didn't you use your real name

:MAYBE   // Shouldn't have a maybe option
   S:Maybe won't cut it, what is your real name
   S:Why wasn't you sure (i.e. Maybe)

// NOTE: The file isn't appended to the master file until after all
//       entries are made.  This allows us to change filenames mid-stream
//       using the FILE: script command.

:BASIC   // Normal user gets this one
   FILE:BASIC.USR   // Full Pathnames allowed
   SEC:40  /R3:2,3    // Security level of 40, conf access to 2 and 3

:SYSOP    // Questions for the sysop
   FILE:SYSOP.USR   // Full pathnames allowed
   SEC:100  /R3:1,2,3 // Security level of 100, access to conf 1,2, and 3

   I:@X0D@FIRST@@X0F, need some SYSOP info from you.
   S:What kind of a BBS do you run
   S:What is the name of your BBS
   I:@X0EThanks, let's resume with the script...

:EOF  // Not really required...
