20 lines
407 B
C
20 lines
407 B
C
#include <command.h>
|
|
|
|
int
|
|
main(string arg)
|
|
{
|
|
object *list;
|
|
int j;
|
|
|
|
printf("%-25s idle\n", "name (*edit, +input)");
|
|
printf("-------------------- ----\n");
|
|
for (list = users(), j = 0; j < sizeof(list); j++) {
|
|
printf("%-25s %4d\n", (string)list[j]->query_name() +
|
|
(in_edit(this_player()) ? "*" : "") +
|
|
(in_input(this_player()) ? "+" : ""),
|
|
query_idle(this_player()) / 60
|
|
);
|
|
}
|
|
return 1;
|
|
}
|