Posted
Hey i need help I have almost finished my exploit but I would like to put one last thing an injection status like Status:injected in green and Status:Not Injected in red for WeAreDev and i try some code with bool but nothing works if someone could help me that would be cool
Replied
can you provide more context?
but uh if u want to check if api is attached or not check out isAPIAttached() methods
https://wearedevs.net/d/Exploit%20API
Cancel
Post
Replied
Use a timer lol
Cancel
Post
Discord : Doctor Doom#0550
Replied
I tried with this but it didn't work
-
bool yes = isAPIattached;
-
if(yes == true)
-
{
-
API.SendCommand("print Exploit Attached");
-
labelname.Text = "Status:Attached";
-
labelname.ForeColor = Color.LimeGreen;
-
}
-
else
-
{
-
labelname.Text = "Status:Not Attached";
-
labelname.ForeColor = Color.Red;
-
}
and i tried with that
bool yes = isAPIattached;
if (Process.GetProcessesByName("RobloxPlayerBeta").Length == 1)
{
API.SendCommand("print Exploit Attached");
label13.Text = "Status:Attached";
label13.ForeColor = Color.Lime;
}
else if (Process.GetProcessesByName("RobloxPlayerBeta").Length == 0)
{
label13.Text = "Status:Not Attached";
label13.ForeColor = Color.Red;
}
Cancel
Post
Replied
//Use this if u want just changing the text
label13.Text = API.IsAPIAttached() ? "Attached" : "Not Attached";
if (API.IsAPIAttached())
{
Label13.Text = "Attached";
//Do Smth Or WhatEver
}
else
{
Label13.Text = "Not Attached";
//Do Smth Or WhatEver
}Cancel
Post
Replied
With easy code you can:
using WeAreDevs_API;
ExploitAPI api = new ExploitAPI();
public Main
{
timer1.Enabled = true;
}
private void CheckInject()
{
if(api.isAPIAttached())
{
label1.Text = "Injected!"
}
else
{
label1.Text = "No injected!"
}
}
private void timer1(object sender, EventArgs e)
{
CheckInject();
}
You can use this. But, it's your choose.
You can added Button functions. Change "label1.Text" to "Button1.Text" and worked!
Cancel
Post
.NET, Lua
"Questionable intellegence, but I like the mystery" - CubeFaces
https://cdn.discordapp.com/attachments/1136067487847415848/1138948596679589898/sig.png
.NET, Lua
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post