document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. i = 0
  2. local char_count
  3. for obj in thisobj
  4. {
  5. if children(obj) and obj is not hidden and
  6. (obj is not already_listed or
  7. thisobj ~= location) and not ClothingCheck(obj)
  8. char_count++
  9. if char_count = 2
  10. break
  11. }
  12. for obj in thisobj
  13. {
  14. if children(obj) and obj is not hidden and
  15. (obj is not already_listed or
  16. thisobj ~= location) and not ClothingCheck(obj)
  17. {
  18. if FORMAT & TEMPLIST_F
  19. {
  20. FORMAT = FORMAT | LIST_F & ~TEMPLIST_F
  21. i = true
  22. print newline
  23. }
  24.  
  25. if count > 1 and obj.type = character
  26. {
  27. FORMAT = FORMAT | USECHARNAMES_F
  28. if char_count = 2
  29. {
  30. print newline
  31. override_indent = false
  32. }
  33. }
  34. templist_count = list_count
  35. WhatsIn(obj)
  36. list_count = templist_count
  37. }
  38. }
');