I was a bit bored and made this real fast, so it can be improved a lot.Code:import random import time v1 = '' v2 = '' v3 = '' v4 = '' v5 = '' print 'World of Warcraft GameCard Generator v1 BETA' print 'Looking in database...' time.sleep(2.0) print 'Downloading...' time.sleep(1.2); print 'Logging out of database...' time.sleep(1.0); print 'Success!' print 'Key:' for i in range(0,4): v1 = v1 + random.choice('12345679abcdefghijklmnopqrstuvwxyz') for i in range(0,6): v2 = v2 + random.choice('12345679abcdefghijklmnopqrstuvwxyz') for i in range(0,5): v3 = v3 + random.choice('12345679abcdefghijklmnopqrstuvwxyz') for i in range(0,6): v4 = v4 + random.choice('12345679abcdefghijklmnopqrstuvwxyz') for i in range(0,4): v5 = v5 +random.choice('12345679abcdefghijklmnopqrstuvwxyz') x = v1 + '-' + v2 + '-' + v3 + '-' + v4 + '-' + v5 print x print 'Made by Cl0p1n'
The only problem about Python is that it's always open source, so the user/client can look at the source and check it, but this is just for the sake of learning.