AUSummary v1.0.2 Update
ยท 6 min read
AU Summary has updated to v1.0.2!โ
๐ฎ Features Overviewโ
Core Functionalityโ
- Automatic Game Tracking: Captures game data automatically without any manual input required
- Real-Time Data Collection: Records events as they happen during gameplay
- Persistent Storage: Saves all games as JSON files for permanent record-keeping
- Live Viewer Updates: Statistics viewer updates automatically when new games are played
๐ฆ Componentsโ
1. AUSUMMARY.DLL (BepInEx Mod)โ
The game mod that runs inside Among Us and captures all game data.
What It Tracks
- โ Player names and colors
- โ Roles (Sheriff, Jester, Vigilante, Grenadier, etc.)
- โ Teams (Crewmate, Impostor, Neutral)
- โ Game start and end times
- โ Game duration
- โ Map name
- โ Kill events (who killed who and when)
- โ Ejection/voting events
- โ Death causes and times
- โ Task completion statistics
- โ Meeting counts
- โ Win conditions and winners
- โ Player survival status
Technical Details
- Uses Harmony patches to hook into game events
- Captures role data from Town of Us mod
- Records events with precise timestamps
- Automatically saves JSON summaries on game end
- Supports neutral roles (Jester, Arsonist, Glitch, etc.)
2. AUSUMMARY.Viewer (Desktop Application)โ
A modern WPF desktop application for viewing and analyzing your game statistics.
๐ฏ Viewer Featuresโ
๐ Game Managementโ
Browse All Games
- Grid View: Visual card-based layout showing all games at a glance
- Game Cards Display:
- Date and time of game
- Map name (The Skeld, MIRA HQ, Polus, etc.)
- Game duration
- Player count
- Number of kills
- Number of meetings
- Winning team
- Click to View: Click any game card to see full details
Most Recent Game
- Quick Access: One-click button to view your latest game
- Instant Details: See complete breakdown of your most recent match
Game Details View
- Match Information:
- Full Match ID (with copy to clipboard)
- Complete timestamp
- Map and game mode
- Total duration
- Statistics:
- Player count
- Total meetings held
- Tasks completed vs total tasks
- Task completion percentage
- Kill count and ejection count
- Winner Information:
- Winning team
- Win condition (Kill All Crewmates, Complete Tasks, etc.)
- Detailed Player List:
- Player name and color
- Role played
- Team affiliation
- Alive/dead status (โ /๐)
- Task completion (for Crewmates)
- Who killed them (if dead)
๐ Search & Filterโ
Player Search
- Search by Name: Find any player's complete statistics
- Comprehensive Stats Display:
- Total games played
- Win/loss record and win rate percentage
- Games as Crewmate/Impostor/Neutral
- Death statistics and survival rate
- Total kills made
- Task completion rate
- All roles played with frequency
- Recent game history (last 5 games with results)
Advanced Filters
- Map Filter: Show only games from specific maps
- The Skeld
- MIRA HQ
- Polus
- Or all maps
- Winner Filter: Filter by winning team
- Crewmate wins
- Impostor wins
- Or all games
- Player Count Filter: Filter by lobby size
- 1-4 players
- 5-8 players
- 9+ players
- Or all sizes
- Clear Filters: One-click reset of all filters
Sort Options
- Newest First: Most recent games at the top (default)
- Oldest First: Historical games first
- Longest Duration: Games sorted by longest playtime
- Shortest Duration: Quick games first
๐ Leaderboardโ
Top 20 Players Display
- Ranked by win rate percentage
- Secondary sort by total games played
- Medal system (๐ฅ ๐ฅ ๐ฅ) for top 3
- Shows for each player:
- Total games played
- Wins and win rate
- Total kills
- Total deaths
- Total tasks completed
๐ Overall Statisticsโ
Live Dashboard (Updates Automatically)
- Total games recorded
- Crewmate win rate with percentage
- Impostor win rate with percentage
- Average game duration
๐ ๏ธ Management Toolsโ
File Management
- Open Folder: Directly access JSON files location
- Export Stats: Generate text report of all statistics
- Includes overall stats
- Lists all games with details
- Timestamped export file
- Clear All Data: Delete all game records with confirmation
- Delete Individual Game: Remove specific games from history
Game Actions
- Copy Match ID: Copy full match ID to clipboard
- View Full Details: Complete game breakdown
- Back Navigation: Easy return to game list
๐พ Installationโ
Requirementsโ
- Among Us (Steam or Epic version)
- BepInEx installed
- Town of Us mod installed
- .NET 6.0 Runtime (for viewer only)
Mod Installationโ
-
Locate Your Among Us Folder:
Example: D:\Steam\steamapps\common\Among Us -
Copy Mod Files:
- Copy
AUSUMMARY.DLL.dllto:[Among Us]/BepInEx/plugins/ - Copy
AUSUMMARY.Shared.dllto:[Among Us]/BepInEx/plugins/
- Copy
-
Verify Installation:
- Launch Among Us
Viewer Installationโ
-
Extract Viewer:
- Extract the AUSUMMARY.Viewer folder anywhere on your computer
-
Run the Viewer:
- Double-click
AUSUMMARY.Viewer.exe - The viewer will automatically find your game summaries
- Double-click
๐ File Structureโ
Output Locationโ
All game summaries are saved to:
C:\Users\[YourName]\Documents\AmongUsGameSummaries\
File Formatโ
Each game is saved as a JSON file:
game_20260119_043200.json
JSON Structure:
{
"MatchId": "unique-match-identifier",
"Timestamp": "2026-01-19T04:32:00",
"Metadata": {
"MapName": "The Skeld",
"GameMode": "Town of Us",
"PlayerCount": 8,
"GameDuration": "00:05:30",
"TotalMeetings": 3,
"TotalTasks": 32,
"CompletedTasks": 28
},
"Players": [
{
"PlayerName": "Ninja",
"ColorName": "Red",
"Role": "Sheriff",
"Team": "Crewmate",
"IsAlive": false,
"DeathCause": "Killed",
"KilledBy": "Frettedcud",
"TasksCompleted": 5,
"TotalTasks": 4
}
],
"Events": [
{
"EventType": "GameStart",
"Timestamp": 0.0,
"Description": "Game started"
},
{
"EventType": "PlayerKilled",
"Timestamp": 45.5,
"Description": "Ninja was killed by Frettedcud"
}
],
"Winner": {
"WinningTeam": "Impostor",
"WinCondition": "Kill All Crewmates",
"Winners": ["Frettedcud"]
},
"Statistics": {
"TotalKills": 7,
"TotalEjections": 2,
"TaskCompletionRate": 0.875
}
}
๐จ User Interfaceโ
Modern Dark Theme
- Professional VS Code-inspired dark theme
- Clean, flat design without distracting effects
- High contrast for readability
- Color-coded elements:
- ๐ต Blue: Primary actions and headers
- ๐ข Green: Crewmate wins and positive stats
- ๐ด Red: Impostor wins and danger actions
- ๐ก Yellow: Timestamps and highlights
- ๐ฃ Purple: Player statistics
Layout
- Two-Column Design:
- Left sidebar: Navigation and filters (320px)
- Right panel: Main content area (responsive)
- Top Menu Bar: Quick actions and tools
- Status Bar: Current action and version info
Navigation
- Clear button labels with emoji icons
- Intuitive back navigation
- Breadcrumb-style status updates
- Responsive hover effects
