Added a game list maker script for Crazy Party. did some restructuring of convenience scripts.

This commit is contained in:
Storm Dragon
2020-11-01 21:09:33 -05:00
parent 047904e471
commit 0f6f5939f3
6 changed files with 37 additions and 0 deletions

17
game-scripts/topspeedserver.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
path=${1:-~/.local/wine/top-speed-3/drive_c/Program\ Files/Playing\ in\ the\ dark/Top\ Speed\ 3}
echo "Enter URL or IP address for Top Speed 3 Server:"
read -r -e server
if ! [[ "${server}" =~ ^[0-9.]*$ ]]; then
ip="$( ping -c1 "${server}" 2> /dev/null | head -1 | cut -d '(' -f2 | cut -d ')' -f1)"
if [[ ${#p} < 3 ]]; then
echo "Ip address not found, nothing changed."
exit 1
fi
fi
ip="${ip:-${server}}"
sed -i "s/^Multiplayer=.*/Multiplayer=${ip}/" "${path}/TopSpeed.cfg"
exit 0