Forum > Coding >

How to change "waiting for inject" to "injected" and etc.

Posts: 6

Threads: 2

Joined: Mar, 2020

Reputation: 0

Posted

Im trying make a exploit for me and my friends and Im newbie for this job.

I need a status bar. Its starting like this "Not injectedand if I enject, its change to this "Injected".

And how to do this, "Im selecting a script from listbox and click *Execute Listbox* button or right click the script and click "Load" and its need working".

 

Someone please help for my exploit. Im new on this C# :(

  • 0

Added

Thanks for reply but I cant run it. Im using WRD api. I little bit change it because it was completely red. But I cant solve this :(
https://imgur.com/a/OgxekdE

  • 0

Added

Ok. I fix that.

if (api.isAPIAttached())

 

            {

                panel3.BackColor = Color.FromArgb(69,210,111); //rgb color codes for panel

                StatusLabel.Text = "Enjekte edildi."; //message

            }

 

            else

 

            {

                panel3.BackColor = Color.FromArgb(187,20,62) ; //rgb color codes for panel

 

                StatusLabel.Text = "Enjekte edilmesi bekleniyor..."; //message

            }

  • 0

Added

I fix that but now I need a *right click selections* from *listbox*. Now on my exploit, I select a script and its transfer into my console screen. I need a right click selections. Like *clicking a script with right click and open a list "Load", "Execute etc.*

Now I have this;

private void listBox1_SelectedIndexChanged(object sender, EventArgs e) => fastColoredTextBox1.Text = File.ReadAllText($"./scripts/{listBox1.SelectedItem}");

How can I change this into a right click menu?

  • 0

Added

I add this selections;

-Execute

-Tranfer to console

-Delete

so how can I do this?

  • 0

Posts: 11

Threads: 4

Joined: Feb, 2020

Reputation: 0

Replied

if (api.isAPIAttached == true) //i coded this on my phone hope it works man good luck

{

    label1.Forecolor = Color.Green;

    label1.Text = "Injected";

}

else if (api.isAPIAttached == false)

{

    label1.Forecolor = Color.Red;

    label1.Text = "Not Injected";

}

  • 0

Users viewing this thread:

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