INSTRUCTIONS: 1) cd pgplus/src admin2.c 2) search for list_ministers 3) delete that code and replace it with the code below 4) compile and reboot Here is the new lsm command. /* new list minister command by ChRiSmAn */ void list_ministers( player *p, char *str ) { player *s; char *oldstack = stack; strcpy(stack, "\n+====================MinistersOn=======================+\n") ; stack = strchr(stack, 0); strcpy(stack, "|Name\t\t\tIdle\t\t\t\t|"); stack = strchr( stack, 0 ); strcpy(stack, "\n+=======================================================+\n"); stack = strchr( stack, 0 ); for( s = flatlist_start; s; s = s->flat_next ) if( s->residency & MINISTER ) { sprintf(stack, "%-23s %d (seconds)\n", s->name, s->idle); stack = strchr(stack, 0); } strcpy(stack, "\n+=======================================================+\n"); stack = strchr(stack, 0); *stack++=0; tell_player( p, oldstack ); stack = oldstack; } This is the output of the code: +====================Ministers On=======================+ |Name Idle | +=======================================================+ test 4 (seconds) ChRiSmAn 0 (seconds) +=======================================================+ ______________________________________________________