Why Lag Destroys Deadlock Performance
Deadlock’s hybrid MOBA-shooter mechanics demand precise timing for parrying, last-hitting creeps, and landing skill shots across massive vertical maps. A 100ms ping turns a successful parry into a death, while packet loss during team fights causes ability animations to desync from actual damage registration. Source 2’s tick rate amplifies these issues when your connection can’t keep pace.
How to Check If You Have a Lag Problem
Enable Deadlock’s network information display by going to Settings > Game > Show Network Information and setting it to Always. This shows your ping, packet loss, and server performance in the top-right corner during matches.
For detailed analysis, enable the developer console in Settings > Game > Developer Console: Enabled. Press tilde (~) and type net_graph 1. This displays comprehensive network statistics including:
- ping: Your latency to the server. Under 50ms is excellent, 50-80ms is good, 80-120ms is playable, above 120ms severely impacts parrying and precise shots
- loss: Packet loss percentage. Anything above 0.5% causes noticeable stuttering
- choke: Server-side packet loss. Values above 5% indicate server stress
- tick: Server tick rate. Should consistently show 64 for Valve’s official servers
- fps: Your frame rate. Separate from network lag but equally important
Type status in console to see which Valve server cluster you’re connected to. Common regions include Virginia (East US), Washington (West US), Stockholm (EU West), Singapore (SEA), and Sydney (Australia).
Network lag manifests as delayed hit registration, enemies teleporting short distances, and abilities firing but not dealing damage. FPS lag appears as stuttering movement, dropped frames during particle-heavy team fights, and input delay. Both issues can coexist but require different solutions.
Test your baseline internet performance using ping tests to major gaming servers. From Windows Command Prompt, run ping -t 8.8.8.8 for continuous monitoring. Your ping to Google’s DNS should be 10-30ms lower than your in-game ping, accounting for additional game server processing.
DNS Server Optimization
Your ISP’s DNS servers often add 10-20ms of unnecessary latency to initial server connections. Switch to gaming-optimized DNS providers for faster server discovery and reduced connection times.
On Windows, open Settings > Network & Internet > Ethernet (or Wi-Fi) > Edit next to your connection. Set DNS server assignment to Manual and configure:
- Cloudflare: Primary 1.1.1.1, Secondary 1.0.0.1
- Quad9: Primary 9.9.9.9, Secondary 149.112.112.112
- Google: Primary 8.8.8.8, Secondary 8.8.4.4
For router-level changes, access your router’s admin panel (typically 192.168.1.1 or 192.168.0.1). Navigate to Network > WAN > DNS Settings and input the same addresses. This applies DNS optimization to all devices on your network.
After changing DNS, flush your local cache by opening Command Prompt as Administrator and running ipconfig /flushdns, followed by ipconfig /release and ipconfig /renew. Restart Deadlock to establish new connections using the optimized DNS servers.
Port Forwarding Configuration
Deadlock uses Valve’s standard Source engine port ranges for matchmaking and server communication. Forward these specific ports on your router to eliminate connection restrictions:
- TCP 27015-27030: Steam client communication and server browsing
- UDP 27000-27100: Game traffic and voice chat
- TCP 80, 443: Steam store and update downloads
- UDP 4380, 27000-27031: Steam networking and matchmaking
Access your router admin panel and locate Port Forwarding or Virtual Servers. Create separate rules for each port range, setting your gaming PC’s local IP address as the destination. Find your PC’s IP by running ipconfig in Command Prompt and noting the IPv4 address.
For automatic configuration, enable UPnP in your router settings under Advanced > Network > UPnP. Steam and Deadlock will automatically request necessary ports, though manual forwarding provides more reliable results.
Verify port forwarding success using online port checking tools or Steam’s network test. In Steam, go to Settings > Downloads > Network Usage > Test Network Connection. All tests should return successful results.
Quality of Service (QoS) Prioritization
QoS ensures your gaming traffic receives priority over bandwidth-heavy applications like streaming video or file downloads. Configure gaming prioritization in your router’s QoS settings.
Access Advanced > QoS > Gaming Mode and enable Gaming Accelerator or equivalent feature. Add Deadlock as a high-priority application by specifying its executable path or selecting it from the gaming application list.
For manual QoS rules, create traffic shaping policies that prioritize:
- Gaming traffic: Highest priority, minimum 1 Mbps guaranteed bandwidth
- Voice chat: High priority, 128 Kbps guaranteed
- System updates: Low priority during gaming hours
- Streaming services: Lowest priority when gaming applications are active
ASUS routers offer Adaptive QoS with dedicated gaming mode. Netgear provides Dynamic QoS for automatic game traffic prioritization. Linksys routers include Smart Connect with gaming device priority.
Set your gaming PC’s network adapter to Gaming Priority in Windows by opening Settings > Gaming > Game Mode and enabling Game Mode. This prioritizes gaming traffic at the system level.
Wired vs Wireless Connection Optimization
Ethernet connections provide 5-15ms lower latency than Wi-Fi while eliminating packet loss from wireless interference. Use Cat6 or Cat6a cables for gigabit connections, avoiding Cat5e which can introduce packet loss at high speeds.
If wireless is necessary, optimize your Wi-Fi configuration for gaming performance. Access your router’s wireless settings and configure:
- Channel Width: 80MHz for 5GHz, 20MHz for 2.4GHz to reduce interference
- Wireless Channel: 1, 6, or 11 for 2.4GHz; 36, 44, 149, or 157 for 5GHz
- Transmission Power: 100% for maximum signal strength
- Beamforming: Enabled for directional signal focus
- MU-MIMO: Enabled on Wi-Fi 6 routers for better device handling
Position your gaming device within 15 feet of the router with minimal walls or interference. Avoid placement near microwaves, baby monitors, or other 2.4GHz devices that cause signal degradation.
In Windows, disable power management for your wireless adapter. Open Device Manager > Network Adapters, right-click your Wi-Fi adapter, select Properties > Power Management, and uncheck Allow the computer to turn off this device to save power.
Related: Game Lag Fix: Every Cause of In-Game Lag Solved for PC and Console
ISP Routing and Server Selection
Deadlock automatically connects you to the lowest-ping Valve server cluster, but your ISP’s routing can force traffic through suboptimal paths. Use traceroute to identify routing inefficiencies.
In Command Prompt, run tracert [server_ip] replacing [server_ip] with common Valve server addresses:
- Virginia: 162.254.193.6
- Washington: 162.254.197.6
- Stockholm: 146.66.158.6
- Singapore: 103.28.54.6
Examine the hop count and latency increases. Normal routing shows 8-15 hops with gradual latency increases. Routing problems appear as sudden 50+ms jumps or excessive hop counts above 20.
Contact your ISP if traceroute reveals routing inefficiencies. Request connection to different backbone providers or peering arrangements with Valve’s CDN partners. Business internet plans often include better routing than consumer connections.
Consider using different DNS servers to influence initial routing decisions. Some ISPs route differently based on DNS provider, with Cloudflare (1.1.1.1) often providing better gaming routes than ISP default servers.
MTU Size Optimization
Maximum Transmission Unit (MTU) size affects packet fragmentation and can introduce latency if misconfigured. Most connections work optimally with MTU values between 1472-1500 bytes.
Test your optimal MTU size using ping with the Don’t Fragment flag. In Command Prompt, run ping -f -l 1472 8.8.8.8. If successful, increase the packet size in increments of 4 until you receive “Packet needs to be fragmented” errors. The largest successful size plus 28 bytes is your optimal MTU.
Configure MTU in Windows by opening Command Prompt as Administrator and running netsh interface ipv4 show subinterfaces to identify your network adapter. Then run netsh interface ipv4 set subinterface “Local Area Connection” mtu=[optimal_size] store=persistent, replacing the interface name and size with your values.
Router MTU configuration varies by model. Access Advanced > WAN > Internet Connection and modify the MTU Size field. Some routers auto-detect optimal MTU, while others require manual input.
Gaming-optimized MTU values typically range from 1492 (PPPoE connections) to 1500 (standard Ethernet). Cable internet often works best with 1500, while DSL connections may require 1492 or lower values.
Shadow Quality and Performance Impact
Deadlock’s large vertical maps with complex geometry make shadow rendering extremely demanding. Navigate to Settings > Video > Shadow Quality and set it to Medium for the optimal balance between visual quality and performance.
High and Ultra shadow settings can reduce frame rates by 30-40% on mid-range GPUs while providing minimal visual improvement during fast-paced combat. Low shadows eliminate important visual cues for enemy positioning behind cover.
The Shadow Distance setting controls how far shadows render. Set this to Medium (approximately 100 meters) to maintain situational awareness without overloading your GPU during large team fights in open areas like the central plaza.
Particle Quality Optimization
Hero abilities in Deadlock generate intensive particle effects that can cause frame rate drops during team fights. Set Particle Quality to Low in Settings > Video to maintain consistent performance.
This setting significantly impacts ultimates like Dynamo’s Singularity or Infernus’s Concussive Combustion, which can drop frame rates from 120fps to 60fps on High particle settings. Low particles maintain essential visual information while preventing performance drops.
Advanced players can edit the video config file located at Steam/steamapps/common/Deadlock/game/citadel/cfg/video.txt. Modify particle_cpu_level and particle_gpu_level values from 2 (High) to 0 (Low) for granular control.
Global Illumination Settings
Set Global Illumination to Low in Settings > Video. Deadlock’s dynamic lighting system becomes extremely demanding in areas with multiple light sources, particularly during evening matches when artificial lighting combines with natural sunlight.
Still lagging after trying everything?
WTFast reroutes your game traffic through optimized servers — cutting ping by 30-50% for most players.
Higher Global Illumination settings provide more realistic lighting but can reduce performance by 20-25% in visually complex areas. The performance impact becomes most noticeable in the underground tunnel systems where multiple dynamic light sources interact.
V-Sync and Input Lag Reduction
Disable V-Sync in Settings > Video > V-Sync: Off. V-Sync adds 1-2 frames of input delay, which translates to 16-33ms of additional latency at 60fps. This delay makes parrying and precise aiming significantly more difficult.
Instead of V-Sync, use your GPU’s adaptive sync technology (G-Sync or FreeSync) if your monitor supports it. Enable this in your graphics driver control panel: NVIDIA Control Panel > Display > Set up G-Sync, or AMD Software > Display > FreeSync.
Cap your frame rate manually using fps_max 144 in the developer console (adjust for your monitor’s refresh rate). This prevents unnecessary GPU load while maintaining smooth performance without V-Sync’s input delay.
DLSS and FSR Configuration
Enable DLSS (NVIDIA) or FSR (AMD) and set it to Quality mode in Settings > Video. This provides 15-25% performance improvement with minimal visual quality loss, crucial for maintaining high frame rates during intense team fights.
Performance mode offers higher frame rate gains but can make distant enemies harder to spot due to reduced rendering resolution. Quality mode maintains visual clarity while providing substantial performance benefits.
DLSS 3 Frame Generation (RTX 40-series) can double frame rates but adds slight input latency. Test this feature during practice matches to determine if the smoothness benefit outweighs the minor delay increase.
NVIDIA Reflex Optimization
Enable NVIDIA Reflex Low Latency and set it to On + Boost in Settings > Video. This reduces system latency by 10-20ms, making parrying and reaction-based abilities more responsive.
Reflex works by optimizing CPU-GPU communication to reduce the render queue, minimizing the time between input and screen display. The Boost setting increases GPU power consumption but provides maximum latency reduction.
Monitor your latency reduction using LatencyFlashIndicator 1 in the developer console if you have a compatible NVIDIA GPU and G-Sync monitor with reflex measurement capabilities.
Intel E-Core Scheduling Fix
Intel 12th-14th generation CPUs with E-cores can cause stuttering in Source 2 games including Deadlock. Disable E-cores specifically for Deadlock using Process Lasso or manual affinity settings.
Download Process Lasso and create a rule for deadlock.exe to use only P-cores (cores 0-15 on most 12th-gen processors). Alternatively, launch Deadlock, open Task Manager, find the Deadlock process, right-click Set Affinity, and uncheck cores 16+ which represent E-cores.
For permanent configuration, create a batch file with: start /affinity FF “Steam\steamapps\common\Deadlock\game\bin\win64\deadlock.exe” where FF represents cores 0-7 in hexadecimal. Adjust the affinity mask based on your specific CPU configuration.
NVIDIA Driver Optimization
Install the latest Game Ready drivers from NVIDIA’s website rather than Windows Update versions, which often lag behind by several versions. Use DDU (Display Driver Uninstaller) to completely remove old drivers before installing new ones.
Configure NVIDIA Control Panel settings specifically for Deadlock:
- Power Management Mode: Prefer Maximum Performance
- Low Latency Mode: Ultra (if supported) or On
- Texture Filtering – Quality: Performance
- Threaded Optimization: On
- Vertical Sync: Fast (if no adaptive sync monitor) or Off
- Shader Cache: On
Access these settings by right-clicking your desktop, selecting NVIDIA Control Panel > Manage 3D Settings > Program Settings, then adding Deadlock from the dropdown or browsing to its executable.
Enable Game Ready Driver automatic updates in GeForce Experience to receive game-specific optimizations as they’re released. New drivers often include performance improvements for recently released games.
Related: Diablo 4 Lag Fix: How to Stop Rubberbanding in Dungeons and PvP
Related: Final Fantasy XIV Lag Fix: How to Lower Ping for Raids and Trials
AMD Driver Configuration
Download the latest AMD Software: Adrenalin Edition drivers directly from AMD’s website. Use AMD Cleanup Utility to remove previous driver installations completely before updating.
Configure AMD Software settings for optimal Deadlock performance:
- Anti-Lag: Enabled
- Radeon Boost: Enabled with 85% minimum resolution scale
- Radeon Image Sharpening: 80% sharpness, 0% ignore film grain
- Enhanced Sync: Enabled (if no FreeSync monitor)
- Frame Rate Target Control: Set to your monitor refresh rate + 20fps
Access game-specific settings in AMD Software > Gaming > Games, add Deadlock, and apply optimized settings. AMD’s automatic tuning often provides good baseline configurations that can be manually refined.
Background Application Management
Close unnecessary applications that consume network bandwidth or system resources. Common bandwidth-heavy programs include:
- Steam downloads: Pause in Steam > Downloads
- Windows Updates: Pause in Settings > Windows Update > Advanced Options
- Cloud sync services: OneDrive, Google Drive, Dropbox
- Streaming applications: Spotify, Netflix, YouTube running in background tabs
- File sharing: BitTorrent clients, Windows File Sharing
Use Resource Monitor (resmon.exe) to identify applications consuming network bandwidth. Sort by Network > Total B/sec to find hidden bandwidth consumers.
Disable startup programs in Task Manager > Startup that aren’t essential for gaming. RGB software, system monitoring tools, and manufacturer bloatware often consume unnecessary system resources during gaming sessions.
Set Windows to High Performance power plan in Control Panel > Power Options to prevent CPU throttling during gaming. This prevents Windows from reducing performance to save power during intensive gameplay.
Windows Game Mode Configuration
Enable Game Mode in Settings > Gaming > Game Mode. This Windows feature prioritizes gaming applications for CPU scheduling and prevents background maintenance tasks during gameplay.
Configure Graphics settings in Settings > Gaming > Graphics. Add Deadlock manually and set it to High Performance to ensure it uses your dedicated GPU rather than integrated graphics on systems with both.
Disable Game DVR and Game Bar in the same menu to prevent performance overhead from background recording features. These can cause stuttering and frame rate drops during intensive gaming sessions.
Process Priority Adjustment
Increase Deadlock’s process priority to ensure it receives preferential CPU scheduling. Launch Deadlock, open Task Manager, find deadlock.exe in the Processes tab, right-click and select Go to Details.
Right-click the process in Details tab and select Set Priority > High. This gives Deadlock priority over most background applications without interfering with critical system processes that require Realtime priority.
For permanent priority adjustment, use Process Lasso or create a batch file that launches Deadlock with elevated priority: start /high “Steam\steamapps\common\Deadlock\game\bin\win64\deadlock.exe”
Steam Overlay Optimization
The Steam Overlay can cause stuttering and frame rate drops in Source 2 games. Test disabling it by right-clicking Deadlock in your Steam library, selecting Properties > General, and unchecking Enable Steam Overlay while in-game.
If you need overlay functionality for friends chat or browser access, optimize its performance by disabling GPU accelerated rendering in Steam > Settings > In-Game > Use GPU accelerated rendering in web views.
Third-party overlays from Discord, NVIDIA GeForce Experience, or MSI Afterburner can also cause performance issues. Disable these selectively to identify any that negatively impact your specific hardware configuration.
Launch Options Configuration
Right-click Deadlock in Steam, select Properties > General > Launch Options, and add these optimization commands:
- -high: Launches with high process priority
- -novid: Skips intro videos for faster startup
- -nojoy: Disables joystick support if not needed
- -threads [number]: Specifies CPU thread count (use your CPU’s thread count)
- -refresh [rate]: Forces specific refresh rate (144, 165, 240)
Example launch options for a 8-core/16-thread CPU with 144Hz monitor: -high -novid -nojoy -threads 16 -refresh 144
Avoid outdated launch options like -console (enabled in game settings) or -windowed which can reduce performance compared to fullscreen mode.
Console Commands for Network Optimization
Enable the developer console and use these network optimization commands:
- rate 999999: Maximum bandwidth for Ethernet connections
- rate 786432: Optimal bandwidth for stable Wi-Fi connections
- cl_updaterate 128: Requests maximum update rate from server
- cl_cmdrate 128: Sends commands to server at maximum rate
- net_maxroutable 1200: Optimizes packet size for most connections
Save these settings permanently by creating an autoexec.cfg file in Steam/steamapps/common/Deadlock/game/citadel/cfg/ with your preferred commands. The game loads this file automatically at startup.
Use net_graph 1 to monitor the effectiveness of these changes. Your in and out values should consistently show your configured rates without packet loss or choke.
Shader Cache Management
Delete Deadlock’s shader cache after major updates to prevent stuttering from outdated cached data. Navigate to Steam/steamapps/shadercache/[deadlock_app_id]/ and delete all contents.
Steam will rebuild the cache during your next play session, which may cause brief stuttering for the first few minutes as new shaders compile. This one-time process resolves persistent stuttering issues caused by cache conflicts.
Enable shader pre-caching in Steam > Settings > Shader Pre-Caching to download optimized shaders before playing. This reduces in-game stuttering on first-time map loads and ability usage.
Fullscreen Optimization Disable
Windows 10/11 Fullscreen Optimizations can add input lag and reduce performance. Disable this feature specifically for Deadlock by navigating to Steam/steamapps/common/Deadlock/game/bin/win64/deadlock.exe.
Right-click the executable, select Properties > Compatibility, and check Disable fullscreen optimizations. This forces true fullscreen mode for better performance and lower input latency.
Also check Run this program as an administrator to prevent Windows security features from interfering with the game’s system access during intensive gameplay moments.
Memory and Storage Optimization
Deadlock requires 16GB RAM for optimal performance due to its large map sizes and asset streaming. With 8GB RAM, increase your virtual memory page file size to compensate for limited physical memory.
Set a custom page file size in System Properties > Advanced > Performance Settings > Advanced > Virtual Memory. Configure initial size to 4096MB and maximum size to 8192MB on your fastest drive (preferably SSD).
Install Deadlock on an SSD to reduce map loading times and eliminate texture streaming stutters. The game frequently loads new map sections as you move through the large vertical environment, making storage speed crucial for smooth gameplay.
Close memory-intensive applications before gaming. Web browsers with multiple tabs, photo editing software, and virtual machines can consume several gigabytes of RAM, forcing Deadlock to use slower virtual memory.
Still lagging after trying everything?
WTFast reroutes your game traffic through optimized servers — cutting ping by 30-50% for most players.
Frequently Asked Questions
What ping is considered good for Deadlock?
Under 50ms ping provides excellent performance for parrying and precise aim. 50-80ms is good for most gameplay but may affect reaction-based abilities. 80-120ms is playable but makes parrying more difficult due to timing discrepancies. Above 120ms severely impacts competitive performance, especially for heroes requiring precise timing like Infernus or Yamato.
Should I use Wi-Fi or Ethernet for Deadlock?
Ethernet provides 5-15ms lower latency and eliminates packet loss from wireless interference. Use Cat6 cables for gigabit connections to avoid bottlenecks. If Wi-Fi is necessary, use 5GHz band with 80MHz channel width and position within 15 feet of your router. Disable power management for your wireless adapter in Device Manager to prevent connection drops during gameplay.
Why does Deadlock stutter on Intel 12th-14th gen CPUs?
Source 2 engine has scheduling conflicts with Intel’s E-cores, causing frame time inconsistency. Disable E-cores for deadlock.exe using Process Lasso or Task Manager affinity settings. Set affinity to use only P-cores (typically cores 0-15) to eliminate stuttering. This is a known issue affecting CS2 and other Source 2 games on hybrid Intel processors.
What graphics settings impact performance most in Deadlock?
Shadow Quality has the largest performance impact – set to Medium for 30-40% better frame rates compared to High/Ultra. Particle Quality should be Low to prevent frame drops during team fights with multiple hero abilities. Global Illumination on Low saves 20-25% performance in complex lighting areas. These three settings provide the most significant performance gains with minimal visual quality loss.
How do I reduce input lag in Deadlock?
Disable V-Sync and enable NVIDIA Reflex Low Latency (On + Boost) for 10-20ms latency reduction. Use exclusive fullscreen mode and disable fullscreen optimizations in the executable properties. Set process priority to High and close unnecessary background applications. Cap frame rate using fps_max console command rather than V-Sync to maintain smooth performance without input delay.
