Posted
I was wondering if anyone knew how to add a status label were it says attached not attached?
SwayZ Exploits
ROBLOX | C# | Gaming
Swayz#0001
Replied
You check if that process has the module that you injected :
https://docs.microsoft.com/en-us/windows/win32/psapi/enumerating-all-modules-for-a-process
Cancel
Post
Replied
First add a timer.
private void timer1_tick(blah blah blah);
{
this.CheckAttached();
}
private void CheckAttched();
{
if (api.Attached())
{
label2.Text = "Atached!";
}
else
{
label2.Text = "Not Attched";
}
}
it might be differnt for you but this what worked for me
aslo add colours but i forgot
use dot peek to look at others code
Cancel
Post
The Exploits I Use:
Synapse X File SÂ Dark Fire
SwayZ Exploits
ROBLOX | C# | Gaming
Swayz#0001
Replied
Based on: https://wearedevs.net/d/Exploit%20API
[code]
ExploitAPI api = new ExploitAPI();
private void something() {
if(api.isAPIAttached()) {
Console.WriteLine("Attached");
} else {
Console.WriteLine("Not Attached");
}
}
[/code]
Cancel
Post
Proud creator of: WRD+
Replied
@48406he means on the exploit on the game
Cancel
Post
The Exploits I Use:
Synapse X File SÂ Dark Fire
Users viewing this thread:
( Members: 0, Guests: 0, Total: 0 )
Cancel
Post