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 injected" and 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# :(
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
Cancel
Post
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
}
Cancel
Post
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?
Cancel
Post
Added
I add this selections;
-Execute
-Tranfer to console
-Delete
so how can I do this?
Cancel
Post
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";
}
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post