mob
verb
hi()
for(var/obj/weapon/w in usr.contents)
var/list/l = new/list
l.Add(w)
world << "[l.len]"
usr.client.screen += new/obj/name/dork
My Question:
If their is more than 1 obj/weapon in usr.contents why is the line "world << "[l.len]" only outputting 1?
Any help or (polite)comments will be appreciated.
CyanHB
Try defining l before the for loop so it doesn't keep resetting.