| 12345678910111213141516171819202122232425262728293031 |
- #!/bin/bash
- # LGSM install_ut2k4_key.sh function
- # Author: Daniel Gibbs
- # Website: https://gameservermanagers.com
- # Description: Activates ut2k4 server with given key.
- local commandname="INSTALL"
- local commandaction="Install"
- local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
- echo ""
- echo "Enter ${gamename} CD Key"
- echo "================================="
- sleep 1
- echo "To get your server listed on the Master Server list"
- echo "you must get a free CD key. Get a key here:"
- echo "https://forums.unrealtournament.com/utserver/cdkey.php?2004"
- echo ""
- if [ -z "${autoinstall}" ]; then
- echo "Once you have the key enter it below"
- echo -n "KEY: "
- read CODE
- echo ""\""CDKey"\""="\""${CODE}"\""" > "${systemdir}/cdkey"
- if [ -f "${systemdir}/cdkey" ]; then
- fn_script_log_info "UT2K4 Server CD Key created"
- fi
- else
- echo "You can add your key using the following command"
- echo "./${selfname} server-cd-key"
- fi
- echo ""
|