ID:149611
 
How would I goesabout making a verb like
View High Score which views the scores of every mob in the world, then does,

alert("[Hname]:[HScore]")//Hname is High Name HScore is high score..

-FireEmblem
If you help me you will be informed on all special moves in my game*

*Only certain games.
mob
var/score = 0
verb
view_highscore()
var/mob/highscorer = new()
for(var/mob/M in world)
src << "[M.name]: [M.score]"
if(highscorer.score < M.score)
highscorer = M
alert("[highscorer]: [highscorer.score]!","High Score")