1.64k likes | 1.79k Views
;----------------------------------------------------------------------------. ;.advanced zip manipulator (AZM) version a/1. ;.written by cosmic.peanuts O9.O6.1996. ;. ;.released as free - no public modifications. this means you can change.
E N D
;----------------------------------------------------------------------------;----------------------------------------------------------------------------
;.released as free - no public modifications. this means you can change
;.any line of this source to make the programm 100% comp. for your board
;.and upload system (the main reason for including the source, eh). but
;.NEVER release a modified source. this is kinda lame and really stupied.
;.when you found some bugs or ideas to improve this, please contact me
;----------------------------------------------------------------------------;----------------------------------------------------------------------------
;----------------------------------------------------------------------------;----------------------------------------------------------------------------
;----------------------------------------------------------------------------;----------------------------------------------------------------------------
String AddName, Cfgfile, ZipName, PrivPath, Sizestrg, Prtfile, Pcbpriv
String Filename, Zipcommand, Return, Update, Textadd, Ranfile, ST
;----------------------------------------------------------------------------;----------------------------------------------------------------------------
;----------------------------------------------------------------------------;----------------------------------------------------------------------------
;----------------------------------------------------------------------------;----------------------------------------------------------------------------
Cfgfile = ppepath()+"cfg\azm.cfg" ; define config filename
Prtfile = ppepath()+"cfg\prompt.cfg" ; define prompt filename
Ranfile = ppepath()+"cfg\random.cfg" ; define random filename
idfile = ppepath()+"cfg\fileid.cfg" ; define fileid filename
Addname = Readline (cfgfile,1) ; bbsfile addy filename
Size = Readline (cfgfile,2) ; minimum size for adding
PrivPath = Readline (cfgfile,3) ; private upload dir
PCBpriv = Readline (cfgfile,4) ; PCB (NODE) maindirectory
Textadd = Readline (cfgfile,5) ; use random text adder (YN)
CheckPRT = Readline (prtfile,1) ; filechecking prompt
AddPRT = Readline (prtfile,2) ; filechecked prompt
OperPRT = Readline (prtfile,3) ; fileoperation prompt
Okay = False ; set okay (boolean) to no
Update = "" ; reserved temp string for
; later options
;----------------------------------------------------------------------------;----------------------------------------------------------------------------
;----------------------------------------------------------------------------;----------------------------------------------------------------------------