home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / comm / tempest.lha / tildy.docs < prev   
Text File  |  1993-05-19  |  8KB  |  260 lines

  1.  
  2.                   Tildy Command & Arexx GetVar Docs
  3.  
  4.                               Done by MB
  5.  
  6. Quick notes on how to read them from a TextFile,Arexx(tm),A Tempest Door 
  7. -----------------------------------------------------------------------------
  8.   How to use the new following commands:
  9.     1) as a ~command in a text file.  Use the Word or letter that describes
  10.        the action you wish to use.  For our Example, lets say you want to
  11.        show the Users Computer Type.  (just use the WORD not the Number)
  12.        Your Computer is a : ~CT
  13.     2) In Arexx you would use (just use the Number not the Word)
  14.        GetVar 73
  15.        transmit 'Your computer is a : ' result
  16.      ->You may have also use  'GetUser' 73     or   'GetUserVar' 73
  17.  
  18.     3) In a Tempest Door you would use (just use the Number not the Word)
  19.        char s[30];
  20.        GetStr(s,73);
  21.        pl("Your computer is a : ");
  22.        pl(s);
  23.  
  24. ****** NOTE ***** 
  25.   If you see a '!' in the first column, that means this command can only
  26.   be used through the ~ commands, and not Arexx or the Doors
  27.  
  28.  
  29.            FORMAT
  30. ------------------------------------
  31. AREXX #  |  ~ COMMAND  - DESCRIPTION
  32. ------------------------------------
  33.  
  34.  
  35. ###########################
  36. ### DOORS & OTHER CALLS ###
  37. ###########################
  38.  
  39.  60  |  TD(door program)  - tempest door
  40.  61  |  PD(door program)  - paragon door
  41.  62  |  REXX(Rexx script) - rexx door
  42. 134  |  DOS(echo >speak:  ~n is online ) - Dos Command Call
  43. 202  |  SHELL(c:status)   - Open Shell and execute a command
  44. 205  |  SHOW_FILE(text file) - display a text file
  45.  
  46.  
  47. #########################
  48. ### BASIC SYSTEM INFO ###
  49. #########################
  50.  
  51.  18  |  SYSTEM  - BBS/SYSTEM Name
  52. 125  |  SSN     - Sysop's Handle
  53.  99  |  ME      - Display the author's name  ;-)
  54.  
  55. #######################
  56. ### BASIC USER INFO ###
  57. #######################
  58.  
  59. 208  |  SN   - Users Slot Number / User Number
  60.  43  |  n    - Users Handle
  61.  70  |  RN   - Users Real Name
  62.  71  |  PASS - Users Password
  63.  44  |  LO   - Users Location
  64.  72  |  PN   - Users Phone Number
  65.  73  |  CT   - Users Computer Type
  66.  
  67. 109  |  LEV  - Users Security Level
  68. 133  |  PWF  - Password Failures since last legal call
  69.  
  70. 126  |  UMF  - Users Msg Base flags
  71. 127  |  UFF  - Users File Base Flags
  72. 128  |  UOP  - Users Option flags
  73.  
  74. 129  |  UMR  - Users messagebase rejoin
  75. 130  |  UFR  - Users filebase rejoin #
  76.  
  77.  
  78. ######################
  79. ### USER FILE INFO ###
  80. ######################
  81.  
  82.  74  |  FR  - File Ratio
  83.  75  |  FB  - Byte Ratio
  84.  
  85.  34  |  DF  - Users Total Downloaded Files
  86.  76  |  DB  - Users Total Downloaded Bytes
  87.  35  |  UF  - Users Total Uploaded Files
  88.  77  |  UB  - Users Total Uploaded Bytes
  89.  
  90.  78  |  LDF  - Daily Limit Of Downloadable Files
  91.  30  |  LDB  - Daily Limit Of Downloadable Bytes
  92.  80  |  LUF  - Daily Limit Of Uploadable Files
  93.  81  |  LUB  - Daily Limit Of Uploadable Bytes
  94.  
  95.  82  |  DFT  - Users Downloaded Files Today
  96.  83  |  DBT  - Users Downloaded Bytes Today
  97.  84  |  UFT  - Users Uploaded Files Today
  98.  85  |  UBT  - Users Uploaded Bytes Today
  99.  
  100.  86  |  DFL  - Users Downloadable Files Left Today
  101.  87  |  DBL  - Users Downloadable Bytes Left Today
  102.  88  |  UFL  - Users Uploadable Files Left Today
  103.  89  |  UBL  - Users Uploadable Bytes Left Today
  104.  
  105. #######################
  106. ### USER CALLS INFO ###
  107. #######################
  108.  
  109.  33  |  UTC   - Users Total Calls To System
  110.  32  |  UCT   - Users Calls Today
  111.  31  |  UCL   - Users Calls Limit / Allowed Per Day
  112.  36  |  CLT   - Calls Left today
  113.  
  114. 131  |  FCL   - Users First Call  xx/xx/xx
  115. 132  |  LCL   - Users Last Call   xx/xx/xx
  116.  
  117.  41  |  l     - Last Caller's Handle
  118.  42  |  L     - How Long Last User Was Online
  119.  90  |  RCALL - Reserved Caller
  120.  
  121.  
  122. #########################
  123. ### USER MESSAGE INFO ###
  124. #########################
  125.  
  126.  91  |  UTM  - Users Total Messages Left On System
  127.  92  |  UMT  - Users Messages Left Today
  128.  93  |  UML  - Users Message Leaving Limit / Messages Allowed Per Day
  129.  
  130.  
  131. ######################
  132. ### USER TIME INFO ###
  133. ######################
  134.  
  135.  37  |  TL  - Time Limit
  136.  39  |  TR  - Time Remaining Today
  137.  38  |  TO  - Time Online
  138.  
  139.  
  140. #####################
  141. ### TIME AND DATE ###
  142. #####################
  143.  
  144.  15  |  TIMESTRING  - Full Date & Time String
  145.  16  |  DATE        - date
  146.  17  |  TIME        - time
  147.  
  148.  
  149. ##############
  150. ### TOTALS ###
  151. ##############
  152.  
  153.  94  |  TCT   - Calls Today
  154.  95  |  TCS   - Total Calls to System/Node
  155.  96  |  TUFT  - Total Uploaded Files Today
  156.  97  |  TUBT  - Total Uploaded Bytes Today
  157.  98  |  TDFT  - Total Downloaded Files Today
  158. 100  |  TDBT  - Total Downloaded Bytes Today
  159. 102  |  TNUT  - Total New Users Today
  160.      |  TMT   - Total Messages Today
  161. 103  |  TFT   - Total Feedback To Sysop Today
  162. 104  |  T300  - Total 300 Baud callers today
  163. 105  |  T1200 - Total 1200 Baud Callers today
  164. 106  |  T2400 - Total 2400 Baud Callers today
  165. 107  |  T4800 - Total 4800 Baud Callers today
  166. 108  |  T9600 - Total 9600 Baud Callers today
  167. 111  |  TAD   - Total Aborted Downloads Today
  168. 112  |  TAU   - Total Aborted Uploads Today
  169. 113  |  TUR   - Total Upload Resumes Today
  170. 114  |  TDR   - Total Download Resumes Today
  171. 116  |  TBY   - Total minutes the bbs was busy since midnight
  172. 115  |  TMU   - Maximum User Limit
  173. 122  |  TFS   - Total Files FMAILED to sysop
  174.  
  175.  
  176. #############
  177. ### OTHER ###
  178. #############
  179.  
  180.  19  |  BAUD  - baud rate of user
  181.  47  |  BEEP  - beep
  182. 110  |  CLS   - Same as CTRL-L to clear screen and return cursor to top
  183. 207  |  DELAY - Pauses the BBS ~DELAY(50) is a 1 secound pause
  184. 206  |  FREE  - Upload Space Free On Hard Drive
  185. 134  |  KEY   - Wait for a key press
  186.  68  |  NODE  - node
  187.  65  |  VERS  - version of tempest
  188.  
  189.  41  |  l  - who was the last caller
  190.  42  |  L  - how long the last caller was online
  191.  43  |  n  - users Handle - who is online
  192.  69  |  Q  - quit search for ~ commands
  193.  45  |  r  - request a [return] from the user
  194.  46  |  z  - toggle ^C abort a txt file option
  195.  47  |  ^  - Beep
  196.  48  |  +  - Toggle (y/n/ns) during a text file
  197.  66  |  ~   - For printing one ~
  198.  
  199.  49  |  B  - BOLD
  200.  50  |  I  - ITALICS
  201.  51  |  U  - UNDERLINE
  202.  
  203.  52  |  0   - Color 0 - No ANSI (White usually)
  204.  53  |  1   - Color 1 - WHITE for SYSOP  RED for User
  205.  54  |  2   - Color 2 - GREEN
  206.  55  |  3   - Color 3 - YELLOW/BROWN
  207.  56  |  4   - Color 4 - DARK BLUE
  208.  57  |  5   - Color 5 - PURPLE
  209.  58  |  6   - Color 6 - CYAN/LIGHT BLUE
  210.  59  |  7   - Color 7 - RED for SYSOP  WHITE for User
  211.  
  212. ######################
  213. ### BBS FILE PATHS ###
  214. ######################
  215.  
  216.   0  |  BBS  - Path to the main BBS:
  217.   1  |  SAF  - Path to where the account file is
  218.   2  |  SCF  - Path to where the catalogs are stored
  219.   3  |  STD  - Path to the temporary directory
  220.   4  |  STF  - Path to the Text Files
  221.   5  |  SDD  - Path to the Describe directory
  222.   6  |  SVD  - Path to the Vote directory
  223.   7  |  SOD  - Path to the Optional Directory
  224.   8  |  SMD  - Path to the modules directory
  225.   9  |  SAD  - Path to where the Account Questions are stored
  226.  10  |  SSH  - Path to the sysop hold directory
  227.  11  |  SRD  - Path to the resume directory
  228.  12  |  SUP  - Path to the Upload Directory + you add  DONE/
  229.  13  |  SDP  - Path to the Doors
  230.  14  |  LOG  - Path to where the logs are kept
  231.  
  232.  
  233. #############
  234. ### NOTES ###
  235. #############
  236.  
  237. ~SHOW_FILE(tempest:utils/today.txt)
  238.        This command will allow you to call another text file within a
  239.        text file  howver the 'called' text file will not have ~ detection.
  240. ~DELAY(ticks)
  241.        Tick equates to (50=1 Secound) to to have the text file pause for 2
  242.        Secounds use  ~DELAY(100);
  243.  
  244.  
  245. ###################
  246. ### SHELL INFO  ###
  247. ###################
  248.  
  249.     ~SHELL(c:status ^ list)
  250.      opens a cli and run those commands  use the '^' to seperate commands
  251.  
  252.  
  253. ###########################
  254. ### JUSTIFICATION INFO  ###
  255. ###########################
  256.  
  257.     ~n  no justification just shows the text
  258.     ~n(20)   format out 20 spaces right justiy
  259.     ~n(-20)  format out 20 spaces left justify
  260.