Page 1 of 1

Roblox card generator

Posted: 11 Oct 2012 15:08
by marshall123
How can I make a batch file that generated 10 random numbers?

Re: Roblox card generator

Posted: 11 Oct 2012 15:23
by Squashman
The long easy way.
set var1=%random%
set var2=%random%
etc.....

Re: Roblox card generator

Posted: 11 Oct 2012 16:43
by foxidrive
Or to just display the 10 numbers:


Code: Select all

@echo off
for /L %%a in (1,1,10) do call echo %%random%%
pause