I uploaded a install script to OS4Depot.net
but script is not working, one line is wrong.
so here is a working script.
There are some problems you need fix your self, like the Quake2.dll is not registered, due to the command tool called registergui that depends on ixmul.library and ixmul.library is not working on AmigaOS4, but you can register it under EUAE.
and you need newer wizzard.library
you can download it from:
http://software.alinea-computer.de/seiten/downloads_uk.php[code]
lab start
c:RequestFile TITLE "select destination path (where to install)" DRAWERSONLY > ENV:INSTALL_TO
IF "$INSTALL_TO" EQ ""
skip cancel
ENDIF
IF NOT exists "$INSTALL_TO"
c:RequestChoice "Idiot" "path does not exist, try again" "ok" >NIL:
skip back start
ENDIF
SETENV INSTALL_FROM=Heretic_IIA:
IF NOT exists "$INSTALL_FROM"
c:RequestChoice "Idiot" "you need the install cd $INSTALL_FROM" "Quit" >NIL:
skip cancel
ENDIF
cd "$INSTALL_TO"
IF NOT exists "base"
mkdir "base"
ENDIF
cd base
cd >ENV:INSTALL_BASE_TO
cd $INSTALL_FROM
IF NOT exists "libs:chunkyppc.library"
copy base/chunkyppc.library libs:
ENDIF
copy c/hUnpack t:
copy c/RegisterGUI "$INSTALL_TO"
t:hUnpack -archive "base/base.hpa" -dest "$INSTALL_TO"
t:hUnpack -archive "base/bin.hpa" -dest "$INSTALL_BASE_TO"
t:hUnpack -archive "base/engmsg.hpa" -dest "$INSTALL_BASE_TO"
SETENV INSTALL_FROM=Heretic_IIB:
c:RequestChoice "Install video files?" "Install video files?" "yes|no" >ENV:install_video
IF "$install_video" EQ "0"
skip done
ENDIF
IF NOT exists "$INSTALL_FROM"
c:RequestChoice "Idiot" "you need the install cd $INSTALL_FROM" "Quit" >NIL:
skip cancel
ENDIF
cd $INSTALL_FROM
copy base/#? "$INSTALL_BASE_TO" all >NIL:
skip done
;-- done / cancel
lab done
c:RequestChoice "data files installed" "install done" "ok" > NIL:
c:RequestChoice "Registergui" "Registergui does not work on OS4, run the command under EUAE" "Ok" > NIL:
skip quit
lab cancel
c:RequestChoice "Install canceled" "not installed" "ok" > NIL:
lab quit
[code]
Edited by LiveForIt on 2012/8/18 15:06:35
Edited by LiveForIt on 2012/8/18 15:25:41
Edited by LiveForIt on 2012/8/18 15:34:54