QUOTE(morineko @ Apr 2 2017, 01:12)

Just wondering.
Did Tenboro share the lottery drawing code?
I would have thought it was this:
rand1 = random(1, total_tickets)
winner1 = user with ticket # rand1
remove all tickets by that user from pool (total_tickets is now smaller)
rand2 = random(1, total_tickets)
winner2 = user with ticket # rand2
remove all tickets by that user from pool (total_tickets is now smaller)
rand3 = random(1, total_tickets)
winner3 = user with ticket # rand3
remove all tickets by that user from pool (total_tickets is now smaller)
rand4 = random(1, total_tickets)
winner4 = user with ticket # rand4
Or an equivalent function. That's the fair way to do it, right?