ID:1636509
 
(See the best response by Ralf1324.)
How do I check the contents of a list?

mob
var
list/L1 = list()

verb
checklist()
usr << "[L1]"

Just gives the output /list. How do I check the contents?
Best response
Try this:

for(var/listitem in usr.LI)
usr<<"[listitem]"
Works perfectly fine. Thank you.
No problem - good luck =D