Forum > Coding >

Attached Status

Posts: 28

Threads: 10

Joined: Jun, 2022

Reputation: -4

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???

  • 1

Added

@Murz

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#

  • 0

Added

@Murz

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?

 

  • 0

Posts: 314

Threads: 37

Joined: Feb, 2021

Reputation: 8

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)

  • 0

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.

  • 0

https://media.discordapp.net/attachments/994643402949926956/1004560140252495960/uqJXQIda.gif

Read me.

Discord: Ad#1085; Don't hesitate to DM me if you need help/anything.

Posts: 28

Threads: 10

Joined: Jun, 2022

Reputation: -4

Replied

@AlexSyndrome

 

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.

  • 0

Posts: 0

Threads: 0

Joined: ?

Reputation:

Replied

@erwerwer just make the value change...

  • 0

Added

@atari LMAO I can't though, no rules broken

  • 0

Added

@atari probably lmao

  • 0

Posts: 28

Threads: 10

Joined: Jun, 2022

Reputation: -4

Replied

Thanks! Now I got a idea on what to do.

  • 0

Added

@68804

Crongrats on mod! Thank's for talking bout my reputation decreasing.

  • 0

Posts: 0

Threads: 0

Joined: ?

Reputation:

Replied

@erwerwer I didn't even touch your rep nor am I going to, it's the same as before I was mod

  • 0

Users viewing this thread:

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