Setup
Prerequisites
Before configuring the plugin, make sure you have:
- An Epic Developer Portal account — dev.epicgames.com
- A Product created in the portal with at least one Deployment
- At least one Stat configured under
Dev Portal → [Your Product] → Stats - At least one Leaderboard configured under
Dev Portal → [Your Product] → Leaderboards, linked to that stat

Step 1 — Enable the Plugin
In Unreal Engine:
- Open Edit → Plugins
- Search for EOS Leaderboard
- Enable the plugin and restart the Editor
Step 2 — Get Your EOS Credentials
In the Epic Developer Portal, navigate to:
Your Product → Product Settings → SDK Credentials
Collect the following values:
| Field | Where to find it |
|---|---|
ProductId | Product Settings → Product ID |
SandboxId | Product Settings → Sandbox ID (use your Dev sandbox) |
DeploymentId | Product Settings → Deployment ID |
ClientId | SDK Credentials → Client ID |
ClientSecret | SDK Credentials → Client Secret |
Step 3 — Configure DefaultEngine.ini
Add the [EOSCore] section to your project's Config/DefaultEngine.ini:
[EOSCore]
ProductId=your-product-id
SandboxId=your-sandbox-id
DeploymentId=your-deployment-id
ClientId=your-client-id
ClientSecret=your-client-secret
; Optional settings (defaults shown)
bAutoInitialize=true
bTickEOS=true
bEnableOverlay=true
bEnableSocialOverlay=true
Tip: If you already use
[OnlineSubsystemEOS]or[/Script/OnlineSubsystemEOS.EOSSettings], the plugin will read credentials from those sections as a fallback. You do not need to duplicate your credentials.
Step 4 — (Optional) OnlineSubsystemEOS Co-existence
If your project already has OnlineSubsystemEOS enabled and set as the default platform service, the plugin will automatically detect and borrow its EOS platform handle.
[OnlineSubsystem]
DefaultPlatformService=EOS
In this case:
- No second EOS handle is created — the plugin reuses the existing one safely.
- No ticker is started — the OSS already ticks EOS.
- You do not need the
[EOSCore]section (though it is harmless to have it).
Step 5 — Configure a Stat in the Dev Portal
EOS Leaderboards are powered by Stats. To create one:
- Go to
Dev Portal → [Your Sandbox] → Stats - Click Create Stat and fill in:
- Stat Name — the exact string you will pass to
EOS Ingest Stat(e.g.score) - Aggregation Method — how EOS combines multiple ingests:
- Stat Name — the exact string you will pass to
| Method | Behavior |
|---|---|
SUM | Adds each ingest to the total (e.g. cumulative XP) |
LATEST | Keeps only the most recent ingest value |
MAX | Keeps the highest value ever recorded |
MIN | Keeps the lowest value ever recorded |
Step 6 — Configure a Leaderboard in the Dev Portal
- Go to
Dev Portal → [Your Sandbox] → Leaderboards - Click Create Leaderboard and fill in:
- Leaderboard ID — the exact string you will pass to
EOS Query Leaderboard(e.g.leaderboard_score) - Stat — select the stat you created above
- Sort Order —
Descending(highest score first) orAscending - Start / End Date — optional time window (leave blank for a permanent leaderboard)
- Leaderboard ID — the exact string you will pass to
Step 7 — Verify Setup
In your game's BeginPlay (or GameInstance Init), call InitializeEOS and check the return value:
Event BeginPlay
└─► InitializeEOS ──► (returns true) ──► Continue to Auth Login
└─► (returns false) ──► Log error / show error screen
If InitializeEOS returns false, check:
- Your credentials in
DefaultEngine.iniare correct (no trailing spaces) - The
EOSCoresection name is exactly[EOSCore] - Your Sandbox and Deployment IDs match your Dev Portal environment
Subsystem Persistence
UEOSCoreLeaderboardSubsystem lives as long as the GameInstance. It persists across level changes automatically — you do not need to re-initialize EOS on each level load.
Log Category
All plugin logs use the LogEOSCore category. To see verbose logs, add to DefaultEngine.ini:
[Core.Log]
LogEOSCore=Verbose
Next Step
Once InitializeEOS returns true, follow the Example Project guide for the complete login → query → ingest flow.
Introduction
EOS Leaderboard is a Blueprint-first plugin for Unreal Engine 5.4+ that integrates Epic Online Services Leaderboards into your game — stat ingestion, rank queries, range filtering, and automatic player identity management included.
Functions
Complete reference for every Blueprint node and utility function provided by EOS Leaderboard.