Christian
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
4 additions and
4 deletions
-
lgsm/functions/command_install_resources_mta.sh
-
lgsm/functions/fix_mta.sh
-
lgsm/functions/install_server_files.sh
-
lgsm/functions/update_minecraft_bedrock.sh
|
|
@ -12,7 +12,7 @@ fn_install_resources(){ |
|
|
|
echo -e "" |
|
|
|
echo -e "Installing Default Resources" |
|
|
|
echo -e "=================================" |
|
|
|
fn_fetch_file "http://mirror.mtasa.com/mtasa/resources/mtasa-resources-latest.zip" "${tmpdir}" "mtasa-resources-latest.zip" "nochmodx" "norun" "noforce" "nomd5" |
|
|
|
fn_fetch_file "http://mirror.mtasa.com/mtasa/resources/mtasa-resources-latest.zip" "" "" "" "${tmpdir}" "mtasa-resources-latest.zip" "nochmodx" "norun" "noforce" "nomd5" |
|
|
|
fn_dl_extract "${tmpdir}" "mtasa-resources-latest.zip" "${resourcesdir}" |
|
|
|
echo -e "Default Resources Installed." |
|
|
|
} |
|
|
|
|
|
@ -11,6 +11,6 @@ if [ ! -f "${lgsmdir}/lib/libmysqlclient.so.16" ]; then |
|
|
|
fixname="libmysqlclient16" |
|
|
|
fn_fix_msg_start_nl |
|
|
|
fn_sleep_time |
|
|
|
fn_fetch_file "https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16" "${lgsmdir}/lib" "libmysqlclient.so.16" "chmodx" "norun" "noforce" "6c188e0f8fb5d7a29f4bc413b9fed6c2" |
|
|
|
fn_fetch_file "https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16" "" "" "" "${lgsmdir}/lib" "libmysqlclient.so.16" "chmodx" "norun" "noforce" "6c188e0f8fb5d7a29f4bc413b9fed6c2" |
|
|
|
fn_fix_msg_end |
|
|
|
fi |
|
|
|
|
|
@ -62,7 +62,7 @@ fn_install_server_files(){ |
|
|
|
elif [ "${shortname}" == "zmr" ]; then |
|
|
|
remote_fileurl="http://linuxgsm.download/ZombieMasterReborn/zombie_master_reborn_b5_2.tar.xz"; local_filedir="${tmpdir}"; local_filename="zombie_master_reborn_b5_2.tar.xz"; chmodx="nochmodx" run="norun"; force="noforce"; md5="4b9b9832e863d03981a40c26065792a6" |
|
|
|
fi |
|
|
|
fn_fetch_file "${remote_fileurl}" "${local_filedir}" "${local_filename}" "${chmodx}" "${run}" "${forcedl}" "${md5}" |
|
|
|
fn_fetch_file "${remote_fileurl}" "" "" "" "${local_filedir}" "${local_filename}" "${chmodx}" "${run}" "${forcedl}" "${md5}" |
|
|
|
fn_dl_extract "${local_filedir}" "${local_filename}" "${serverfiles}" |
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ -8,7 +8,7 @@ functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|
|
|
|
|
|
|
fn_update_minecraft_dl(){ |
|
|
|
latestmcbuildurl=$(curl -s "https://www.minecraft.net/en-us/download/server/bedrock/" | grep -o 'https://minecraft.azureedge.net/bin-linux/[^"]*zip') |
|
|
|
fn_fetch_file "${latestmcbuildurl}" "${tmpdir}" "bedrock_server.${remotebuild}.zip" |
|
|
|
fn_fetch_file "${latestmcbuildurl}" "" "" "" "${tmpdir}" "bedrock_server.${remotebuild}.zip" |
|
|
|
echo -e "Extracting to ${serverfiles}...\c" |
|
|
|
if [ "${installer}" == "1" ]; then |
|
|
|
unzip -oq "${tmpdir}/bedrock_server.${remotebuild}.zip" -x "server.properties" -d "${serverfiles}" |
|
|
|