
; Install script for BBS ADD Demo (Workbench 3.0)
;=============================================================================
; English strings
(complete 0)
(set @default-dest "SYS:")
(set #bad-kick
(cat "You must be using Kickstart 2.0 to install using this script."

))

(set #copying "Kopiere Demodaten ins Verzeichnis..")

(set #install-msg
(cat "\n\nARcADES BBS Werbeinstallation script.\n"
     "Dieses ist die erste BBS aDD HAM/IFF Demo.\n\n"
     "Viel Spass bein ansehen! CYBORG/ARcADE\n"
     "Call our World HQ - Pentagon Place BBS\n"
     "© 1994 by CYBORG/ARcADE\n\n"
     "a ARcADE PrOdUcTiOn\n"
     ":^) [All rights reserved] :^)"
))

(run ("run BBS-DEMO:vT >NIL: BBS-DEMO:Pentagon.iff"))

;=============================================================================
; make sure we are running under a 2.04 ROM

(if (< (/ (getversion) 65536) 38)
(
    (abort #bad-kick)
))

;=============================================================================
(message #install-msg)

(set demo_dir
								(askdir
									(prompt "Wo möchtest Du das Demo Installieren?")
									(help "Wähle das Zielverzeichnis Deiner Partition oder Directory " 
										"zum Installieren von BBS-ADD-DEMO."
                          							" Das Inslallationsprogramm wird eine Directory erstellen "
                          							" das Du auswählst und kopiert alles nötige hinein!")
							                        (default @default-dest)
									(newpath)
								)
)




;=============================================================================
(complete 50)
(copyfiles
	(prompt "\n" #copying)
	(help @copyfiles-help)
	(source "BBS-DEMO:")
        (dest demo_dir)
	(all)
)
(complete 100)
;============================================================================
