I'm really new to Batch and I was trying to make a game where you place "landscapes" kind of thing. But I ended up using a lot of variables:
set a1=%none%
set a2=%none%
set a3=%none%
set a4=%none%
set a5=%none%
set a6=%none%
set a7=%none%
set a8=%none%
set a9=%none%
set a10=%none%
set a11=%none%
set a12=%none%
I wanted the user to input what "kind" of landscape, lets say "b. So:
set a1=%b%
set a2=%b%
set a3=%b%
set a4=%b%
set a5=%b%
set a6=%b%
set a7=%b%
set a8=%b%
set a9=%b%
set a10=%b%
set a11=%b%
set a12=%b%
And ecetera but after a while it got really long. Is there a more efficient way of assigning so many variables? Any help would be great.