Forum > Coding >

Help dll injection status (Axon)

Posts: 18

Threads: 7

Joined: Feb, 2019

Reputation: 0

Posted

does anybody know how to detect if exploit is injected

  • 0

Posts: 53

Threads: 14

Joined: Jan, 2018

Reputation: 0

Replied

make it check if the lua namepipes exist

  • 0

I use synapse sometimes
Languages i have experience with: c#, lua, javascript.

Posts: 1

Threads: 0

Joined: Apr, 2019

Reputation: 0

Replied

And how do i make it check that?

  • 0

Theo339

Theo339

Posts: 20

Threads: 8

Joined: Mar, 2019

Reputation: 0

Replied

  // You need to make a timer named Timer1

// And a label named StatusLabel

// And have to enable the Timer in the settings of them

  private void Timer1_Tick(object sender, EventArgs e)
        {
            // Checks if the WeAreDevs API is attached
            if (!this.api.isAPIAttached())
            {
                this.StatusLabel.Text = "Status: Nicht mit Roblox verbunden"; 
                this.StatusLabel.ForeColor = Color.Crimson;
            }
            else
            {
                this.StatusLabel.Text = "Status: Mit Roblox verbunden";
                this.StatusLabel.ForeColor = Color.SpringGreen;
            }

  • 0

I Love Unity and C#

Users viewing this thread:

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