For example, can you make math.Random(1,10) have a higher probability to choose 1-5, rather than the same probability for all the numbers (1-10)?
I dont know if you can add probability to a a math.random, but you can use it to make probabilistic events:
01 | local gen = math.random( 1 , 100 ) |
02 |
03 | if gen < = 10 then |
04 | -- 10% chances |
05 | elseif gen > = 10 and gen < = 30 then |
06 | -- 20% chances |
07 | elseif gen > = 30 and gen < = 60 then |
08 | -- 30% chances |
09 | elseif gen > = 60 and gen < = 100 then |
10 | -- 40% chances |
11 | end |