; -------------------------------
; --- YAPP DOWN (FBBDOS MODE) ---
; -------------------------------
;
; All lines in script files that start with ';' are ignored.
; 
; The hot key.
HOTKEY F4
;
; The title.
TITLE YGET from Local BBS
;
; Send the command to connect to my local BBS.
SEND C $BBS
;
; Wait for the connection to be established.
WAITCON
;
; Wait for the prompt.
WAITPROMPT
;
SEND d
; ---
WAITLINE C:\
; ---
SEND D:
; ---
WAITLINE D:\
;
SEND CD \NEW_DIR
;
WAITLINE D:\
;
SEND YGET FILENAME.EXT
;
WAITLINE D:\
;
SEND B
;

