Files
bitburner-src/markdown/bitburner.goanalysis.getstats.md

973 B

Home > bitburner > GoAnalysis > getStats

GoAnalysis.getStats() method

Displays the game history, captured nodes, and gained bonuses for each opponent you have played against.

The details are keyed by opponent name, in this structure:

{
  <OpponentName>: {
    wins: number,
    losses: number,
    winStreak: number,
    highestWinStreak: number,
    favor: number,
    bonusPercent: number,
    bonusDescription: string,
  }
}

Signature:

getStats(): Partial<Record<GoOpponent, SimpleOpponentStats>>;

Returns:

Partial<Record<GoOpponent, SimpleOpponentStats>>

A dictionary of opponent stats keyed by opponent name.

Remarks

RAM cost: 0 GB