I'm able to pick a random number for my items in my game but is it possible to pick a random number between 2 numbers?
so instead of
let number = (arc4random_uniform(100))
I would like something like this:
let number = (arc4random_uniform(10...20))
or something like that? Now if I get a weapon drop it can be everything in my list. This way I could make it so that only the first few would have a drop for a specific monster or at higher level they would drop better weapons and not the low levels anymore.