;Install Cypher

(set inputdir           (pathonly @icon))
(set @default-dest "SYS:Tools")

(set directory
	(askdir
		(prompt "Select directory to place Cypher in.")
		(help "Select the directory you would like Cypher to reside in.")
		(default @default-dest)
	)
)
(copyfiles
	(prompt "Copying files.")
        (help "This will copy the Cypher files you choose to the previously selected directory.")
	(source inputdir)
	(dest @default-dest)
        (pattern "Cypher#?")
        (infos)
        (noposition)
	(confirm)
)

(startup ("Cypher") (command "RUN > NIL: Cypher")
	(prompt
                "Some instructions need to be added to the \"S:user-startup\" so that your system will ask for the key code sequence upon starting.")
	(help "If you choose this selection 'RUN > NIL: Cypher' will be added to your user-startup file.")
)


(exit
         "Please reboot your computer to set the key code."
)

