/// <param name="groupID">Group <see cref="UUID"/></param>
/// <param name="acceptNotices">Accept notices from this group</param>
/// <param name="listInProfile">List this group in the profile</param>
public void SetGroupAcceptNotices(UUID groupID, boolean acceptNotices, boolean listInProfile)
{
SetGroupAcceptNoticesPacket p = new SetGroupAcceptNoticesPacket();
p.AgentData.AgentID = Client.self.getAgentID();
p.AgentData.SessionID = Client.self.getSessionID();
p.Data.GroupID = groupID;
p.Data.AcceptNotices = acceptNotices;
p.NewData.ListInProfile = listInProfile;