Exemple #1
0
        private bool CheckProcess()
        {
            string msgsTitle, msgs;

            if (MC.CheckProcess(out msgsTitle, out msgs))
            {
                if (msgsTitle != null)
                {
                    MessagesTitle = msgsTitle;
                }

                if (msgs != null)
                {
                    Messages = msgs;
                }

                OpenGump();
            }

            return(MC.CheckProcess());
        }
        private bool CheckProcess()
        {
            string msgsTitle, msgs;

            if (MC.CheckProcess(out msgsTitle, out msgs))
            {
                if (msgsTitle != null)
                {
                    MessagesTitle = msgsTitle;
                }

                if (msgs != null)
                {
                    Messages = msgs;
                }

                SetArgsList();

                gumpMobile.SendGump(new MegaSpawnerEditGump(gumpMobile, ArgsList));
            }

            return(MC.CheckProcess());
        }