For example. i have a table
t = {Variant1 = 33, Variant2 = 1, Variant3 = 123, Variant4 = 33}
I need to find the key(s) with highest value(s). So, how can i compare it?
This is how I always do it.
local highest = 0 local t = {Variant1 = 33, Variant2 = 1, Variant3 = 123, Variant4 = 33} for i,v in pairs(t)do if v > highest then highest = v end end print(highest)
This is the most(maybe) solution I can found:
local t ={1, 2, 3} print(math.max(unpack(t)))
About the randomize, why you need to randomize it when it already the same?