(set aspratio
    (askchoice (prompt "Which aspect ratio will your preferred Displaymode use ?")
               (choices ("1:1 (usually interlaced)") ("1:2 (usually non-interlaced"))
               (help "Depending on your choice brushes with 50x50 or 50x25 pixels "
                     "will be copied to AmiBoard.brush")
    )
)

(if (= aspratio 0)
    (copyfiles (prompt "Copying Brushes/AmiBoard.brush_50x50 to AmiBoard.brush")
               (help "")
               (source "Brushes/Amiboard.brush_50x50")
               (dest "")
               (newname "AmiBoard.brush")
    )
    (copyfiles (prompt "Copying Brushes/AmiBoard.brush_50x25 to AmiBoard.brush")
               (help "")
               (source "Brushes/Amiboard.brush_50x25")
               (dest "")
               (newname "AmiBoard.brush")
    )
)

(message ("Please enter the ScreenMode you will use into the AmiBoard icon tooltype. You can see the available ScreenModes in the Prefs/Screenmode program."))

