HEY DM ME IN DISCORD
Domain Update: Our Forum has moved! Please visit us at Holisticz.com for the latest updates.
(08 October, 2020 - 09:09 AM)RedZX Wrote: Show More
@eMche
here is how u re gonna do it for free kek
edit: this is python btw
if u want more custom, dm me i do it for free, dont pay for that, WillofDark#0001
import random
import string
def num(nmbr):
return ('').join(random.choices(string.digits, k=nmbr))
fix = 1
amount = int(input('How many codes would you like to generate: '))
f = open('keys.txt', 'a')
while fix <= amount:
code = num(2) + '41' + num(16)
f.write(code + '\n')
print(code)
fix += 1
f.close()
exit()