; Nostalgia! 0.9ß installation utility
;
;
; Written by -Hybrid- from MELINA SOFTWORKS
;

;==================================================================
;VARIABLES
;==================================================================
(SET #bienvenue  "Welcome in the installation tool for Nostalgia!")

(SET #askinstall "Please select a destination for Nostalgia!\n A directory will be created")
(SET #aide       "Please select a destination,a directory called Nostalgia will be created (around 300Kb)")
(SET #merci      "\n\n\n\n\nThank you !")

;==================================================================

(if (>= (/ @installer-version 65536) 44)
 (
  (effect "center" "radial" $F0F0F0 $A000E0)
  (showmedia "Nostalgia" "Nostalgia.jpg" "upper_center" "none" 0)
 )
)

(welcome #bienvenue)

(set #installdir
        (askdir
                (prompt #askinstall)
                (help #aide)
                (default @default-dest)
        )
)

(copyfiles
    (source "InstallStuff/")
    (dest #installdir)
    (pattern "#?")
)

(EXIT #merci (QUIET))

