Created
May 31, 2022 19:18
-
-
Save sabpprook/0a8af4f961860b472253ce921a04f910 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
pushd %~dp0 | |
REM Refer=https://forum.gamer.com.tw/C.php?bsn=71242&snA=254 | |
REM V Rising 非官方繁體中文翻譯 by Jamesz | |
set VRisingTC="https://raw.githubusercontent.com/zjamestw/VRisingTCTranslation/main/TChinese.json" | |
call :Download "%~dp0TChinese.json" %VRisingTC% | |
if not exist TChinese.json goto :EOF | |
move /y TChinese.json .\VRising_Data\StreamingAssets\Localization\TChinese.json | |
:Download | |
echo %1 | |
echo %2 | |
bitsadmin /transfer job /download /priority FOREGROUND %2 %1 > nul | |
exit /b 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment