|
|
|
@ -17,8 +17,8 @@ set /p gsize="Enter the number group size: "
|
|
|
|
|
:: Ask whether to repeat number groups
|
|
|
|
|
set /p repeat="Do you want to repeat number groups (y/N)? "
|
|
|
|
|
|
|
|
|
|
:: Ask whether to use the low voice
|
|
|
|
|
set /p lowvoice="Do you want to use the low voice (y/N)? "
|
|
|
|
|
:: Ask whether to use the alt voice
|
|
|
|
|
set /p lowvoice="Do you want to use the alternate voice (y/N)? "
|
|
|
|
|
|
|
|
|
|
:: Ask for the message input
|
|
|
|
|
echo.
|
|
|
|
@ -33,10 +33,10 @@ if /i "%repeat%"=="y" (
|
|
|
|
|
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" (
|
|
|
|
|
echo Using low voice with the -l flag.
|
|
|
|
|
set flags=%flags% -l
|
|
|
|
|
echo Using alternate voice with the -a flag.
|
|
|
|
|
set flags=%flags% -a
|
|
|
|
|
) else (
|
|
|
|
|
echo Using default voice.
|
|
|
|
|
)
|
|
|
|
|