home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / RBBSV101.ZIP / RBBSV101.EXE / MACROS.LST < prev    next >
Encoding:
File List  |  1993-07-20  |  3.3 KB  |  75 lines

  1.                     RBBS-VERIFY MACRO LANGUAGE CODE REFERENCE
  2.                     ─────────────────────────────────────────
  3.  
  4. The  following  is a listing of the "@" macro code language commands  that the
  5. RBBS-Verify online  door supports,  these may be used  when creating  your own
  6. custom  door instruction files,  they may also be used in the  optional LOGOFF
  7. and  LOGOFFG display files.  Using RBBS-Verify's macro language commands  will
  8. allow  you to change display colors,  send a bell to the user,  display  board
  9. information and more.  There may be multiple macro commands  on a single line.
  10. Please   note  when  using  macro  language  codes,  it  may  take  a   little
  11. experimenting to get the desired display output.
  12.  
  13.  MACRO COMMANDS MUST BE ENTERED IN UPPERCASE ONLY IN ORDER TO WORK CORRECTLY!
  14.  
  15. GENERAL MACRO COMMANDS
  16. ----------------------
  17. @FIRST@             - First name of caller
  18. @FIRSTU@            - First name of caller in ALL uppercase
  19. @MINLEFT@           - Minutes remaining
  20. @TIMELEFT@          - Minutes remaining
  21. @USER@              - User's full name (first & last)
  22. @NODE@              - Node number
  23. @SYSDATE@           - Current system date
  24. @SYSTIME@           - Current system time
  25. @CLS@               - Clear the screen
  26. @BEEP@              - Beep the speaker
  27.  
  28. DISPLAY COLOR MACRO COMMANDS
  29. ----------------------------
  30.  
  31. Attribute           Color           Foreground?           Background?
  32. ---------           -----           -----------           -----------
  33. 0                   Black           Y                     Y
  34. 1                   Blue            Y                     Y
  35. 2                   Green           Y                     Y
  36. 3                   Cyan            Y                     Y
  37. 4                   Red             Y                     Y
  38. 5                   Magenta         Y                     Y
  39. 6                   Yellow          Y                     Y
  40. 7                   White           Y                     Y
  41. 8                   Gray            Y                     N
  42. 9                   High Blue       Y                     N
  43. A                   High Green      Y                     N
  44. B                   High Cyan       Y                     N
  45. C                   High Red        Y                     N
  46. D                   High Magenta    Y                     N
  47. E                   High Yellow     Y                     N
  48. F                   High White      Y                     N
  49.  
  50.                   @X0F
  51.                     ||
  52.                     ||
  53.                     ||-> Foreground color (0-F)
  54.                     |---> Background color (0-7)
  55.  
  56. The "High" prefix  in the table above indicates high  intensity (bright) color
  57. attributes.
  58.  
  59.     @X0EWelcome to RBBS-Verify, the superior callback verification door!
  60.  
  61. The  above line would display in high intensity yellow on a black  background.
  62.  
  63.     @X4FWelcome to RBBS-Verify, the superior callback verification door!
  64.  
  65. The  above  line would  display in high intensity  white on a red  background.
  66.  
  67. NOTE: Blinking colors are not supported.
  68.  
  69. IMPORTANT NOTE
  70. --------------
  71. All macro  commands are shown above EXACTLY as they should be entered,  please
  72. be  sure  to enter the  commands correctly.  Upper  and  lowercase make a  big
  73. difference - all letters MUST be entered in uppercase only!
  74.  
  75.