SPTS Stats/Tokens Calculator is a fast, theme-adaptive tool built for Super Power Training Simulator. It helps estimate training time for your stats and token progression — based directly on in-game mechanics.
The stat gain per second is calculated from your Stat per Tick value and the duration of each
tick:
// Gain per second
gainPerSecond = perTick / tick
// Tick duration (depends on stat)
tick = statTickSeconds
// Base Tick Times:
FS = 1s
BT = 1.25s
MS = custom (default 2, community says 3 is possible)
JF = 1s
PP = 1.5s
Token gain includes both passive tokens (every 12s) and quest rewards if enabled.
// Base passive tokens
tokensPerSec = 5 / 60
// Daily Quests (+60/day)
daily = dailyEnabled ? 60 : 0
// Weekly Quests (+9300/week)
weekly = weeklyEnabled ? 9300 : 0
// VIP doubles both
if (vip) {
daily *= 2
weekly *= 2
}
totalPerSec = tokensPerSec + (daily/86400) + (weekly/(7*86400))
If you gain 2.08k Fist Strength per tick and your tick duration is 1s,
this calculator determines exactly how long it will take to reach your target — or how much you’ll gain over
a set time.
Created and maintained by
@arturwol.
Got these formulas from official SPTS Discord server.
If anything changes — open an issue or contact me on any SPTS community server.