so i made a loading screen but it doesnt work and i cant figure it out heres the code:
@echo off
:start
set a=10
pause
set 1=_
set 2=_
set 3=_
set 4=_
set 5=_
set 6=_
set 7=_
set 8=_
set 9=_
set 10=_
:b
cls
echo %a%
if %a%==10 goto 1
if %a%==20 goto 2
if %a%==30 goto 3
if %a%==40 goto 4
if %a%==50 goto 5
if %a%==60 goto 6
if %a%==70 goto 7
if %a%==80 goto 8
if %a%==90 goto 9
if %a%==100 goto 10
:1
set 1=#
goto echo
:2
set 2=#
goto echo
:3
set 3=#
goto echo
:4
set 4=#
goto echo
:5
set 5=#
goto echo
:6
set 6=#
goto echo
:7
set 7=#
goto echo
:8
set 8=#
goto echo
:9
set 9=#
goto echo
:10
set 10=#
goto echo
:echo
echo %1% %2% %3% %4% %5% %6% %7% %8% %9% %10%
set /a a+=10
TIMEOUT 1 >null
cls
goto b
so if anyone figures it out im very thank ful for answers i just cant understand why it would not work....
thanks :)