Categories > Coding > C# >

Need help making multi api

Huddy

Domain Expansion

vip

Posts: 318

Threads: 18

Joined: Apr, 2022

Reputation: 22

Posted

Im trying to make a Winforms exploit that is multi api and I got most of the UI done now I made the tab system with usercontrols and now I need to link the Settings radiobutton to the Homes button to check which one is selected but everytime I set it up like this I get and error and idk how to fix it can someone help me I will show the code im using to link them below

CODE:

 

Settings s = new Settings();

if (s.radioButton1.Checked == true) ;

  • 0

Added

@Murz The settings is 1 the usercontrol name and I need an API selection for it

  • 0

Added

@Murz Yes i have 2 radiobuttons already made Fluxus API and WeAreDevs API

  • 0

Added

@Murz Thanks also thanks for not giving source code since I dont want to be called a skid 

  • 1

Discord Contact : showerhuddy

Posts: 2099

Threads: 10

Joined: Sep, 2020

Reputation: 62

Replied

That code wouldn't even work in the first place, you can't access the radio button / checkbox lol

  • 0

Discord : Doctor Doom#0550

Eggy

EGGS#7467

Posts: 81

Threads: 17

Joined: Nov, 2021

Reputation: -41

Replied

        void Inject()
        {
        if (this.FluxusRadioButton.Checked == true)
        {
           Fluxus.Inject(); //or however the hell fluxus works, never used it's API
        }
        else if (this.WeAreDevsRadioButton.Checked == true)
        }
           WeAreDevsModule.LaunchExploit();
        }
        else
       {
           MessageBox.Show("Please select an API...");
        }
        }

        private void Inject_Click(object sender, EventArgs e)
        {
            Inject();
        }

//Minimized version, which makes the app size smaller and run better:

void Inject(){if (this.FluxusRadioButton.Checked == true){Fluxus.Inject(); //or however the hell fluxus works, never used it's API}elseif(this.WeAreDevsRadioButton.Checked == true)}WeAreDevsModule.LaunchExploit();}else{MessageBox.Show("Please select an API before trying to 
inject...");}}private void Inject_Click(object sender, EventArgs e){Inject();}

//This doesnt save after app close, however it works well and is very useful. Whenever you want to inject on a button click, just type 'Inject();'

//Execute code:
void Execute()
        {
        if (this.FluxusRadioButton.Checked == true)
        {
           Fluxus.ExecuteScript(); //or however the hell fluxus works, never used it's API
        }
        else if (this.WeAreDevsRadioButton.Checked == true)
        }
           WeAreDevsModule.SendLuaScript();
        }
        else
       {
           MessageBox.Show("Please select an API...");
        }
        }

        private void Execute_Click(object sender, EventArgs e)
        {
            Execute();
        }
  • 0

Illuminate and Nexula owner, elite-exploits.com

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )