ID:175460
 
Lets say I have this list.

var/list
Clans = list("Legacy","Holy Knights","Apostles Of War")

Now if I do this,

usr<<Clans

I get this on the screen,

/list

How do I get it so the variables in the list show on the usr's screen?

Creator of R.P.D.
Creator of Soulance
Rifthaven

for(var/L in Clans)
usr << L
In response to Nadrew
Thanks