Skip to content

Instantly share code, notes, and snippets.

How to Get and Stay in 100% PvE Lobbies in Arc Raiders

Report Date: 2026-02-18 Author/Reporter: DeepAgent

This guide provides practical, actionable strategies for Arc Raiders players who wish to access and maintain placement in Player-versus-Environment (PvE) focused lobbies. It is based on a synthesis of developer statements and extensive community research into the game's unique matchmaking system.

1.0 What Influences Matchmaking: The ABMM System

Arc Raiders does not use traditional Skill-Based Matchmaking (SBMM) or gear-based matchmaking. Instead, it uses a proprietary system officially confirmed by developer Embark Studios, widely known as Aggression-Based Matchmaking (ABMM). This system analyzes your in-game behavior to create a profile of your playstyle and then attempts to place you in lobbies with similarly-minded players.

@PSahner
PSahner / user_aliases.cmd
Created July 26, 2023 14:01
cmder: Aliases (Doskey) configuration (%cmder_root%\config\user_aliases.cmd)
;= @echo off
;= rem Call DOSKEY and use this file as the macrofile
;= %SystemRoot%\system32\doskey /listsize=1000 /macrofile=%0%
;= rem In batch mode, jump to the end of the file
;= goto:eof
;= Add aliases below here
e.=explorer .
gl=git log --oneline --all --graph --decorate $*
ls=ls --show-control-chars -F --color $*
ll=ls -la -F --color $*
@PSahner
PSahner / Dockerfile
Last active September 5, 2022 15:50
SAP Commerce Cloud 2105 - Docker Container (with official SapMachine)
FROM sapmachine:11
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y --no-install-recommends unzip vim wget ca-certificates gnupg2 net-tools xclip curl openssl
RUN groupadd sapcc
RUN useradd -m -g sapcc -p $(openssl passwd -1 sapcc) sapcc
USER sapcc
@PSahner
PSahner / Dockerfile
Last active August 5, 2022 11:36
Spartacus v4 - Remote Docker/Dev Container with Node JS and Angular for VSCode
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster
ARG VARIANT=16-bullseye
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}
# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>
# [Optional] Uncomment if you want to install an additional version of node using nvm
# ARG EXTRA_NODE_VERSION=10