Added a game list maker script for Crazy Party. did some restructuring of convenience scripts.
This commit is contained in:
17
game-scripts/topspeedserver.sh
Executable file
17
game-scripts/topspeedserver.sh
Executable 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
|
Reference in New Issue
Block a user