← Back to contents
ASCII text
— 741 bytes
— 1992-05-15
.K ""
; This XIcon script comes with the DIAMONDS program
; It copys the iff.library and Small font to the LIBS: and FONTS:
; directories respectively.
; The script checks to avoid unnecessary copies.
;
FAILAT 21
ECHO "Diamonds Install script"
;
IF NOT EXISTS libs:diskfont.library
ECHO "Hey: You should have diskfont.library installed in LIBS:!"
ECHO " The game won't work if you don't."
ENDIF
IF NOT EXISTS libs:iff.library
ECHO "Installing library: iff.library."
COPY libs/iff.library libs: clone
ENDIF
IF NOT EXISTS fonts:small.font
ECHO "Installing font: Small, 8 pt."
COPY fonts fonts: clone all
ECHO "Running the FixFonts program..."
FixFonts
ECHO "Done."
ENDIF
ECHO " "
ECHO "Installation complete."
Wait 3