Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/services/cheat_detection/entry.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
// Logger is declared in database_layer.go

const (
CheatCheckVersion = "beta-2.2.1"
CheatCheckVersion = "beta-2.2.2"
Threshold = 0.05
PlayerThreshold = 0.02
)
Expand Down
28 changes: 8 additions & 20 deletions lib/services/cheat_detection/heuristics.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,28 +241,16 @@ var Pantheon2Heuristic = ActivityHeuristic{
{MinPlayers: 4, CheatedChance: 0.15},
{MinPlayers: 3, CheatedChance: 0.35},
},
pantheonVersionMorgethSurpassing: {
{
MinPlayers: 1,
Range: []DateRange{
{Start: pantheonBossPushStratStart, End: time.Date(2999, time.January, 1, 0, 0, 0, 0, time.UTC)},
},
CheatedChance: 0.25,
},
{MinPlayers: 4, CheatedChance: 0.65},
},
pantheonVersionMorgethSurpassing: append(
pantheonBossPushLowmanEntries(0.25),
LowmanData{MinPlayers: 4, CheatedChance: 0.65},
),
},
CheckpointLowman: map[int][]LowmanData{
pantheonVersionMorgethSurpassing: {
{
MinPlayers: 1,
Range: []DateRange{
{Start: pantheonBossPushStratStart, End: time.Date(2999, time.January, 1, 0, 0, 0, 0, time.UTC)},
},
CheatedChance: 0.25,
},
{MinPlayers: 4, CheatedChance: 0.50},
},
pantheonVersionMorgethSurpassing: append(
pantheonBossPushLowmanEntries(0.25),
LowmanData{MinPlayers: 4, CheatedChance: 0.50},
),
pantheonVersionCalusResplendent: {
{MinPlayers: 2, CheatedChance: 0.15},
},
Expand Down
14 changes: 13 additions & 1 deletion lib/services/cheat_detection/pantheon_heuristics.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,22 @@ import (
"time"
)

// Boss push-off strat (solo Morgeth + IP Rev) discovered by Spite#2562 on 2026-06-15 ~08:33 UTC.
// Boss push-off strat (1–3 player Morgeth + solo IP Rev) discovered by Spite#2562 on 2026-06-15 ~08:33 UTC.
// Window starts 2h earlier to cover clears immediately after the strat spread.
var pantheonBossPushStratStart = time.Date(2026, 6, 15, 6, 33, 0, 0, time.UTC)

var pantheonBossPushStratRange = []DateRange{
{Start: pantheonBossPushStratStart, End: time.Date(2999, time.January, 1, 0, 0, 0, 0, time.UTC)},
}

func pantheonBossPushLowmanEntries(cheatedChance float64) []LowmanData {
return []LowmanData{
{MinPlayers: 1, Range: pantheonBossPushStratRange, CheatedChance: cheatedChance},
{MinPlayers: 2, Range: pantheonBossPushStratRange, CheatedChance: cheatedChance},
{MinPlayers: 3, Range: pantheonBossPushStratRange, CheatedChance: cheatedChance},
}
}

const (
pantheonEmptyFeatSkullHash = int64(790421403)
pantheonBattalionsSkullHash = int64(2392637702)
Expand Down
2 changes: 1 addition & 1 deletion tools/cheat-detection/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var logger = logging.NewLogger("cheat-detection")

const (
numBungieWorkers = 15
versionPrefix = "beta-2.2.1"
versionPrefix = "beta-2.2.2"
)

// Instances played by level 3+ accounts that have not yet been checked at the current version.
Expand Down
Loading