Switch to edit mode.
Name(s): do_pueblo_contents1: "For the puebloites."
2: "Usage: :do_pueblo_contents(connected players, disconnected players, objects)"
3: {awake, sleep, thing} = args
4: $command_utils:suspend_if_needed()
5: if (length(thing) == 1)
6: $msg:mtell("thing_sing", $pueblo_utils:title_list(thing))
7: elseif (length(thing) > 1)
8: $msg:mtell("thing_plur", $pueblo_utils:title_list(thing))
9: endif
10: if (length(sleep) == 1)
11: $msg:mtell("sleeping_sing", $pueblo_utils:title_list(sleep))
12: elseif (length(sleep) > 1)
13: $msg:mtell("sleeping_plur", $pueblo_utils:title_list(sleep))
14: endif
15: if (length(awake) == 1)
16: $msg:mtell("player_sing", $pueblo_utils:title_list(awake))
17: elseif (length(awake) > 1)
18: $msg:mtell("player_plur", $pueblo_utils:title_list(awake))
19: endif
20: "Last modified by Jay (#8438) on Tue Jan 23 13:24:47 2001 MST."