EnglishMan Posted June 21, 2017 Share Posted June 21, 2017 Hi, I have a question. How to make the math.random function not be able to draw twice the same number in a row? Sorry for my English, I'm not from this country. Link to comment
Moderators IIYAMA Posted June 21, 2017 Moderators Share Posted June 21, 2017 after randomize it, save the last result in a variable. With the next randomization you will have to check if the new value is not the same as the old one. local lastRandomResult local randomResult repeat randomResult = math.random() until lastRandomResult ~= randomResult lastRandomResult = randomResult 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now