i know how to do this
1 | local num = math.Random( 1 , 3 ) |
2 | if num = = 3 then |
3 | end |
but can i have something that does something like this
1 | local chanceToDoThing = 10 / 100 --10% |
and then it only does something 10% of the time
You can just insert a value into a table 10 times and make one of those values a different value and then you can detect chance:
For example:
01 | local rng = Random.new() |
02 |
03 | local tab = { 'Rare' , 'Common' , 'Common' , 'Common' , 'Common' , 'Common' , 'Common' , 'Common' , 'Common' , 'Common' } |
04 |
05 | local function returnChance() |
06 | local chance = rng:NextInteger( 1 , #tab) |
07 | return tab [ chance ] |
08 | end |
09 |
10 | print (returnChance()) |