I need a generator that can generate any number from 0.01 to 5.00. Is there a way to do this? {0-5} just does whole numbers, and {0.01-5.00} gives me an error message, as does {0.01-5}.
You must log in or register to comment.
Might be useful -
random-decimal-plugin
But you can create a range from 0.00 to 4.99 by
{0-4}.{0-9}{0-9}
or if you want to include the5
, it will be something like this{{0-4}.{0-9}{0-9}^500|5}
, the other has a probability of 500 since the total combinations of that ranges is 500 and if we don’t add that, it will be a 50-50 chance for a decimal and 5Thank you!