D
Deleted member 141899
Guest
Hello, what a % of chance is it?
if math.random(1000) > 50 then
i don't understand.
Thanks.
if math.random(1000) > 50 then
i don't understand.
Thanks.
-- math.random(min, max)
math.random(10, 20)
x = math.random(1000)
print(x > 50, x)
Hello, what a % of chance is it?
if math.random(1000) > 50 then
i don't understand.
Thanks.