From 3836b66a5f0c4f66f7331e1556b1c71fac1fa765 Mon Sep 17 00:00:00 2001 From: Bryce Van Dyk Date: Sat, 3 Oct 2015 16:45:27 +1300 Subject: [PATCH] Update ProjectZomboid AppID, fix server file The Project Zomboid AppID has changed as well as the structure of its server files. This commit should point the scripts to the appropriate files. --- ProjectZomboid/pzserver | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index 870258003..15870a6fc 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -2,8 +2,9 @@ # Project Zomboid # Server Management Script # Author: Daniel Gibbs +# Contributions: Bryce Van Dyk (SingingTree) # Website: http://gameservermanagers.com -version="100715" +version="031015" #### Variables #### @@ -27,7 +28,7 @@ parms="" #### Advanced Variables #### # Steam -appid="108600" +appid="380870" # Server Details servicename="pz-server" @@ -39,9 +40,9 @@ rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$(basename $0)" lockselfname=".${servicename}.lock" filesdir="${rootdir}/serverfiles" -systemdir="${filesdir}/projectzomboid" +systemdir="${filesdir}" executabledir="${filesdir}" -executable="./projectzomboid-dedi-server.sh" +executable="./start-server.sh" servercfg="servertest.ini" servercfgdir="${HOME}/Zomboid/Server" servercfgfullpath="${servercfgdir}/${servercfg}"