Add firsts Maps
This commit is contained in:
BIN
Help/DM-TheDeck2004.txt
Normal file
BIN
Help/DM-TheDeck2004.txt
Normal file
Binary file not shown.
BIN
Help/Thumbs.db
Normal file
BIN
Help/Thumbs.db
Normal file
Binary file not shown.
32
Help/readme-DM-Q3DM17-UTs.txt
Normal file
32
Help/readme-DM-Q3DM17-UTs.txt
Normal file
@@ -0,0 +1,32 @@
|
||||
|
||||
|
||||
Por Alejandro Cristian Vitulich
|
||||
|
||||
====================================================================================================================
|
||||
* DM-Q3DM17-UT *
|
||||
====================================================================================================================
|
||||
Title : - Q3DM17-UT -
|
||||
Date : Enero-17-2006
|
||||
Author : Alejandro Cristian Vitulich
|
||||
Hailing From : Villa Regina, Rio Negro, Argentia
|
||||
Email Address : altvitulich@yahoo.com.ar
|
||||
|
||||
Description : Este es un remake del clásico q3dm17 de Quake III Arena modificado al estilo de plataformas de TokaraForest. ¡Cuidado! si caes al vació experimentarás tal vez la más horrorosa muerte que pueda sufrir un ser vivo: ser tragado por un agujero negro.
|
||||
|
||||
|
||||
====================================================================================================================
|
||||
* Instalación *
|
||||
====================================================================================================================
|
||||
|
||||
|
||||
...Colocar el mapa “DM-Q3DM17-UT” en "C:\UT2004\Maps".
|
||||
|
||||
|
||||
|
||||
====================================================================================================================
|
||||
* Play Information *
|
||||
====================================================================================================================
|
||||
|
||||
Single Player : with bots
|
||||
Supports Bots : Yes
|
||||
|
||||
BIN
Maps/DM-Q3DM17-UT.ut2
Normal file
BIN
Maps/DM-Q3DM17-UT.ut2
Normal file
Binary file not shown.
BIN
Maps/DM-TheDeck2004.ut2
Normal file
BIN
Maps/DM-TheDeck2004.ut2
Normal file
Binary file not shown.
45
Run.sh
Normal file
45
Run.sh
Normal file
@@ -0,0 +1,45 @@
|
||||
#!/bin/bash
|
||||
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||||
OUTPUT_DIR="$2"
|
||||
|
||||
function install() {
|
||||
#rsync -a $SCRIPT_DIR/Animations/ $OUTPUT_DIR/Animations/ --exclude '.git'
|
||||
rsync -a $SCRIPT_DIR/Help/ $OUTPUT_DIR/Help/ --exclude '.git'
|
||||
rsync -a $SCRIPT_DIR/Maps/ $OUTPUT_DIR/Maps/ --exclude '.git'
|
||||
#rsync -a $SCRIPT_DIR/Music/ $OUTPUT_DIR/Music/ --exclude '.git'
|
||||
#rsync -a $SCRIPT_DIR/Sounds/ $OUTPUT_DIR/Sounds/ --exclude '.git'
|
||||
#rsync -a $SCRIPT_DIR/StaticMeshes/ $OUTPUT_DIR/StaticMeshes/ --exclude '.git'
|
||||
#rsync -a $SCRIPT_DIR/System/ $OUTPUT_DIR/System/ --exclude '.git'
|
||||
#rsync -a $SCRIPT_DIR/Textures/ $OUTPUT_DIR/Textures/ --exclude '.git'
|
||||
|
||||
echo install ok
|
||||
}
|
||||
|
||||
function show_help() {
|
||||
echo
|
||||
echo "Usage: $0 { install } <UT2k4_INSTALL_DIR>"
|
||||
echo
|
||||
}
|
||||
|
||||
function check_game_dir() {
|
||||
### Check if a directory does not exist ###
|
||||
if [ -z $OUTPUT_DIR ]
|
||||
then
|
||||
echo "incorrect <UT2k4_INSTALL_DIR>"
|
||||
show_help
|
||||
exit 9999 # die with error code 9999
|
||||
fi
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
|
||||
'install')
|
||||
check_game_dir
|
||||
install
|
||||
;;
|
||||
*)
|
||||
show_help
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
exit 0
|
||||
Reference in New Issue
Block a user