ID:1399100
 
(See the best response by Topkasa.)
I pretty much need help on trying to obtain the highest number variable from mobs around me.

Good example.

5 people around me roll a dice, I want to obtain the
highest roll without finding out the other numbers.
How would I do this?
Best response
var/Roll = src.RolledValue
for(var/mob/M in view())
if (M.RolledValue > Roll)
Roll = M.RolledValue

return Roll