Basically im trying to make a percentage based chance sytem
however the chance systems i’ve found change depending on the other values, i want these to not change even when the values near them changes, creating a perfect percent
--i hope i didnt mess up the code block :sob:
local Chances = {{"Legendary",3},{"Epic",10},{"Rare",20},{"Uncommon", 50},{"Common",100}}
while true do
local random = math.random() * 100
for i,v in pairs(ChanceTable.ChanceTest) do
if v[2] >= random then
print(v[1])
end
end
task.wait(1)
end
the problem with this code is that if i was to change somethings chance to something else it would break
as an example, if i was to set the uncommons chance to 40 then commons chance would go up from 50% to 60%
how can i make it so that i can change the uncommons chance without having to change commons change
prob made a spelling mistake which made it like that
in game it works perfectly fine
(i rewrote the code while making the post, sorry about the inconsistency)
But then again your right would have to change the rarities to increase chances as if one goes up the other one too.Or you can add a range between chances to prevent common rarity changing.
also the things you’re mentioning have nothing to do with the problem im mentioning
the for i,v in pairs() part of the code checks if v is below or equal to random
assuming that v is 100 (common) it would have a 50% chance of it being picked beacuse if random returns 50 then uncommon would be picked
which means that if random is a number between 100 and 50 it will select common (50%)
if its a number between 50 and 20 it will be uncommon (30%)
if its a number between 20 and 10 it will be rare (10%)
if its a number between 10 and 3 it will be epic (7%)
if the number is below 3 or equal to 3 then it will be legendary
i hope now you understand how the code works
the thing im asking is how can i decrease the uncommons max chance value without accidentally increasing common’s chance
local Chances = {{"Legendary", 1}, {"Epic", 5}, {"Rare", 20}, {"Uncommon", 30}, {"Common", 100}}
while true do
for _, v in ipairs(Chances) do
--math.randomseed(tick())
if math.random(1, 100) <= v[2] then
print(v[1])
break
end
end task.wait(1)
end
No it will always be 1 - 100… A little different way of doing it here along with a drastic difference in the number set up. This approach is to generate a weighted table based on absolute values rather than cumulative probabilities.
wait i was writing the message to debunk your code saying theres a small chance of it returning nothing but im wrong, i think you created the PERFECT percentage based chance system
wait is it this? im sorry but idk what “changing values” ur referring to. do u mean changing the value in the table? or is it about creating other variables?