Posted
How would I make something in Visual Studio where it will say if attached was succesful or not. Where it will say Attached: Offline or Online. How would I do that???
Added
No I mean like I want a section where it says if it's attached or not for people to see. I got no clue how to code, and I'm doing it in C#
Cancel
Post
Added
I mean like the executor Electron got it too. If you go to Electron's page and see they're images it shows Electron as the name of the exe then it says OFFLINE. And when inejct to Roblox it says ONLINE. How can I make that for my executor?
Cancel
Post
Replied
Make a timer and set it's interval to "2000", Make sure it's enabled.
After doing the first step, Make a label and Put this as its text: "Status: Offline".
Once done with the second step, Double-click the timer you made in the first step and add this code in it:
if (YourApi.IsAPIAttached() == true) //If it's attached. Change the "YourApi" to your api's referenced name (ExploitAPI dll = new ExploitAPI(); - "dll" is the ref name)
{
label1.Text = "Status: Online"; //Change the "label1" to your label's name
}
else // If it is attached
{
label1.Text = "Status: Offline"; //Change the "label1" to your label's name
}
Don't skid it, Learn how it works and learn C#. Feel free to use it though, No need for credits.
(Sorry for spoonfeeding, devs)
Cancel
Post
Added
Edit: The "IsApiAttached()" function does not work with every api/dll. It might be a different name or in some cases it won't even be there if the developer did not implement it. Don't ask me what to do if you're using Axon, I'm not gonna help you skid.
Cancel
Post
https://media.discordapp.net/attachments/994643402949926956/1004560140252495960/uqJXQIda.gif
Discord: Ad#1085; Don't hesitate to DM me if you need help/anything.
Replied
Thanks now I know how to get started on it. I think I'll make 2 text boxes 1 above the other and then do the hide and show command.
Cancel
Post
Replied
Thanks! Now I got a idea on what to do.
Cancel
Post
Added
@68804
Crongrats on mod! Thank's for talking bout my reputation decreasing.
Cancel
Post
Replied
@erwerwer I didn't even touch your rep nor am I going to, it's the same as before I was mod
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 0, Total: 0 )
Cancel
Post