Request Global Stats

Asynchronously requests global app-wide stats from Steam, including optional N-day history. Call this before reading global aggregates or history via pure nodes.
Inputs
Pin |
Type |
Description |
|---|---|---|
Days (History) |
int32 |
Number of days of history to fetch. Use 0 for all-time (no per-day history). Typical values: 1, 7, 30. |
Outputs
Pin |
Type |
Description |
|---|---|---|
On Success |
Exec |
Fired when Steam returns global stats for the requested window. |
On Failure |
Exec |
Fired on I/O failure or when Steam is unavailable. |
Notes
- This populates the local cache for global statistics (for the whole player base), not per-user stats.
- After success, read values using your pure helpers (e.g., Get Global Stat (Aggregated), Get Global Stat History).
Daysis clamped to≥ 0;0requests all-time aggregates only.- Use Is Steam Available to guard this call; ensure Steam OSS is enabled and the Steam client is running.
- Does not modify any data—this is a read/populate operation only.
Typical usage
- On startup or stats screen open: Request Global Stats (e.g.,
7days) → Get Global Stat (Aggregated) for all-time totals → Get Global Stat History to chart the last 7 days.