@verb #2992:"@ilast" none none none rxd #562 @program #2992:"@ilast" none none none "Returns a list of interesting people, and their last disconnect times." "(I hope.)" "Usage: @ilast" "" if (caller == player) idx = $list_utils:iassoc(player, ti = this.inter) " set_task_perms(player);" if (!idx) player:tell("You have no interesting list set.") elseif ($list_utils:sort(who = ti[idx][3])) player:tell($su:columnize({"Player", "Last disconnected"}, 2)) player:tell($su:columnize({"------", "-----------------"}, 2)) for each in (who) player:tell($su:columnize({each.name, each:connected() ? "** Currently online **" | ctime(each.last_disconnect_time)}, 2)) endfor this:update_usage(verb) endif endif "Last modified by killeen (#562) on Sat Sep 2 09:19:01 2000 MDT." .