419 @verb #1011:"hl" any none none rxdo #7153 @program #1011:"hl" any none none "Syntax: hl " "Example: hl brian torkain" "" "Use: If the player or players are connected, it tells you how long they have been connected for. If they aren't connected, it tells you how long they were connected for the last time they were on." this:update_usage(verb, player) set_task_perms(player) if (args) for x in (args) who = $string_utils:match_player(x) if ($command_utils:player_match_result(who, x)[1]) else if (who in connected_players()) time = time() - who.last_connect_time player:tell(who.name, " has been connected for ", $time_utils:english_time(time), ".") else time = who.last_disconnect_time - who.last_connect_time player:tell(who.name, " was connected for ", $time_utils:english_time(time), ".") endif endif endfor else player:tell("Usage: hl <player or players>") endif "Last modified by Dax (#789) on Thu Nov 8 11:38:31 2001 MST." . 0