Roblox card generator

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
marshall123
Posts: 7
Joined: 08 Oct 2012 19:46

Roblox card generator

#1 Post by marshall123 » 11 Oct 2012 15:08

How can I make a batch file that generated 10 random numbers?

Squashman
Expert
Posts: 4486
Joined: 23 Dec 2011 13:59

Re: Roblox card generator

#2 Post by Squashman » 11 Oct 2012 15:23

The long easy way.
set var1=%random%
set var2=%random%
etc.....

foxidrive
Expert
Posts: 6031
Joined: 10 Feb 2012 02:20

Re: Roblox card generator

#3 Post by foxidrive » 11 Oct 2012 16:43

Or to just display the 10 numbers:


Code: Select all

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

Post Reply