public NewpStatsballGump(NewpStatsball statsball, Mobile from)
            : base(20, 30)
        {
            m_From = from;
            m_Statsball = statsball;

            constructGump();
        }
        public NewpStatsballGump(NewpStatsball statsball, Mobile from, int str, int dex, int intel, string status, int statusOffset)
            : base(20, 30)
        {
            m_From = from;
            m_Statsball = statsball;

            m_str = str;
            m_dex = dex;
            m_int = intel;

            m_status = status;
            m_statusOffset = statusOffset;

            constructGump();
        }
        public SetNewpStatGump(Mobile from, NewpStatsball statsball, int statToChange, int str, int dex, int intel)
            : base(20, 30)
        {
            m_From = from;
            m_Statsball = statsball;

            m_stat = statToChange;
            m_str = str;
            m_dex = dex;
            m_int = intel;

            AddBackground(0, 0, 90, 60, 5054);

            AddImageTiled(10, 10, 72, 22, 0x52);
            AddImageTiled(11, 11, 70, 20, 0xBBC);
            AddTextEntry(11, 11, 70, 20, 0, 0, "0");
            AddButton(15, 35, 0xFB7, 0xFB8, 1, GumpButtonType.Reply, 0);
            AddButton(50, 35, 0xFB1, 0xFB2, 0, GumpButtonType.Reply, 0);
        }