Is it possible to generate multiple random numbers, but so that no number occurs more that once. For instance, with this:
local alphabet = {"a","b","c","d","e","f","g","h"}
print(alphabet[math.random(1,#alphabet)])
print(alphabet[math.random(1,#alphabet)])
print(alphabet[math.random(1,#alphabet)])
would it be possible to make sure that no letter was ever printed more than once? [import]uid: 116264 topic_id: 26012 reply_id: 326012[/import]
[import]uid: 116264 topic_id: 26012 reply_id: 106342[/import]