wrenchStuck at 11%

  • If you are stuck at 11%, this issue usually happens due to insufficient permissions when deleting & running commands pre spoofing & post spoofing. You are going to open a ticket if this issue does not solve by restarting your PC & having no anticheat or antivirus running

  • Alternatively, you can run the following commands (PowerShell):

Get-Volume | Where-Object DriveLetter | ForEach-Object {
    $drive = $_.DriveLetter
    Write-Host "Running chkdsk on drive $drive..."
    chkdsk "$drive`:" /F
}
  • If this command fails, try to run: (CMD)

chkdsk C: /F
  • Alternatively, if you have more than 1 disk, you can do

chkdsk C: /F
chkdsk D: /F
chkdsk E: /F
  • Where C, D, E are your Disk Letters. Add as many as you have.

Last updated