home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / comm / tempest.lha / aur2.lha / AUR.doc < prev    next >
Text File  |  1993-05-19  |  2KB  |  48 lines

  1. Advanced User Responce   - AUR v2.0
  2. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3.  
  4. 1.  This is a 'Door' program, which allows the sysop to define a full
  5.     set of questions, to be asked of the user.  All input will be recorded
  6.     to a file so you as the Sysop may analyze the responses of your users.
  7. 2.  This program allows the user to define the questions the program will
  8.     ask the users.  These questions are defined in a script type language.
  9.     There are 2 examples supplied with this program.
  10.      a) newuser.app        - questions i ask of new users.
  11.      b) betatester.app     - questions i ask my beta-testers.
  12.      * These files are text file and may be edited with any text editor.
  13. 3.  How to implement.
  14.     1. To ask questions from a new user.
  15.        a) To by pass the internal new user questions, disable it via the
  16.           setup program.
  17.        b) The bbs will then display a text file called. 'Joined.txt'
  18.           Inside that text file add the line.
  19.           ~\Tempest:AUR.mod Tempest:newuser.app
  20.           * this tells the bbs to run this door. Tempest: is where I keep
  21.             my AUR door program, and where I keep the questions file.
  22.             The Answers will be called 'Tempest:NewUser.App.Ans'
  23.     2. To ask questions elsewhere in the BBS.  My examples is how I
  24.        ask questions about Beta-Testing.
  25.        a) [*,*,*,*,*]=BetaTester |T-DOOR|Tempest:Aur Tempest:betatester.app
  26. 4.  You can make as many questions as you want, or as many different ones
  27.     as you want.  However you must conform to the syntax i have shown
  28.     in the examples, or the program may not work the way anticipated.
  29.  
  30.                     Tim
  31.  
  32.  
  33. COMMANDS
  34.   PRINT "Line1|Line2"         <- Print a line of text, '|' indicates a C/R
  35.   TEXT 10                     <- Accept a 10 character input
  36.   NUMBER 2                    <- Get a 2 character number
  37.   GOTO  Label                 <- Jump to the line called Label:
  38.   IF                          <- to do a comparison
  39.   ENDIF                       <- must follow every IF
  40.   PRESET_LEVEL 2              <- Would tell the BBS to give the user account
  41.                                  preset level #2.  All stats will be given
  42.                                  except, time online, that will be adjusted
  43.                                  once they call back.  sorry.
  44.  
  45. The program is not case sensitive.  But to better under stand these commands
  46. please look at the included sample questionaire programs to see how
  47. every command can be used.
  48.