UW2_PRC8/_module/nss/run_announcement.nss
Jaysyn904 5197ad9a4d Initial upload
Initial upload
2023-09-25 20:24:01 -04:00

14 lines
438 B
Plaintext

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();
}
}