:obje7
set gn=%random%
if /i %gn% lss 1 goto obje%go%
if /i %gn% gtr 5 goto obje%go%
set goal%gn%="test"
echo hi > goal%go%.txt
echo hi > g2.txt
goto go
that sets test in goal%random_number%, right?
(
echo %goal1%
echo %goal2%
echo %goal3%
echo %goal4%
echo %goal5%
) >> mcbingo.txt
and the result i get is:
ECHO is off.
test
ECHO is off.
test
test
and all the :objeX are the same code, but changed X and the g2.txt is g1.txt for example.
anyone have any idea whats wrong?