@page @using CsWeb.Services @model IndexModel @{ ViewData["Title"] = ""; } @section Meta { }

Outnumbered

A players-vs-bots RPG mod for CS2: you and a few humans versus a scaling horde. Kill for XP, level up, spend points on permanent stats, prestige for keeps — across three modes. No matchmaking, no ranks lost, no teenagers screaming into your ear. Pick a server and shoot something.

These servers run deliberately without VAC (it's a PvE mod that rewrites half the game). Your account is safe — see the FAQ.

@if (Model.Servers.Count == 0) {
No servers found. If you just deployed, the game instances may still be starting.
}
@foreach (var (id, s) in Model.Servers) { var d = s.Data;

@(d?.Hostname is { Length: > 0 } h ? h : id)

@if (!s.Online) { offline } else { @Fmt.ModeName(d?.Mode) }
@if (d is not null) {
@d.Map @d.Humans.Count/@d.MaxHumans players · @d.Bots bots
@if (Fmt.ExtraLine(d) is { Length: > 0 } extra) {
@extra
} @if (d.Port > 0) {
connect @Model.Fleet.PublicHost:@d.Port Join
} } else {
@Fmt.Age(s)
}
}