| Time | Bets | Wager | Profit | Profit (USD) |
|---|---|---|---|---|
| 1 Hour | {{ new Intl.NumberFormat('en-US').format(Math.round(proj.bets.h1)) }} | {{ formatCompact(proj.wager.h1) }} | {{ formatCompact(proj.profit.h1, true) }} | {{ new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', signDisplay: 'always' }).format(proj.profit.h1 * currencyConversionRate) }} |
| 6 Hours | {{ new Intl.NumberFormat('en-US').format(Math.round(proj.bets.h6)) }} | {{ formatCompact(proj.wager.h6) }} | {{ formatCompact(proj.profit.h6, true) }} | {{ new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', signDisplay: 'always' }).format(proj.profit.h6 * currencyConversionRate) }} |
| 1 Day | {{ new Intl.NumberFormat('en-US').format(Math.round(proj.bets.d1)) }} | {{ formatCompact(proj.wager.d1) }} | {{ formatCompact(proj.profit.d1, true) }} | {{ new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', signDisplay: 'always' }).format(proj.profit.d1 * currencyConversionRate) }} |
| 1 Week | {{ new Intl.NumberFormat('en-US').format(Math.round(proj.bets.d7)) }} | {{ formatCompact(proj.wager.d7) }} | {{ formatCompact(proj.profit.d7, true) }} | {{ new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', signDisplay: 'always' }).format(proj.profit.d7 * currencyConversionRate) }} |
| 1 Month | {{ new Intl.NumberFormat('en-US').format(Math.round(proj.bets.d30)) }} | {{ formatCompact(proj.wager.d30) }} | {{ formatCompact(proj.profit.d30, true) }} | {{ new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', signDisplay: 'always' }).format(proj.profit.d30 * currencyConversionRate) }} |
| # | Name | Phase | Sig | Dev | Balance | Profit | Games | Bets/h | 1Kx | Nonce | W | L | Streak | MLS | Last bet | Uptime | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ desktopCurrentPage * desktopPageSize + index + 1 }} | {{ client.username }} {{ getConnectionStatusText(client) }} | {{ client.diceBotState?.phase || '-' }} | {{ client.diceBotState?.paramsHit != null ? client.diceBotState.paramsHit + '/' + (client.diceBotState.paramsTotal || 4) : '-' }} | {{ client.diceBotState?.deviation != null ? client.diceBotState.deviation.toFixed(1) : '-' }} | {{ client.funds ? new Intl.NumberFormat('en-US', { minimumFractionDigits: 4, maximumFractionDigits: 4 }).format(client.funds.available) : 'N/A' }} | {{ client.diceBotState ? new Intl.NumberFormat('en-US', { minimumFractionDigits: 4, maximumFractionDigits: 4, signDisplay: 'always' }).format(client.diceBotState.profit) : 'N/A' }} | {{ client.diceBotState?.totalGames ? client.diceBotState.totalGames.toLocaleString() : '0' }} | {{ client.diceBotState ? new Intl.NumberFormat('en-US').format(client.diceBotState.betsPerHour) : 'N/A' }} | {{ client.diceBotState?.total1000xSeen || 0 }} | {{ client.diceBotState?.seedInfo?.nonce ?? 'โ' }} | {{ (client.diceBotState && client.diceBotState.wins) || 0 }} | {{ (client.diceBotState && client.diceBotState.losses) || 0 }} | {{ client.diceBotState ? client.diceBotState.currentStreak : 0 }} | {{ (client.diceBotState && client.diceBotState.highestLosingStreak) || '-' }} | {{ client.diceBotState && client.diceBotState.lastBet ? getTimeSinceLastBet(client) : '-' }} | {{ formattedRuntime((client.runtime || 0) / 1000) }} |