Switch to edit mode.
Name(s): tell_contents1: "Copied from Oblivion (#7951):tell_contents Nov 24 21:06:15 2000"
2: "Modified and Fixed by Samson (#9131)"
3: LIST = {}
4: player:tell("")
5: player:tell(this:title(), " has the following items on him:")
6: player:tell("")
7: for x in (this.contents)
8: LIST = {@LIST, {x, x:title(), x.owner:nn()}}
9: endfor
10: player:tellColumns("rll", {5, 40, 5}, {"#", "Item", "Owner"}, @LIST)
11: player:tell("")