ID:172753
 
How do I show a whats in a list (just the names) in a alert proc?
Might not be the most effective way, but here's what I'd do:
var/names = ""
var/list/L = list("One","Two","Three")
for(var/a in L)
names += ", [a]"
alert(names)
In response to DerDragon
Nevermind thanks!