Пример #1
0
 private void Button1_Click(object sender, EventArgs e)
 {
     if (downloaded)
     {
         MainAPI.Execute(fastColoredTextBox1.Text);
     }
 }
Пример #2
0
 // Use this for initialization
 void Start()
 {
     APIClass = GameObject.Find("API");
     api      = APIClass.GetComponent <MainAPI>();
     itemList = api.getUserItems(GlobalControl.Instance.email);
     dropdown.ClearOptions();
     dropdown.AddOptions(itemList);
 }
Пример #3
0
    void Start()
    {
        WarriorClass = GameObject.Find("character");
        wrr          = WarriorClass.GetComponent <Warrior>();

        APIClass = GameObject.Find("API");
        api      = APIClass.GetComponent <MainAPI>();
    }
Пример #4
0
 void Start()
 {
     APIClass       = GameObject.Find("API");
     api            = APIClass.GetComponent <MainAPI>();
     first.enabled  = false;
     second.enabled = false;
     third.enabled  = false;
 }
Пример #5
0
    void Start()
    {
        APIClass = GameObject.Find("API");
        api      = APIClass.GetComponent <MainAPI>();

        WarriorClass = GameObject.Find("character");
        wrr          = WarriorClass.GetComponent <Warrior>();

        LvlManagerClass = GameObject.Find("Main Camera");
        lvlmng          = LvlManagerClass.GetComponent <LvlManager>();

        unlockedAb = new bool[3];                       //инициализация
        levelAb    = new int[3];
        unlockedAb = wrr.unlockedabilities;
        levelAb    = wrr.levelofabilities;
        _level     = wrr.level;
        string str = GlobalControl.Instance.LevelGrade;

        char[] charArray  = str.ToCharArray(0, 5);
        int    firstChar  = (int)Char.GetNumericValue(charArray[0]);
        int    secondChar = (int)Char.GetNumericValue(charArray[2]);
        int    thirdChar  = (int)Char.GetNumericValue(charArray[4]);

        _level        = wrr.level;
        unlockedAb[0] = true;
        unlockedAb[1] = true;
        unlockedAb[2] = true;
        levelAb[0]    = firstChar;
        levelAb[1]    = secondChar;
        levelAb[2]    = thirdChar;

        UnblockButton1.SetActive(false);
        UnblockButton2.SetActive(false);
        UnblockButton3.SetActive(false);

        Skill1.interactable = false;
        Skill2.interactable = false;
        Skill3.interactable = false;

        LvlUpSkill1.SetActive(false);
        LvlUpSkill2.SetActive(false);
        LvlUpSkill3.SetActive(false);

        Img1Skill1Lvl.SetActive(false);
        Img1Skill2Lvl.SetActive(false);
        Img1Skill3Lvl.SetActive(false);
        Img1Skill4Lvl.SetActive(false);
        Img2Skill1Lvl.SetActive(false);
        Img2Skill2Lvl.SetActive(false);
        Img2Skill3Lvl.SetActive(false);
        Img2Skill4Lvl.SetActive(false);
        Img3Skill1Lvl.SetActive(false);
        Img3Skill2Lvl.SetActive(false);
        Img3Skill3Lvl.SetActive(false);
        Img3Skill4Lvl.SetActive(false);
    }
Пример #6
0
 private void Button3_Click(object sender, EventArgs e)
 {
     if (downloaded)
     {
         MainAPI.Inject();
     }
     else
     {
         MessageBox.Show("krnl.dll is not downloaded");
     }
 }
Пример #7
0
 private void InjectToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (downloaded)
     {
         MainAPI.Inject();
     }
     else
     {
         MessageBox.Show("krnl.dll is not downloaded");
     }
 }
Пример #8
0
 // Use this for initialization
 void Start()
 {
     APIClass     = GameObject.Find("API");
     api          = APIClass.GetComponent <MainAPI>();
     heroesIdList = api.getHeroesList(GlobalControl.Instance.email);
     Debug.Log("IN MANAGER");
     Debug.Log(heroesIdList[0]);
     Debug.Log(heroesIdList[1]);
     setHeroesList(heroesIdList);
     dropdown.ClearOptions();
     dropdown.AddOptions(heroesList);
 }
Пример #9
0
 private void Timer1_Tick(object sender, EventArgs e)
 {
     if (MainAPI.IsAttached() == true)
     {
         button3.Text    = "Attached";
         button3.Enabled = false;
     }
     if (MainAPI.IsAttached() == false)
     {
         button3.Text    = "Attach";
         button3.Enabled = true;
     }
 }
Пример #10
0
 private void button2_Click(object sender, EventArgs e)
 {
     if (apis.api == "ZeusX")
     {
         FastColoredTextBox fastColoredTextBox1
             =
                 this.tabControl1.SelectedTab.Controls.Find
                     ("fastColoredTextBox1", true).FirstOrDefault <Control>()
                 as FastColoredTextBox;
         object[] args   = new string[0];
         object   obj    = fastColoredTextBox1.Text;
         string   script = obj.ToString();
         NamedPipes.LuaPipe(script);
     }
     if (apis.api == "Sirhurt")
     {
         FastColoredTextBox fastColoredTextBox1
             =
                 this.tabControl1.SelectedTab.Controls.Find
                     ("fastColoredTextBox1", true).FirstOrDefault <Control>()
                 as FastColoredTextBox;
         object[] args   = new string[0];
         object   obj    = fastColoredTextBox1.Text;
         string   script = obj.ToString();
         SirHurtAPI.SirHurtAPI.Execute(script, true);
     }
     if (apis.api == "Electron")
     {
         FastColoredTextBox fastColoredTextBox1
             =
                 this.tabControl1.SelectedTab.Controls.Find
                     ("fastColoredTextBox1", true).FirstOrDefault <Control>()
                 as FastColoredTextBox;
         object[] args   = new string[0];
         object   obj    = fastColoredTextBox1.Text;
         string   script = obj.ToString();
         Electron.NamedPipes.LuaPipe(script);
     }
     if (apis.api == "KRNL")
     {
         FastColoredTextBox fastColoredTextBox1
             =
                 this.tabControl1.SelectedTab.Controls.Find
                     ("fastColoredTextBox1", true).FirstOrDefault <Control>()
                 as FastColoredTextBox;
         object[] args   = new string[0];
         object   obj    = fastColoredTextBox1.Text;
         string   script = obj.ToString();
         MainAPI.Execute(script);
     }
 }
Пример #11
0
        private async void Timer2_Tick(object sender, EventArgs e)
        {
            Process[] roblox = Process.GetProcessesByName("RobloxPlayerBeta");
            if (roblox.Length > 0 && AutoAttach && SafeInject && downloaded)
            {
                await Task.Delay(10000);

                if (roblox.Length > 0 && AutoAttach && SafeInject && downloaded) // does roblox still exist?
                {
                    MainAPI.Inject();
                    AutoAttach = false;
                }
            }
            if (roblox.Length == 0 && SafeInject)
            {
                AutoAttach = true;
            }
        }
Пример #12
0
 private void button1_Click(object sender, EventArgs e)
 {
     if (apis.api == "ZeusX")
     {
         ZeusX.Functions.Inject();
     }
     if (apis.api == "Sirhurt")
     {
         SirHurtAPI.SirHurtAPI.LaunchExploit();
     }
     if (apis.api == "Electron")
     {
         Electron.Functions.Inject();
     }
     if (apis.api == "KRNL")
     {
         MainAPI.Inject();
     }
 }
Пример #13
0
 private void pictureBox4_Click(object sender, EventArgs e)
 {
     if (checkBox4.Checked == true)
     {
         NamedPipes.LuaPipe(fastColoredTextBox2.Text);
     }
     if (checkBox3.Checked == true)
     {
         OxygenU_API.Execute(fastColoredTextBox2.Text);
     }
     if (checkBox2.Checked == true)
     {
         MainAPI.Execute(fastColoredTextBox2.Text);
     }
     if (checkBox1.Checked == true)
     {
         module.ExecuteScript(fastColoredTextBox2.Text);
     }
 }
Пример #14
0
 private void button1_Click(object sender, EventArgs e)
 {
     MessageBox.Show("Thank you for using XFORCE!");
     if (checkBox4.Checked == true)
     {
     }
     if (checkBox3.Checked == true)
     {
         OxygenU_API.Attach();
     }
     if (checkBox2.Checked == true)
     {
         MainAPI.Inject();
     }
     if (checkBox1.Checked == true)
     {
         module.LaunchExploit();
     }
 }
Пример #15
0
 private void pictureBox6_Click(object sender, EventArgs e)
 {
     if (checkBox4.Checked == true)
     {
         MessageBox.Show("Please use the api Krnl", "XFORCE");
         NamedPipes.LuaPipe(fastColoredTextBox5.Text);
     }
     if (checkBox3.Checked == true)
     {
         OxygenU_API.Execute(fastColoredTextBox5.Text);
     }
     if (checkBox2.Checked == true)
     {
         MainAPI.Execute(fastColoredTextBox5.Text);
     }
     if (checkBox1.Checked == true)
     {
         module.ExecuteScript(fastColoredTextBox5.Text);
     }
 }
Пример #16
0
 private void pictureBox13_Click(object sender, EventArgs e)
 {
     MessageBox.Show("E to open gui", "Vietnam");
     if (checkBox4.Checked == true)
     {
         NamedPipes.LuaPipe(fastColoredTextBox11.Text);
     }
     if (checkBox3.Checked == true)
     {
         OxygenU_API.Execute(fastColoredTextBox11.Text);
     }
     if (checkBox2.Checked == true)
     {
         MainAPI.Execute(fastColoredTextBox11.Text);
     }
     if (checkBox1.Checked == true)
     {
         module.ExecuteScript(fastColoredTextBox11.Text);
     }
 }
Пример #17
0
 // Use this for initialization
 void Start()
 {
     APIClass = GameObject.Find("API");
     api      = APIClass.GetComponent <MainAPI>();
 }
Пример #18
0
 public Form1()
 {
     InitializeComponent();
     MainAPI.Load();
 }
Пример #19
0
 private void AimbotToolStripMenuItem_Click(object sender, EventArgs e)
 {
     MainAPI.Execute(Sgs.aimbot);
 }
Пример #20
0
 // Use this for initialization
 void Start()
 {
     APIClass = GameObject.Find("API");
     api      = APIClass.GetComponent <MainAPI>();
     api.getUserItems(GlobalControl.Instance.email);
 }
Пример #21
0
 private void AltDeleteToolStripMenuItem_Click(object sender, EventArgs e)
 {
     MainAPI.Execute(Sgs.altdel);
 }
Пример #22
0
 private void CMDXToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     MainAPI.Execute(Sgs.cmdx);
 }
Пример #23
0
 private void RemoteSpyToolStripMenuItem_Click(object sender, EventArgs e)
 {
     MainAPI.Execute(Sgs.rmspy);
 }
Пример #24
0
 private void RevizAdminToolStripMenuItem_Click(object sender, EventArgs e)
 {
     MainAPI.Execute(Sgs.reviz);
 }
Пример #25
0
        static void Draw(string color)
        {
            DiscordRpcClient client = new DiscordRpcClient("797124617268625408");

            client.SetPresence(new RichPresence()
            {
                Details = "Level 7 Roblox Lua Executor | TRIPLE API",
                State   = "Using Cyrup v4",
                Assets  = new Assets()
                {
                    LargeImageKey = "untitled_7_",
                }
            });

            if (Settings.Default.RPC == true)
            {
                client.Initialize();
            }
            Console.SetWindowSize(80, 20);
            Console.Title = "Coco Z";
            EasyExploits.Module easy = new EasyExploits.Module();
            ExploitAPI          wrd  = new ExploitAPI();

            Terminal.Gui.Application.Init();
            var top  = Terminal.Gui.Application.Top;
            var win  = new FrameView(new Rect(0, 0, top.Frame.Width - 68, top.Frame.Height), "Cyrup");
            var win2 = new FrameView(new Rect(12, 0, top.Frame.Width - 12, top.Frame.Height), "");

            if (color == "msdos")
            {
                Colors.Base.Normal   = Terminal.Gui.Application.Driver.MakeAttribute(Color.BrightYellow, Color.Blue);
                Colors.Menu.Normal   = Terminal.Gui.Application.Driver.MakeAttribute(Color.White, Color.Blue);
                Colors.Dialog.Normal = Terminal.Gui.Application.Driver.MakeAttribute(Color.BrightYellow, Color.BrightBlue);
            }
            else
            {
                Colors.Base.Normal   = Terminal.Gui.Application.Driver.MakeAttribute(Color.BrightMagenta, Color.Black);
                Colors.Menu.Normal   = Terminal.Gui.Application.Driver.MakeAttribute(Color.Cyan, Color.Black);
                Colors.Dialog.Normal = Terminal.Gui.Application.Driver.MakeAttribute(Color.Magenta, Color.Black);
            }
            win.ColorScheme  = Colors.Base;
            win2.ColorScheme = Colors.Base;
            top.Add(win);
            top.Add(win2);

            var exec = new Terminal.Gui.Button(1, 3, "Exec");
            var clr  = new Terminal.Gui.Button(1, 5, "Clr ");
            var open = new Terminal.Gui.Button(1, 7, "Open");
            var save = new Terminal.Gui.Button(1, 9, "Save");
            var inj  = new Terminal.Gui.Button(1, 1, "Inj ");
            var opt  = new Terminal.Gui.Button(1, 16, "Opt ");

            var editor = new TextView()
            {
                X           = 0,
                Y           = 0,
                Width       = Dim.Fill(),
                Height      = Dim.Fill(),
                ColorScheme = Colors.Menu
            };

            string credits = @"--[[
Stop cumming in me stepdaddy oh your hot warm milk~
--]]";

            editor.Text = credits.Replace("\r\n", "\n");

            win2.KeyDown += (k) =>
            {
                if (k.KeyEvent.Key == Key.CtrlMask)
                {
                    string paste = System.Windows.Forms.Clipboard.GetText();
                    editor.Text = paste.Replace("\r\n", "\n");
                    k.Handled   = true;
                }
            };

            inj.Clicked += () =>
            {
                if (Process.GetProcessesByName("RobloxPlayerBeta").Length < 1)
                {
                    Terminal.Gui.MessageBox.ErrorQuery(50, 5, "Error", "Please open Roblox before injecting!", "Okay");
                    return;
                }
                if (String.IsNullOrEmpty(Settings.Default.APIName))
                {
                    Terminal.Gui.MessageBox.ErrorQuery(50, 5, "Error", "Please select a DLL first!", "Okay");
                    return;
                }
                if (Settings.Default.APIName == "easy")
                {
                    if (easy.IsAttached())
                    {
                        Terminal.Gui.MessageBox.ErrorQuery(50, 5, "Error", "EasyExploits API is already injected!", "Okay");
                        return;
                    }
                    else
                    {
                        Process.Start(Environment.CurrentDirectory + "\\bin\\console.exe");
                        easy.LaunchExploit();
                        if (IsDirectoryEmpty(Environment.CurrentDirectory + "/autoexec") == false)
                        {
                            AutoExecEasy();
                        }
                        return;
                    }
                }
                if (Settings.Default.APIName == "wrd")
                {
                    if (wrd.isAPIAttached())
                    {
                        Terminal.Gui.MessageBox.ErrorQuery(50, 5, "Error", "WeAreDevs API is already injected!", "Okay");
                        return;
                    }
                    else
                    {
                        Process.Start(Environment.CurrentDirectory + "\\bin\\console.exe");
                        wrd.LaunchExploit();
                        if (IsDirectoryEmpty(Environment.CurrentDirectory + "/autoexec") == false)
                        {
                            AutoExecWRD();
                        }
                        return;
                    }
                }
                if (Settings.Default.APIName == "krnl")
                {
                    if (MainAPI.IsAttached())
                    {
                        Terminal.Gui.MessageBox.ErrorQuery(50, 5, "Error", "KRNL DLL is already injected!", "Okay");
                        return;
                    }
                    else
                    {
                        Process.Start(Environment.CurrentDirectory + "\\bin\\console.exe");
                        MainAPI.Inject();
                        if (IsDirectoryEmpty(Environment.CurrentDirectory + "/autoexec") == false)
                        {
                            AutoExecKRNL();
                        }
                        return;
                    }
                }
            };

            exec.Clicked += () =>
            {
                if (String.IsNullOrEmpty(Settings.Default.APIName))
                {
                    var error = Terminal.Gui.MessageBox.ErrorQuery(50, 5, "Error", "Please select a DLL first!", "Okay");
                    return;
                }
                if (Settings.Default.APIName == "easy")
                {
                    if (easy.IsAttached())
                    {
                        easy.ExecuteScript(Convert.ToString(editor.Text));
                        return;
                    }
                    else
                    {
                        Terminal.Gui.MessageBox.ErrorQuery(50, 5, "Error", "Exploit is not injected!", "Okay");
                        return;
                    }
                }
                if (Settings.Default.APIName == "wrd")
                {
                    if (wrd.isAPIAttached())
                    {
                        wrd.SendLuaScript(Convert.ToString(editor.Text));
                        return;
                    }
                    else
                    {
                        Terminal.Gui.MessageBox.ErrorQuery(50, 5, "Error", "Exploit is not injected!", "Okay");
                        return;
                    }
                }
                if (Settings.Default.APIName == "krnl")
                {
                    if (MainAPI.IsAttached())
                    {
                        MainAPI.Execute(Convert.ToString(editor.Text));
                        return;
                    }
                    else
                    {
                        Terminal.Gui.MessageBox.ErrorQuery(50, 5, "Error", "Exploit is not injected!", "Okay");
                        return;
                    }
                }
            };

            clr.Clicked += () =>
            {
                editor.Text = String.Empty;
            };

            save.Clicked += () =>
            {
                var saveChoice = Terminal.Gui.MessageBox.Query(50, 5, "Save Options", "Obfuscate script? (Lua only)", "Yes", "No");
                if (saveChoice == 0)
                {
                }
                if (saveChoice == 1)
                {
                    SaveFileDialog saveFileDialog1 = new SaveFileDialog
                    {
                        Title = "Save File",

                        CheckPathExists = true,

                        DefaultExt       = "txt",
                        Filter           = "Text files (*.txt)|*.txt",
                        FilterIndex      = 2,
                        RestoreDirectory = true
                    };
                    if (saveFileDialog1.ShowDialog() == DialogResult.OK)
                    {
                        FileInfo fi = new FileInfo(saveFileDialog1.FileName);
                        using (StreamWriter sw = fi.CreateText())
                        {
                            sw.WriteLine(editor.Text.ToString());
                        }
                    }
                    return;
                }
            };

            open.Clicked += () =>
            {
                OpenFileDialog openFileDialog1 = new OpenFileDialog
                {
                    InitialDirectory = Environment.CurrentDirectory + "\\scripts",
                    Title            = "Browse Text Files",

                    CheckFileExists = true,
                    CheckPathExists = true,

                    DefaultExt       = "txt",
                    Filter           = "Text files (*.txt)|*.txt",
                    FilterIndex      = 2,
                    RestoreDirectory = true,

                    ReadOnlyChecked = true
                };

                if (openFileDialog1.ShowDialog() == DialogResult.OK)
                {
                    string text = File.ReadAllText(openFileDialog1.FileName);
                    editor.Text = text.Replace("\r\n", "\n");
                }
            };

            opt.Clicked += () =>
            {
                var optMenu = Terminal.Gui.MessageBox.Query(50, 5, "Options", "Options Menu", "Select DLL", "Discord RPC", "Kill Roblox");

                if (optMenu == 2)
                {
                    var areyousure = Terminal.Gui.MessageBox.Query(50, 5, "Stop", "Are you sure?", "Yes kill Roblox", "No");
                    if (areyousure == 0)
                    {
                        foreach (var process in Process.GetProcessesByName("RobloxPlayerBeta"))
                        {
                            process.Kill();
                        }
                    }

                    if (areyousure == 1)
                    {
                        return;
                    }
                }

                if (optMenu == 1)
                {
                    var _0 = Terminal.Gui.MessageBox.Query(50, 5, "Options Menu", "Discord RPC Settings", "Enable RPC", "Disable RPC");
                    if (_0 == 0)
                    {
                        Settings.Default.RPC = true;
                        Settings.Default.Save();
                        if (client.IsInitialized == false)
                        {
                            client.Initialize();
                            client.SetPresence(new RichPresence()
                            {
                                Details = "Level 7 Roblox Lua Executor | TRIPLE API",
                                State   = "Using Cyrup v4",
                                Assets  = new Assets()
                                {
                                    LargeImageKey = "untitled_7_",
                                }
                            });
                        }
                        Terminal.Gui.MessageBox.Query(50, 5, "Notice", "RPC has been enabled", "Okay");
                        return;
                    }

                    if (_0 == 1)
                    {
                        Settings.Default.RPC = false;
                        Settings.Default.Save();
                        client.Deinitialize();
                        Terminal.Gui.MessageBox.Query(50, 5, "Notice", "RPC has been disabled", "Okay");
                        return;
                    }
                }

                if (optMenu == 0)
                {
                    var dsec = Terminal.Gui.MessageBox.Query(50, 5, "Select DLL", "Select an API", "EasyExploits", "WeAreDevs", "KRNL DLL");
                    if (dsec == 0)
                    {
                        Settings.Default.APIName = "easy";
                        Settings.Default.Save();
                        Terminal.Gui.MessageBox.Query(50, 5, "Notice", "EasyExploits API has been selected", "Okay");
                        return;
                    }
                    if (dsec == 1)
                    {
                        Settings.Default.APIName = "wrd";
                        Settings.Default.Save();
                        Terminal.Gui.MessageBox.Query(50, 5, "Notice", "WeAreDevs API has been selected", "Okay");
                        return;
                    }
                    if (dsec == 2)
                    {
                        Settings.Default.APIName = "krnl";
                        Settings.Default.Save();
                        Terminal.Gui.MessageBox.Query(50, 5, "Notice", "KRNL DLL has been selected", "Okay");
                        return;
                    }
                    return;
                }
            };


            win.Add(
                inj,
                exec,
                clr,
                open,
                save,
                opt
                );

            win2.Add(
                editor
                );

            bool IsDirectoryEmpty(string path)
            {
                return(!Directory.EnumerateFileSystemEntries(path).Any());
            }

            void AutoExecEasy()
            {
                if (easy.IsAttached())
                {
                    foreach (string file in Directory.EnumerateFiles(Environment.CurrentDirectory + "/autoexec", "*.*"))
                    {
                        string contents = File.ReadAllText(file);
                        easy.ExecuteScript(contents);
                        Thread.Sleep(500);
                    }
                }
                else
                {
                    Thread.Sleep(500);
                    AutoExecEasy();
                }
            }

            void AutoExecWRD()
            {
                if (wrd.isAPIAttached())
                {
                    foreach (string file in Directory.EnumerateFiles(Environment.CurrentDirectory + "/autoexec", "*.*"))
                    {
                        string contents = File.ReadAllText(file);
                        wrd.SendLuaScript(contents);
                        Thread.Sleep(500);
                    }
                }
                else
                {
                    Thread.Sleep(500);
                    AutoExecWRD();
                }
            }

            void AutoExecKRNL()
            {
                if (MainAPI.IsAttached())
                {
                    foreach (string file in Directory.EnumerateFiles(Environment.CurrentDirectory + "/autoexec", "*.*"))
                    {
                        string contents = File.ReadAllText(file);
                        MainAPI.Execute(contents);
                        Thread.Sleep(500);
                    }
                }
                else
                {
                    Thread.Sleep(500);
                    AutoExecKRNL();
                }
            }

            Terminal.Gui.Application.Run();
        }
Пример #26
0
 private void DarkDexToolStripMenuItem_Click(object sender, EventArgs e)
 {
     MainAPI.Execute(Sgs.drkdex);
 }