PKHeX.Form1.B_OpenOPowers_Click C# (CSharp) Method

B_OpenOPowers_Click() private method

private B_OpenOPowers_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void B_OpenOPowers_Click(object sender, EventArgs e)
        {
            // Open O-Power Menu
            if (savegame_oras)
            {
                DialogResult dr = Util.Prompt(MessageBoxButtons.YesNo, "No editing support for ORAS :(", "Max O-Powers with a working code?");
                if (dr != DialogResult.Yes) return;
                byte[] maxoras =
                { 
                    0x00, 0x01, 0x01, 0x01,
                    0x01, 0x00, 0x01, 0x01,
                    0x01, 0x01, 0x00, 0x01,
                    0x01, 0x01, 0x01, 0x00,
                    0x01, 0x01, 0x01, 0x01,
                    0x00, 0x01, 0x01, 0x01,
                    0x01, 0x00, 0x01, 0x01,
                    0x01, 0x01, 0x01, 0x01,
                    0x01, 0x01, 0x01, 0x01,
                    0x01, 0x01, 0x00, 0x01,
                    0x01, 0x01, 0x01, 0x00,
                    0x01, 0x01, 0x01, 0x01,
                    0x01, 0x01, 0x01, 0x01,
                    0x01, 0x01, 0x01, 0x01,
                    0x01, 0x01, 0x01, 0x01,
                    0x01, 0x01, 0x01, 0x01,
                    0x01, 0x00, 0x00, 0x00, 
                };
                Array.Copy(maxoras, 0, savefile, 0x17400 + 0x5400 + 0x7F000 * savindex, 0x44);
            }
            else
                new SAV_OPower(this).ShowDialog();
        }
        private void B_OpenPokedex_Click(object sender, EventArgs e)
Form1