Profile Picture

thecodefodder

Reputation: 0 [rate]

Joined: Mar, 2023

Last online:

Rust is the best language

Bio

Shitty Coder

Badges

badge

Etc

Send Message

Threads List
Possible Alts

Activity Feed

Replied to thread : I can’t attach the cheat because an error pops up 28-03-2023_13-26-14_crash.txt


Providing the actual crash log would've helped but log names are cool too. Anyways my guess would probably be Windows defender (or any other AV) is blocking the exploit from injecting but that's just a guess bc again. You did not provide any actual information.

Created a new thread : WPF Where do you get your icons


The uis I see on here have way better icons compared to my ui I'm just wondering where everyone gets them.

 

 

Edit: Thanks for all the great replies.

Replied to thread : CefSharp / Monaco issue?


@tempegoreng, It's not a huge deal tbh this is just a executor im making for myself because syn is going sub based. Thanks for the suggestion tho.

Created a new thread : CefSharp / Monaco issue?


I've recently tried using cefsharp & monaco but when i try loading certain scripts into the editor i get this error

 

Uncaught SyntaxError: Invalid or unexpected token

@ about:blank:1:9

 

Has anyone else had this issue? Im using default monaco

 

Ill supply some code now just incase someone decides to help.

 

Edit: Fixed it by parsing the script :facepalm:


 var escapedScript = script.Replace("\\", "\\\\").Replace("'", "\\'").Replace("\"", "\\\"").Replace("\n", "\\n").Replace("\r", "\\r");

here's my fix for anyone who needs it.

 

 

// Class for loading data into the editor

public async void SetValue(ChromiumWebBrowser webBrowser, string script)
        {
            //MessageBox.Show(script);
            var result = await webBrowser.EvaluateScriptAsync($"setValue('{script}')");
            if (!result.Success)
            {
                MessageBox.Show($"An error occurred while loading the script: {result.Message}. This error has been copied to your clipboard.");
                Clipboard.SetText(result.Message);
            }
        }

// Load text from the txt and use the SetValue method

private void scriptsListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            string script = File.ReadAllText("./Scripts/" + scriptsListBox.SelectedItem);
            editor.SetValue(wb, script);
        }




// JS stuff

function setValue(value) {
            editor.setValue(value);
        }

Replied to thread : Rate My UI, and give Suggestions


What text editor are you using? i've been out of the roblox exploiting scene since winforms and flatui.