View Single Post
pH5's Avatar
Posts: 138 | Thanked: 375 times | Joined on Aug 2009 @ Berlin
#4
python installed? try this python script:
Code:
import random, time
random.seed (time.time())
players = range(1,14)
random.shuffle(players)
print players
 

The Following User Says Thank You to pH5 For This Useful Post: