From: Raf Subject: send_to_except I was looking through the old-docs, and came a across a thing called send_to_except. Unfortunatly, it doesnt seem to be part of stock anymore... So I wrote one of my own :) comm.h ------ after void send_to_all(char *messg); insert: void send_to_except(char *messg, struct char_data *ch); comm.c ------ after the void send_to_char function, insert: void send_to_except(char *messg, struct char_data *ch); { struct descriptor_data *i; if (messg && ch->desc) for (i = descriptor_list; i; i = i->next) if (!i->connected) if (i != ch->desc) SEND_TO_Q(messg, i); }