Hi, I've seen that people tend to use int instead of real when using random number. I've read something earlier about it being because it has loads of possibilites, for example it can be 0.135123. Is this a thing people do to increase the performance? For example if I want to have 15% chance of something I usually put
- (Random real number between 0.00 and 1.00) Less than or equal to 0.15
- (Random integer number between 1 and 100) Less than or equal to 15