fn_print_dots "Checking local build: ${remotelocation}"
# Uses log file to get local build.
localbuild=$(grep "= Multi Theft Auto: San Andreas v""${serverfiles}/mods/deathmatch/logs/server.log"| awk '{ print $7 }'| sed -r 's/^.{1}//'| tail -1)
# Uses executable to get local build.
if[ -d "${executabledir}"];then
cd"${executabledir}"|| exit
localbuild=$(${executable} -v 2> /dev/null)
fi
if[ -z "${localbuild}"];then
fn_print_error "Checking local build: ${remotelocation}: missing local build info"