gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
871 B
35 lines
871 B
#!/bin/bash
|
|
# LinuxGSM compress_ut99_maps.sh module
|
|
# Author: Daniel Gibbs
|
|
# Contributors: https://linuxgsm.com/contrib
|
|
# Website: https://linuxgsm.com
|
|
# Description: Compresses unreal maps.
|
|
|
|
commandname="MAP-COMPRESSOR"
|
|
commandaction="Compressing maps"
|
|
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
fn_firstcommand_set
|
|
|
|
check.sh
|
|
fn_print_header
|
|
echo -e "Will compress all maps in:"
|
|
echo -e ""
|
|
pwd
|
|
echo -e ""
|
|
echo -e "Compressed maps saved to:"
|
|
echo -e ""
|
|
echo -e "${compressedmapsdir}"
|
|
echo -e ""
|
|
if ! fn_prompt_yn "Start compression?" Y; then
|
|
exitcode=0
|
|
core_exit.sh
|
|
fi
|
|
mkdir -pv "${compressedmapsdir}" > /dev/null 2>&1
|
|
rm -rfv "${serverfiles:?}/Maps/"*.unr.uz
|
|
cd "${systemdir}" || exit
|
|
for map in "${serverfiles}/Maps/"*; do
|
|
./ucc-bin compress "${map}" --nohomedir
|
|
done
|
|
mv -fv "${serverfiles}/Maps/"*.unr.uz "${compressedmapsdir}"
|
|
|
|
core_exit.sh
|
|
|