EFT Ban using RAID0 - How to procced?

02/16/2020 03:14 GraayFox#1
Hello guys, hope you all doing well, or at least, better than me :p

Today I got hit with a ban on EFT. Normally, when I got hit, I just go, buy new SSD, install windows, play again, but now..

I have my 2 ssd disk on Raid0. Its my first time banned using this Raid0 method, so my question is, now, HOW TO PROCCED?

I need to un-raid them and raid again and install windows from scratch?

I need to uninstall BSG, reinstall and play?

I need to erase something on my %appdata% or something?

I need to just restart pc and use another account?

I would thank any help that people with already Raid0 bans could give me.

Thanks for reading!
02/16/2020 07:56 HuckKliffs66#2
Why even use RAID0 with ssd? lol
As long as you have space for what you use there is no use for raid0 + ssds.
IMO...

Im not a hardcore nerd when it comes to these things tho /s
02/16/2020 12:33 GraayFox#3
Quote:
Originally Posted by HuckKliffs66 View Post
Why even use RAID0 with ssd? lol
As long as you have space for what you use there is no use for raid0 + ssds.
IMO...

Im not a hardcore nerd when it comes to these things tho /s
Your response doesnt give any answer to my question. Thanks anyway.
02/16/2020 12:42 HuckKliffs66#4
Quote:
Originally Posted by GraayFox View Post
Your response doesnt give any answer to my question. Thanks anyway.
You answered your own question.

You have wasted both ssds tho since in raid0.
Also dont have banned ssd's plugged into PC when you run your new one or itll just ban those also.
In short dont raid0 and cheatz or this will happen.
If you use another account itll just ban those also.

You could get a HWID spoofer and try but most HWID spoofers get detected sooner or later unless you know its priv

I always keep a couple 30$ ssds around to meme on.

BE very rarely hwids tho mobo.
02/16/2020 14:31 GraayFox#5
Quote:
Originally Posted by HuckKliffs66 View Post
You answered your own question.

You have wasted both ssds tho since in raid0.
Also dont have banned ssd's plugged into PC when you run your new one or itll just ban those also.
In short dont raid0 and cheatz or this will happen.
If you use another account itll just ban those also.

You could get a HWID spoofer and try but most HWID spoofers get detected sooner or later unless you know its priv

I always keep a couple 30$ ssds around to meme on.

BE very rarely hwids tho mobo.
Still didn't answer the question. If you dont use raid 0, please, dont make the thread longer. It just dont aswer my question. Thanks anyway.
02/16/2020 15:38 thespudstr#6
iirc hwid bans are based on the cpu. not drive
02/16/2020 16:05 HuckKliffs66#7
Quote:
Originally Posted by GraayFox View Post
Still didn't answer the question. If you dont use raid 0, please, dont make the thread longer. It just dont aswer my question. Thanks anyway.
Im speaking from experince


You NEED new ssd/hdd to play.
You NEED to reinstall Windows
You NEED to make sure the banned ssds are not connected to PC while gaming
You NEED to delete all partions
You NEED to change IP if static
You NEED to change network adapter
If you still get b& after that they have banned hwid mobo/cpu(I haven't heard of them doing this with EFT.. YET)

If you dont want to do that you NEED to know how to bypass with an EDID emulator, bypass with a FPGA board that is re-program as NIC.

If you dont want to do that you NEED to invest in a ring0 spoofer.

If you dont want to do that you need to know how to run a VM with a passthru for GPU and set serials your self.

If you dont want to do that you can KVM passthru.

Different games have different levels of BE and how they b&




Sorry if I wasn't clear in my other post.
02/17/2020 01:51 Marcrake#8
talking from my experience, since he is actually posting what a said to him to do, i have 2 sdds both hwid banned ik this cos i tested, since i dont care about loosing some minimal performance i did raid 0 and this helped my problem, so everytime i get banned i just do what he said and gg next to new account!
02/17/2020 11:51 Need1Link#9
dont listen to 90% of what People say here, HWID Spoofers dont get Detected 90% of the Time thats bs.

If ur planning to cheat buy a Lifetime Spoofer.

The Way they get ur HWID is as Follows:

PHP Code:
private string getUniqueID(string drive)
        {
            if (
drive == string.Empty)
            {
                
//Find first drive
                
foreach (DriveInfo compDrive in DriveInfo.GetDrives())
                {
                    if (
compDrive.IsReady)
                    {
                        
drive compDrive.RootDirectory.ToString();
                        break;
                    }
                }
            }

            if (
drive.EndsWith(":\\"))
            {
                
//C:\ -> C
                
drive drive.Substring(0drive.Length 2);
            }

            
string volumeSerial getVolumeSerial(drive);
            
string cpuID getCPUID();

            
//Mix them up and remove some useless 0's
            
return cpuID.Substring(13) + cpuID.Substring(14) + volumeSerial cpuID.Substring(44);
        }

        private 
string getVolumeSerial(string drive)
        {  
            
ManagementObject disk = new ManagementObject(@"win32_logicaldisk.deviceid=""" drive + @":""");
            
disk.Get();
       
            
string volumeSerial disk["VolumeSerialNumber"].ToString();
            
disk.Dispose();

            return 
volumeSerial;
        }

        private 
string getCPUID()
        {
            
string cpuInfo "";
            
ManagementClass managClass = new ManagementClass("win32_processor");
            
ManagementObjectCollection managCollec managClass.GetInstances();

            foreach (
ManagementObject managObj in managCollec)
            {
                if (
cpuInfo == "")
                {
                    
//Get only the first CPU's ID
                    
cpuInfo managObj.Properties["processorID"].Value.ToString();
                    break;
                }
            }

            return 
cpuInfo;
        } 

So just get a Spoofer and safe urself Lifetime.

Quote:
Originally Posted by thespudstr View Post
iirc hwid bans are based on the cpu. not drive
yes they are also based on the drives shhh
02/18/2020 15:29 thespudstr#10
Quote:
Originally Posted by Need1Link View Post

yes they are also based on the drives shhh
. but if you change the cpuid it changes the hwid since it relies on a string of everything.
02/18/2020 15:56 iniinfi#11
you are right about that but is it easier for you do change the CPU uid than changing the volume serial numbers?

Also how do we know if the code snipped he posted is actually what they are doing?

Where did you find that, which file?
02/18/2020 17:30 b0bbaa#12
Quote:
Originally Posted by Need1Link View Post
dont listen to 90% of what People say here, HWID Spoofers dont get Detected 90% of the Time thats bs.

If ur planning to cheat buy a Lifetime Spoofer.

The Way they get ur HWID is as Follows:

PHP Code:
private string getUniqueID(string drive)
        {
            if (
drive == string.Empty)
            {
                
//Find first drive
                
foreach (DriveInfo compDrive in DriveInfo.GetDrives())
                {
                    if (
compDrive.IsReady)
                    {
                        
drive compDrive.RootDirectory.ToString();
                        break;
                    }
                }
            }

            if (
drive.EndsWith(":\\"))
            {
                
//C:\ -> C
                
drive drive.Substring(0drive.Length 2);
            }

            
string volumeSerial getVolumeSerial(drive);
            
string cpuID getCPUID();

            
//Mix them up and remove some useless 0's
            
return cpuID.Substring(13) + cpuID.Substring(14) + volumeSerial cpuID.Substring(44);
        }

        private 
string getVolumeSerial(string drive)
        {  
            
ManagementObject disk = new ManagementObject(@"win32_logicaldisk.deviceid=""" drive + @":""");
            
disk.Get();
       
            
string volumeSerial disk["VolumeSerialNumber"].ToString();
            
disk.Dispose();

            return 
volumeSerial;
        }

        private 
string getCPUID()
        {
            
string cpuInfo "";
            
ManagementClass managClass = new ManagementClass("win32_processor");
            
ManagementObjectCollection managCollec managClass.GetInstances();

            foreach (
ManagementObject managObj in managCollec)
            {
                if (
cpuInfo == "")
                {
                    
//Get only the first CPU's ID
                    
cpuInfo managObj.Properties["processorID"].Value.ToString();
                    break;
                }
            }

            return 
cpuInfo;
        } 

So just get a Spoofer and safe urself Lifetime.



yes they are also based on the drives shhh
Do you know any good lifetime spoofers?

And like iniinfi said, I'm curious too about where you got that code snippet from, because that shouldn't be public.. What's your source?
02/18/2020 18:04 Need1Link#13
Yes its not Public now it is, this is the way BE gets ur HWID.

No need to tell u how to get it u aint capable of getting it urself anyway.
02/18/2020 18:46 daet#14
Imagine wasting money on HWID spoofers when you can easily do it cheaper and permanently. Continue being ignorant, people. You epvp users never cease to amaze with the mediocrity.
02/18/2020 19:29 b0bbaa#15
Quote:
Originally Posted by daet View Post
Imagine wasting money on HWID spoofers when you can easily do it cheaper and permanently. Continue being ignorant, people. You epvp users never cease to amaze with the mediocrity.
Well, tell me your "magic trick" ?