Thagoras submitted a new resource:

Login Announcements Gump - A quick popup at login

Just a quick Announcements Gump that pops up at login.
You need to find OnLogin in the PlayerMobile and just add the highlighted line.
Playermobile.cs:
        private static void OnLogin(LoginEventArgs e)
        {
            Mobile from = e.Mobile;
            from.SendGump( new AnnouncementGump() );

            CheckAtrophies(from);

            if (AccountHandler.LockdownLevel > AccessLevel.VIP)
            {
                string notice...

Read more about this resource...
 
Back