Batch game map generator
It says "set was unexpected at this time" the code:
@echo off
set x=5
set y=5
for /l %%x in (0,1,9) do (
for /l %%y in (0,1,9) do (
set /a map=%random% %% 5+1
if %map% == 5 set m%%x%%y=#
if not %map% == 5 set m%%x%%y=.
)
)
The problem is here:
set /a map=%random% %% 5+1
if %map% == 5 set m%%x%%y=#
if not %map% == 5 set m%%x%%y=.
No comments:
Post a Comment