void main() { object oPC = GetFirstPC(); string sAnnouncement = GetLocalString(GetModule(),"Announcement"); string sAuthor = GetLocalString(GetModule(),"Announcement_Author"); while(GetIsObjectValid(oPC)) { if(GetIsDM(oPC)) SendMessageToPC(oPC,"Module wide announcement being sent, created by DM " + sAuthor + "."); SendMessageToPC(oPC,sAnnouncement); oPC = GetNextPC(); } }