Hi
I have an app that is basically a button to push and a new random text will show.
The texts are picked at random and I would like a feature that prevents the same text to show again for the next 5-10 times.
The texts are kept in a lua table
table name{
[1] = " text",
[2] = “bla bla”
…
}
How would you go about implementing this?