mirror of
https://github.com/ChocoTaco1/docker-tribesnext-server.git
synced 2026-01-20 00:24:49 +00:00
13 lines
271 B
Bash
Executable file
13 lines
271 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export WINEPREFIX=/home/gameserv/.wine
|
|
BASEDIR=$WINEPREFIX/drive_c/Dynamix/Tribes2/GameData
|
|
|
|
find ${BASEDIR} -name \*.dso -execdir /bin/rm {} \;
|
|
|
|
cd $WINEPREFIX/drive_c/Dynamix/Tribes2/GameData
|
|
|
|
xvfb-run -a -w 5 \
|
|
wine Tribes2.exe -dedicated -mod Classic
|
|
|