• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Number Randon

mcfeba

New Member
Joined
Nov 26, 2019
Messages
3
Reaction score
0
Location
Brasil
Good Morning ...

How do I draw a random number between 1 and 10 with a 70% chance of coming over number 6.
Please help me as I have no idea how to do this.

Thank you
 
LUA:
local rand = math.random(1, 5)
if math.random(100) <= 70 then
    rand = math.random(6, 10)
end
 
Solution
Back
Top