|
|
@ -4,8 +4,8 @@ setlocal
|
|
|
|
:: Ask whether to repeat number groups
|
|
|
|
:: Ask whether to repeat number groups
|
|
|
|
set /p repeat="Do you want to repeat number groups (y/N)? "
|
|
|
|
set /p repeat="Do you want to repeat number groups (y/N)? "
|
|
|
|
|
|
|
|
|
|
|
|
:: Ask whether to use the losam voice
|
|
|
|
:: Ask whether to use the alt voice
|
|
|
|
set /p lowvoice="Do you want to use the low voice (y/N)? "
|
|
|
|
set /p lowvoice="Do you want to use the alternate voice (y/N)? "
|
|
|
|
|
|
|
|
|
|
|
|
:: Initialize flags
|
|
|
|
:: Initialize flags
|
|
|
|
set flags=
|
|
|
|
set flags=
|
|
|
@ -18,16 +18,20 @@ if /i "%repeat%"=="y" (
|
|
|
|
echo Not repeating number groups.
|
|
|
|
echo Not repeating number groups.
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
:: Check if the user wants to use the low voice
|
|
|
|
:: Check if the user wants to use the alt voice
|
|
|
|
if /i "%lowvoice%"=="y" (
|
|
|
|
if /i "%lowvoice%"=="y" (
|
|
|
|
echo Using low voice with the -l flag.
|
|
|
|
echo Using alternate voice with the -a flag.
|
|
|
|
set flags=%flags% -l
|
|
|
|
set flags=%flags% -a
|
|
|
|
) else (
|
|
|
|
) else (
|
|
|
|
echo Using default voice.
|
|
|
|
echo Using default voice.
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
:: Run the numberstation.exe with the appropriate flags
|
|
|
|
:: Run the numberstation.exe with the appropriate flags
|
|
|
|
|
|
|
|
if defined flags (
|
|
|
|
numberstation.exe %flags%
|
|
|
|
numberstation.exe %flags%
|
|
|
|
|
|
|
|
) else (
|
|
|
|
|
|
|
|
numberstation.exe
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
:: Pause before exit
|
|
|
|
:: Pause before exit
|
|
|
|
pause
|
|
|
|
pause
|
|
|
|