Skip to content

Guides

Hextris Combo Timer Strategy Guide: Multiplier Decay Math and Banking Thresholds

Mathematical breakdown of the Hextris combo timer countdown ring. Learn when to bank 3-block clears, how multiplier decay curves work, and how to reach 20,000+ points.

3 min read
Topic
Game mechanics
Difficulty
intermediate
Spoilers
None
Play this gameHextris: Play Online in Browser (Fast Hexagonal Puzzle, No Download)▶ Play

In Hextris, the colored arcs encircling the central hexagon represent a dynamic score-multiplier decay timer rather than visual decoration. Every block elimination refreshes the multiplier countdown for that specific color; clearing blocks before the arc drains preserves an exponential scoring multiplier that elevates casual 2,000-point runs into 20,000+ point masterclasses.

Mathematical Decay Model & Multiplier Scaling

The scoring engine calculates points per cleared block using a compound formula based on streak count and cluster size:

$$\text{Points} = (\text{Base Value} \times N) \times (1 + \text{Multiplier}) \times \text{Speed Factor}$$

Where $N$ is the number of connected blocks (minimum 3).

Cluster Size ($N$) Point Multiplier Timer Replenishment Risk Assessment
3 Blocks (Minimum) 1.0x Base +25% Arc Duration Zero Risk; maintains baseline board flow
4 Blocks 2.5x Base +45% Arc Duration Low Risk; ideal when adjacent facets are empty
5 Blocks 5.0x Base +70% Arc Duration Medium Risk; high-yield threshold for 10k+ runs
6+ Blocks (Mega Clear) 10.0x Base +100% (Full Reset) High Risk; only viable during early slow phases

JavaScript Timer Logic Under the Hood

The upstream source calculates timer decay on each frame tick within the main rendering loop:

// Canonical Hextris combo decay calculation
function updateComboTimer(delta) {
    for (let i = 0; i < 6; i++) {
        if (comboTimers[i] > 0) {
            // Decay rate accelerates as overall game score increases
            comboTimers[i] -= delta * (1.0 + (currentScore / 10000) * 0.5);
            if (comboTimers[i] <= 0) {
                comboTimers[i] = 0;
                comboMultipliers[i] = 1; // Multiplier drops back to baseline
            }
        }
    }
}

Because decay scales with currentScore / 10000, holding stacks becomes progressively more dangerous late in a run.

The Bank vs. Hold Decision Matrix

Every few seconds, the board confronts the player with an operational choice: take the safe 3-block clear immediately, or hold the stack to gamble on a 5-block cascade.

                     [ Current Board Load ]
                               |
              -----------------------------------
              |                                 |
      < 50% Capacity                    >= 50% Capacity
              |                                 |
      [ HOLD THE STACK ]                [ BANK IMMEDIATELY ]
   Aim for 5-block clusters         Take 3-block clears instantly
   Maximize score multiplier       Prevent catastrophic facet overflow

Heuristic Rules for 20,000+ Scores:

  1. Phase 1 (0 to 5,000 points): Block spawn velocity is low. Always hold stacks until 4 or 5 blocks can be detonated in a single rotation.
  2. Phase 2 (5,000 to 12,000 points): Spawn speed doubles. Transition to a 2-facet holding strategy: designate two adjacent sides for combo building while keeping the remaining four facets strictly clear.
  3. Phase 3 (12,000+ points): Decay rates are punishingly fast. Never hold a stack if any facet exceeds 4 blocks in height. Clear immediately to preserve board headroom.

Spatial Blindness: Watch the Emptiest Facet

Human visual tracking naturally locks onto the tallest stack because it triggers anxiety. In high-level Hextris, the tallest stack is rarely what kills you—you are actively managing it. The fatal blow almost always arrives on an unmonitored empty facet that catches 3 consecutive off-color blocks before your gaze rotates back around.

Test these concepts directly in the GamerzGeek Hextris Browser Player with zero installations or tracking scripts.