Categories > Exploiting > WRD Exploit API >
can i pls ask one more time -.-
Posted
i want my fastcoloredtextbox show the text dll connected when the api attached but i tried using this
{
if (module.IsAPIAttached == true)
fastcoloredTextBox1.Text = "Dll connected"
}
but when i debug it doesnt work pls help me
Replied
you didn't even put the brackets after the if statement,
if (module.IsAPIAttached == true) {
fastcoloredTextBox1.Text = "Dll connected"
}
im feeding you too much code, learn yourself
Cancel
Post
https://cdn.discordapp.com/attachments/877610317037858846/975469974405673041/Signature.png
Replied
Make a timer and use this
/* Paste in timer tick event */
If(module.IsAttached())
FastcoloredTextBox.text = “DLL Connectedâ€;
Cancel
Post
Discord : Doctor Doom#0550
Replied
var Timer = new System.Timers.Timer() { Interval = 1000 };
Timer.Elapsed += (s, e) =>
{
if (Module.IsAttached())
TextBox.Text = "Attached";
};
Timer.Start();
Cancel
Post
Replied
just use the ternary operator, it looks much cleaner imo
fastcoloredTextBox1.Text = module.isAPIAttached() ? "Injected" : "Not injected";
paste that in a timer event, don't forget to start the timer
Cancel
Post
Replied
@37266sir your code is working good thank you but when i clear the textbox the text appear again so i cant execute code can u help me please
Cancel
Post
Replied
add a new label from the toolbox, change its name to status and change
fastcoloredTextBox1.Text = ...
to
status.Text = ...
Cancel
Post
Replied
make a task scheduler
start scheduler on inject
wait scheduler til task completed
stop scheduler after task completed
start scheduler on process.exit
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post