PostCheat Engine Cleaner and Battle Eye Bypass

Posts 1–14 of 14 · Page 1 of 1
Approved.

Use at your OWN risk.

P.S:
Please add Screenshots/Video of the program in play.
This is only for playing offline right? it doesn't actually allow you to run cheats online?
Tbh idk why this was aproved, it's full of errors and changes you have to make to get it going on other PC then yours.
Quote Originally Posted by Syntxi View Post
Tbh idk why this was aproved, it's full of errors and changes you have to make to get it going on other PC then yours.
Being approved proves it that it doesn't have virus files, it doesn't mean that it will actually work flawlessly.
please mention what errors you got?

- - - Updated - - -

ok sure, thanks
As you can see codes of bat file is clear af.Get over it people.
BEGONE.PNG87 KB · 98 downloads
yeah actually! I don't know what's the issue even after releasing the bat file

- - - Updated - - -

http://imgur.com/a/ah2Yy

Screenshot!
Quote Originally Posted by rayan20 View Post
yeah actually! I don't know what's the issue even after releasing the bat file

- - - Updated - - -

http://imgur.com/a/ah2Yy

Screenshot!
You used your own path and in each PC it's different so it only works for you.
Actualyl maybe its true
Quote Originally Posted by Syntxi View Post
You used your own path and in each PC it's different so it only works for you.
no, its just that u have to place it inside the rainbow six directory
Quote Originally Posted by rayan20 View Post
no, its just that u have to place it inside the rainbow six directory
Uhm lol Syntxi is right because wth is this path? C:\Users\Karandeep Singh\AppData\Local

Edit: On the Rainbowsix.exe part you are right but the CE cleaning not

Edit Edit: This is for the ones who know how to compile stuff(lol)
written in C#(ye i like C#)
Code:
using System;
using System.Collections.Generic;
using System.//IO; //Remove the slashes because MPGH thinks its a link
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace CEBEtool
{
    class Program
    {
        static void Main(string[] args)
        {
            Menu(null);
        }

        static void Menu(string error)
        {
            Console.ForegroundColor = ConsoleColor.White;
            Console.BackgroundColor = ConsoleColor.Blue;
            Console.Clear();
            if (error != null)
            {
                Console.ForegroundColor = ConsoleColor.Red;
                Console.WriteLine(error);
                Console.ForegroundColor = ConsoleColor.White;
            }
            Console.WriteLine("------------------------------------------------------------------------");
            Console.WriteLine("CE Log cleaner and BattleEye OFFLINE mode Patcher by StijnnX2");
            Console.WriteLine("Credits: rayan20 for giving me an idea");
            Console.WriteLine("Note: Place this in the Rainbow Six Game Directory");
            Console.WriteLine("------------------------------------------------------------------------");
            Console.WriteLine("1. Clear CE Logs");
            Console.WriteLine("2. BattlEye Bypass(FOR OFFLINE MODE! also note if it already was bypassed it will revert back...)");
            Console.WriteLine("3. Exit Program");
            Console.Write("Select an Option(1, 2 or 3): ");
            int choice;
            if (int.TryParse(Console.ReadLine(), out choice))
            {
                switch (choice)
                {
                    case 1:
                        ClearCeLogs();
                    break;

                    case 2:
                        BEBypass();
                    break;

                    case 3:
                        Environment.Exit(0);
                    break;

                    default:
                        Console.Clear();
                        Menu("Invalid Input");
                    break;
                }
            }
            else
            {
                Console.Clear();
                Menu("Invalid Input");
            }
            Console.ReadKey();
        }

        static void ClearCeLogs()
        {
            string path = Path.GetTempPath();
            if (Directory.Exists(path + @"/Cheat Engine"))
            {
                Directory.Delete(path + @"/Cheat Engine", true);
                Console.WriteLine("CE Temp Files Removed... /nPress any key to continue");
                Console.ReadKey();
                Menu(null);
            }
        }

        static void BEBypass()
        {
            if (File.Exists("rainbowsix.exe") && File.Exists("RainbowSixGame.exe"))
            {
                File.Move("rainbowsix.exe", "rainbowsix2.exe");
                File.Move("RainbowSixGame.exe", "rainbowsix.exe");
                File.Move("rainbowsix2.exe", "RainbowSixGame.exe");
                Console.WriteLine("BE Bypass succesfully done...");
                Console.ReadKey();
                Menu(null);
            }
            else
            {
                Menu("Wrong folder, files do not exist...");
            }
        }
    }
}
Posts 1–14 of 14 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?