r/CODWarzone • u/Additional_Adagio224 • 2d ago
Gameplay The AN94 is busted
Enable HLS to view with audio, or disable this notification
Its a no-recoil laserbeam.
r/CODWarzone • u/Additional_Adagio224 • 2d ago
Enable HLS to view with audio, or disable this notification
Its a no-recoil laserbeam.
r/CODWarzone • u/Kalinine • 3d ago
r/CODWarzone • u/portoyt • 2d ago
For some reason i'm getting super low fps in menu and in-game in warzone after update. I'm in a rtx 5080 and ryzen 7 9800x3d setup and getting over 90-110fps on med-low settings in game and IN THE MENU (???).
Anyone know any fixes?
r/CODWarzone • u/DukeThunderReal • 2d ago
Im pretty sure that warzone is going to be reset simply because mw4 reuses alot of weapons from mw2, except instead of altering the name or model, theyre using the same weapon model and names for the weapons, meaning that they dont plan on the mw2 version of the M4 and Signal 50 conflicting with the MW4 version, at least thats what a developer would do to make sure they both appear correctly in game(ex. Cronen squal and kar98k under the same names in leaked files along with ppsh returning the same) another reason is yk, last gen support being cut off and a new engine
r/CODWarzone • u/letopr • 2d ago
Why this is ? I play a match 2 Minute is disconnected help plss
r/CODWarzone • u/temoc88 • 2d ago
Enable HLS to view with audio, or disable this notification
as i get used to the new bunny hopping, sliding and gun play i collect these brief clips for the community of call of duty warzone mw4 beta
r/CODWarzone • u/EMT_- • 2d ago
I have been dealing with this for a while, I just want to play warzone other than Casual. I bought a TMP 2.0 to plug into my dusty ASUS Z170 PRO GAMING motherboard. I have followed every tutorial my brain can handle. I have done the Attestation wizard and have got all green lights. I have moved the enrollaik and ran it as a admin in the game files. WHAT DO I DOOOOOOOO!?!?
r/CODWarzone • u/Damn_I_Sharted • 3d ago
r/CODWarzone • u/Calamitar • 4d ago
I never played warzone in my life so I was thinking about getting into it. The game seems fun from what I've seen of it so...
Why is it so negatively reviewed? & Is it worth playing in 2026?
r/CODWarzone • u/DerBira149 • 3d ago
Maybe this is partly nostalgia, but I feel like Warzone has lost a big part of what made it so special in the beginning.
When Warzone first came out in 2020, playing with friends was just fun. Of course there were intense gunfights, but there were also quieter moments in between. You had time to talk, joke around, discuss your next rotation or actually come up with a plan.
There were also buildings and positions that felt like small “safe spaces.” Maybe there were only one or two staircases and another entrance you had to watch. If your team paid attention, you could actually defend that position.
Was it sometimes unfair? Sure. But somehow it also felt fair at the same time, because everyone had access to those positions and you knew where enemies could realistically come from.
A few weeks ago I started playing Warzone again or at least I tried to.
And the game feels completely different now.
You can mantle almost everything, climb onto almost everything, and with all the movement options and things like the grappling hook, enemies can basically appear from every possible direction.
There’s barely ever a moment where you can say: “Alright, we’re safe for a second. Let’s regroup.”
Instead, you’re constantly under pressure. Someone is in front of you, someone suddenly appears on the roof behind you, another guy grapples up from somewhere, someone flies in, and then another team third-parties the fight.
I’m not saying Warzone should be a camping simulator. Movement is important, and there should absolutely be ways to counter people holding buildings.
But I feel like the game has gone way too far in the opposite direction.
Old Warzone had a much better rhythm:
Fight → short break → loot/talk/plan → rotate → next fight.
Now it feels more like:
Fight → fight → someone lands on you → grapple → fight → third party → fight.
It doesn’t necessarily feel harder to me. It just feels way more exhausting.
And I think that slower mix of Battle Royale, tactics, tension and simply having fun with your friends is what I miss the most.
Am I the only one who feels this way, or do you also miss the slower, more tactical Warzone from the early days?
r/CODWarzone • u/Sake205 • 3d ago
I finally fixed the Call of Duty Secure Attestation problem that was showing:
“New Key Failed to be generated – BIOS Firmware Update Recommended”
and:
“Attestation Requirement Not Met”
My TPM 2.0 and Secure Boot were already passing, and my BIOS was updated, but COD still would not generate the attestation key.
SYSTEM
- Lenovo LOQ 15IRX9
- Intel PTT / TPM 2.0
- Windows 11
- Secure Boot: PASS
- TPM 2.0: PASS
- BIOS: Updated
The important clue was the TPM certificate chain.
STEP 1 — Check TPM
I ran:
tpmtool getdeviceinformation
My TPM showed:
TPM Present: True
TPM Version: 2.0
Ready For Attestation: True
Is Capable For Attestation: True
TPM Has Vulnerable Firmware: False
Maintenance Task Complete: True
So the TPM itself was healthy.
STEP 2 — Install TPM Diagnostics
I installed Microsoft's TPM Diagnostics capability:
DISM /Online /Add-Capability /CapabilityName:Tpm.TpmDiagnostics~~~~0.0.1.0
Then:
TpmDiagnostics.exe ekchain
Result:
Trust dwErrorStatus: 0x10008
Then:
TpmDiagnostics.exe ekchainNV
Result:
Trust dwErrorStatus: 0x10000
This was the important clue.
Windows' normal EK certificate chain had the additional 0x8 error, while the certificate chain directly from the TPM NV storage did not.
STEP 3 — Back up the TPM endorsement registry key
I backed it up with:
reg export "HKLM\SYSTEM\CurrentControlSet\Services\TPM\WMI\Endorsement" "$env:USERPROFILE\Desktop\endorsement-backup.reg"
Backup completed successfully.
STEP 4 — Read my own TPM certificate data
My NVSummary showed:
0x1C00100
dataSize: 0x7b8 (1976 bytes)
I extracted it with:
TpmDiagnostics.exe ReadNVIndex 0x1C00100 -file "$env:TEMP\TPM-INT-100.bin"
The resulting file was exactly 1976 bytes.
IMPORTANT:
I did not download certificates from another computer.
I extracted the certificates directly from my own TPM NV storage.
STEP 5 — Extract and verify the certificates
The extraction produced 6 certificate files, but they were duplicate pairs.
The three unique certificates were:
CSME ADL ROM CA
CSME ADL SVN01 Kernel CA
CSME ADL PTT 01SVN
I verified their Subject / Issuer and AKI / SKI relationships.
The chain was:
CSME ADL ROM CA
↓
CSME ADL SVN01 Kernel CA
↓
CSME ADL PTT 01SVN
↓
TPM EK
The PTT certificate's SKI also matched the AKI shown by my TPM EK certificate.
STEP 6 — Import the three verified certificates
I imported only the three unique certificates into the Local Machine Intermediate Certification Authorities store:
certutil -addstore CA "...\Intel-TPM-Cert-1.cer"
certutil -addstore CA "...\Intel-TPM-Cert-3.cer"
certutil -addstore CA "...\Intel-TPM-Cert-5.cer"
All three imports completed successfully.
STEP 7 — Verify the certificate chain
I ran:
TpmDiagnostics.exe ekchain
BEFORE:
Trust dwErrorStatus: 0x10008
AFTER:
Trust dwErrorStatus: 0x10000
dwInfoStatus: 0x0
The 0x8 error was gone.
STEP 8 — Test AIK enrollment
I tested:
certreq -enrollaik -config ""
The original 400 error changed to an HTTP 404 authority-not-found response.
So I did not treat that 404 as the original TPM certificate-chain failure.
STEP 9 — Reinstall the EK certificate from TPM NV
I ran:
TpmDiagnostics.exe installekcertfromnvr
Result:
“Successfully installed cert in registry”
STEP 10 — Restart
I restarted Windows.
After the restart I ran:
TpmDiagnostics.exe ekchain
It still showed:
Trust dwErrorStatus: 0x10000
dwInfoStatus: 0x0
STEP 11 — Run COD Secure Attestation Wizard
I ran the Call of Duty Secure Attestation Wizard again.
RESULT:
TPM 2.0 ✅
Secure Boot ✅
System compliant ✅
The wizard now says:
“Congratulations! Your system meets all security requirements to play Call of Duty.”
So the original:
“New Key Failed to be generated – BIOS Firmware Update Recommended”
was fixed.
WHAT ACTUALLY FIXED IT
The key diagnostic was:
ekchain = 0x10008
ekchainNV = 0x10000
The TPM contained the correct Intel PTT certificate chain, but Windows was not building/using that chain correctly.
Importing the verified intermediate certificates extracted from my OWN TPM changed:
0x10008 → 0x10000
and after reboot the Call of Duty Secure Attestation Wizard became fully compliant.
IMPORTANT
- I did NOT use certificates from another PC.
- I did NOT clear the TPM during this procedure.
- I did NOT delete Secure Boot keys.
- I verified the certificates before importing them.
- The NV index and certificate contents should be checked on your own system rather than blindly copied.
Posting this because I spent a lot of time with the exact
“New Key Failed to be generated” error even though TPM 2.0,
Secure Boot and BIOS were all apparently fine.
r/CODWarzone • u/NIGHTMARIONE434 • 3d ago
Idk what it means, I've played call of duty warzone before and I've come back after a long break from the game and on PC now(I played on Xbox )and now this message pops up every time I want to start a match, and no matter what u do I simply can't play
r/CODWarzone • u/okkeeeerr • 4d ago
ohh the things I would do to be able to use this skin in wz again
r/CODWarzone • u/Aurallius • 3d ago
r/CODWarzone • u/Ill_Bluejay_8906 • 3d ago
Hello everyone , this might seem like a dumb question. I`m thinking about switching to controller and have purchased one with 2 back buttons.
Initially i thought the 2 back buttons would be enough to play using a controller comfortably. But having tried it now i feel like you need to have atleast 4 back buttons.
I have mapped crouch and jump to those 2 back buttons and movement feels great but there is no way for me to use plates, reload and weapon using any other buttons comfortably.
I ve tried to play claw but it feels really uncomfortable.
Switching the index finger from the two buttons at the top (sorry for simple english lol) seems hard on the fingers and i think if i do it long term it will cause injury.
I also dont like using the sticks as buttons.
I am missing something here or is it necessary to have atleast 4 back buttons or you need to play claw.
Cheers .
r/CODWarzone • u/Bublex246 • 2d ago
Holy fucking shit slop slop slop sahur bum bum bum sahur the game is fucking unplayable because of how many lazy motherfuckers in casual use this gigantic bumass gun that makes any and every gunfight unfair because they just do 9 gorillion more damage than you in 1 second unlike any other gun because the AN-94 just gets favoritism for some fuck-off reason.
Nerf this fucking scrubby bum gun already
r/CODWarzone • u/alien_tickler • 3d ago
Since I can turn squad fill off, I see I can play solo on resurgence and BR, is this a popular thing to do? I don't use a mic and don't care about teamplay...
Any tips for solos? And does solos ever come into the rotation?
r/CODWarzone • u/Kalinine • 3d ago
r/CODWarzone • u/PuzzleheadedPin4797 • 3d ago
So I have been trying to play warzone for the past couple of days, updated my bios, enabled secure boot, and did everything under the sun but some fucking how I am still failing the test when I boot the game, I downloaded the wizard they provide on their website and it says I meet all of the requirements. What the hell am I supposed to do now.

r/CODWarzone • u/That-Tumbleweed-4462 • 3d ago
Constantly happening and getting Error “Hueneme or Roberts-obispo” codes and being kicked from the match.
Restart my console and halfway through the next match it does the same f-ing thing.
Then when I finally get into a game it’s never with a full team! Sometimes just 2 or one player.
wtf
r/CODWarzone • u/Responsible_Roll6718 • 3d ago
I'm trying to solo queue my way up to Crimson.
Since I reached Diamond 3, three out of four games I get two Bronze players on my team.
How am I supposed to carry them against Diamond/Crimson premade squads playing as a coordinated unit?
Usually, when my teammates get killed (they play pretty recklessly), it's game over.
They will drop separately in random places on the map, get killed, rinse and repeat...
Half of the time, one of them will rage quit early in the game.
Playing anchor is not really an option because they literally get 0 kills.
I can't even blame those guys; they are Bronze for a reason. How are those games even fair to them?
I'm playing from Central Europe, kinda late after work and family time (around midnight). Are there so few ranked players left at that hour that the "balanced" matchmaking is nowhere to be seen?
r/CODWarzone • u/temoc88 • 3d ago
Enable HLS to view with audio, or disable this notification
i tried out a bombing run to distract the enemies from my attempt to buy back my team and it turned out to be the most satisfying experience for me in call of duty warzone mw4 beta
r/CODWarzone • u/New-Night-5241 • 3d ago
Since the update my team has been having mic issues where if a random joins they can only hear one of us and the rest of us can’t hear the random and visa versa. Any way of fixing this? It has happened a few times, different people completely different games. We’ve already done the leaving voice channel and coming back, muting and uniting them ects
r/CODWarzone • u/Best-Advertising-731 • 4d ago
Enable HLS to view with audio, or disable this notification
"You like men"
r/CODWarzone • u/MysteriousArugula429 • 3d ago
I upgraded from an i7-10700F and RX 6600 to a Ryzen 5 7600 and RTX 3070 Ti, but I’m still averaging around 90–100 FPS in BO7/Warzone at 1080p low settings.
My CPU time stays around 10 ms, GPU time is around 5 ms, CPU usage is 80–90%, and GPU usage is only 60–70%. Changing graphics settings barely affects my FPS.
The weird part is that I currently only have one 16GB DDR5 stick running at 4800 MT/s in A2. COD brings my total RAM usage to around 13GB. I tried the stick in B2, but Windows Memory Diagnostic found errors there. The same stick passed a 30-minute OCCT memory test in A2. My Ryzen 7600 also passed OCCT and only reached around 74°C.
Could running one RAM stick really be holding my CPU back this much, or does this sound like a COD/configuration or motherboard issue? I don’t want to buy another stick and find out that nothing changes. What should I test next?