Forum > General >

[question]How to make Output?

Posts: 1037

Threads: 78

Joined: Feb, 2021

Reputation: 75

Posted

I accidentally asked on how to make a debug lib when i meant to say Output like sentineal and other executors.So i can see if there was any errors or if it never injected.

 

Love And Thanks

SpaceSpiffer 

  • 0

https://media.discordapp.net/attachments/1013939973671624917/1027279180192292944/unknown.png
https://media.discordapp.net/attachments/1010670716062007347/1108945330847883274/image.png

TERIHAX

i say im gay as a joke 🙀

Posts: 1789

Threads: 92

Joined: Jul, 2020

Reputation: 30

Replied

if you were someone else ill go mad, but since its u, ill tell ya, just make a new richtextbox or textbox and make it readonly and multiline, and when some event happens, do:

OutPutTextBox.Text += "What text u wanna put";

^^^ btw this adds text and doesnt remove other text that has already been there, if dont want that, then do this:

OutPutTextBox.Text = "What text u wanna put";
  • 0

Posts: 395

Threads: 20

Joined: Apr, 2021

Reputation: 24

Replied

@TERIHAX im pretty sure he also ment like in the dll, so if theres errors its also in the output

  • 0

back lol

TERIHAX

i say im gay as a joke 🙀

Posts: 1789

Threads: 92

Joined: Jul, 2020

Reputation: 30

Replied

@Lxnnyy nah thats not it, sentinel output is in the exploit, and for doing if its attached or not:

if (API.isAttached())
{
    OutPutBox.Text += "Attached!!!!!!!!!!!!!!!!!!!!!11";
}
  • 0

Posts: 1037

Threads: 78

Joined: Feb, 2021

Reputation: 75

Replied

@59690thank you 

  • 0

https://media.discordapp.net/attachments/1013939973671624917/1027279180192292944/unknown.png
https://media.discordapp.net/attachments/1010670716062007347/1108945330847883274/image.png

TERIHAX

i say im gay as a joke 🙀

Posts: 1789

Threads: 92

Joined: Jul, 2020

Reputation: 30

Replied

  • 0

RealChronics

Roblox Trafficker

vip

Posts: 218

Threads: 26

Joined: Dec, 2020

Reputation: 20

Replied

@Hiroku to detect if roblox is open I guess, I actually have a full built output system u can dm me on discord, RealChronics#2286

Process[] processes = Process.GetProcessesByName("Roblox");
foreach (Process process in processes)
{
    outputbox.text = "Inject/Roblox has been found"
}
else 
{
     outputbox.text = "Couldnt find roblox"
{
  • 0

Added

so heres some else aswell

 private async void inject_click(object sender, RoutedEventArgs e)
        {
            API.Inject();

            Editor.Text += Environment.NewLine + "Injecting...";
            await Task.Delay(2800);
             
            if (API.NamedPipeExist())
            {
                Editor.Text += Environment.NewLine + "You already injected the dll silly!";
            }
            if (API.isAPIAttached()) 
            {
                Editor.Text += Environment.NewLine + "Injection Succesful!";  
            }
            else
            {
                Editor.Text += Environment.NewLine + "Injection failed! did roblox update?";
            }
        }

private async void execute_click(object sender, RoutedEventArgs e)
{
            if (API.isAPIAttached()) 
            {
                api.execute(texteditorname.text)
                Editor.Text += Environment.NewLine + "Executed!";  
            }
            else
            {
                Editor.Text += Environment.NewLine + "Execution failed! did you inject?";
            }
}
  • 0

https://media.discordapp.net/attachments/979496861738086420/981316649661632562/4353979.png

https://cdn.discordapp.com/attachments/930896685230612592/931747495514628207/unknown.png

 

MINISHXP

minishxp

Posts: 813

Threads: 5

Joined: Jan, 2021

Reputation: 9

Replied

you make a function to add text to the text box lmao, like this:

void Log(string txt, TextBox defaulttextbox = SomeDefaultTextBoxIdk) {
    SomeDefaultTextBoxIdk.Text += "\n" + txt;
}
  • 0

hi123

Posts: 1037

Threads: 78

Joined: Feb, 2021

Reputation: 75

Replied

@63716Thank you this was really help full

  • 0

Added

@64714thank you this helped as well

 

  • 0

Added

@65993thank you this helped too

 

  • 0

https://media.discordapp.net/attachments/1013939973671624917/1027279180192292944/unknown.png
https://media.discordapp.net/attachments/1010670716062007347/1108945330847883274/image.png

TERIHAX

i say im gay as a joke 🙀

Posts: 1789

Threads: 92

Joined: Jul, 2020

Reputation: 30

Replied

@RealChronics

{

     outputbox.text = "Couldnt find roblox"

{

 

it should be }

  • 0

Users viewing this thread:

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