text
stringlengths
0
834k
echo Press 2 for the ""chat"" setting
echo Press 3 for the ""video"" setting
echo Press 4 for the ""largeroutline"" setting
echo Press 5 for the ""QA"" setting
echo.
echo Press 6 to return to the main options menu
echo.
echo.
set /p mGlobal= Press [1-6] then press enter:
if %mGlobal%==1 goto mShowUI
if %mGlobal%==2 goto mChat
if %mGlobal%==3 goto mVideo
if %mGlobal%==4 goto mLargeoutline
if %mGlobal%==5 goto mQA
if %mGlobal%==6 goto options
cls
echo Something has went wrong. Please try again.
echo location: mGlobal.
pause
goto mGlobal
:mShowUI
cls
echo Press 1 to enable the showUI setting
echo Press 2 to Disable the showUI setting
set /p mshowUI=Press the desired number [1-2] then press enter:
if %mshowUI%==1 set showUI=1
if %mshowUI%==2 set showUI=0
cls
if %mshowUI%==1 echo ShowUI is enabled
if %mshowUI%==2 echo ShowUI is disabled
pause
goto mGlobal
:mQA
cls
echo Press 1 to show the QA box
echo Press 2 to hide the QA box
set /p mQA=Press the desired number [1-2] then press enter:
if %mQA%==1 set QA=1
if %mQA%==2 set QA=0
cls
if %mQA%==1 echo The QA box is enabled
if %mQA%==2 echo The QA box is disabled
pause
goto mGlobal
:mPCAudio
cls
echo Press 1 to enable the PCAudio setting
echo Press 2 to Disable the PCAudio setting
set /p mPCAudio=Press the desired number [1-2] then press enter:
if %mPCAudio%==1 set PCAudio=1
if %mPCAudio%==2 set PCAudio=0
cls
if %mPCAudio%==1 echo PCAudio is enabled
if %mPCAudio%==2 echo PCAudio is disabled
pause
goto mWMV
:MP4Width
cls
echo Please enter a witdth resolution (in pixles).
echo.
set /p MP4Width=Enter desired width for resolution here:
cls
echo You have set %MP4Width% as the desired width.
pause
goto mMP4
:MP4Height
cls
echo Please enter a height resolution (in pixles).
echo.
set /p MP4Height=Enter the desired height for resolution here:
cls
echo You have set %MP4Height% as the desired height.
pause
goto mMP4
:MP4Framerate
cls
echo Please enter a desired frame rate (in frames per second).
echo.
echo The optimal framerates are 3 for low quality, 5 for medium and
echo 8 for high. although you can use frame rates higher then the above
echo you might not get better results.
echo.
set /p MP4Framerate=Enter the desired frame rate here then press enter:
cls
echo You have set %MP4Framerate% as the desired frame rate.
if %MP4Framerate%==0 echo This is an incorrect frame rate. Please enter a valid frame rate.
pause
if %MP4Framerate%==0 goto MP4Framerate
goto mMP4