Just something I did last night in a couple spare moments; small, I know, but what the hey? Lets get some code on this list again! ------------------------------------------------------------------------- /* This meager bit of code is, oddly enough, copyrighted by * Ferric of MelmothMUD.  Feel free to use it to your hearts content; * it's something you could have come up on your own easily enough. * If you do use this, or the idea, drop me a line at ferric@uwyo.edu, * just so I know my contributions (however small :) are worth something! */ void do_idle(CHAR_DATA *ch, char *argument) {  CHAR_DATA *vch;  CHAR_DATA *vch_next;  char      buf[MAX_STRING_LENGTH];  send_to_char("Players:  Idle Time:\n\r--------------------\n\r",ch);  for(vch=char_list; vch != NULL; vch=vch_next)    {      vch_next = vch->next;      if(IS_NPC(vch)) /*Forgot this check the first time; *ugh*. -Ferric*/ continue;      sprintf(buf,"%s            %d\n\r",vch->name,vch->timer);      send_to_char(buf,ch);    } }