Skip to main content

Check Jackpot

This node checks if a specific jackpot condition is met.

The Check Jackpot node scans the reels for a full-screen or specific pattern of a winning symbol.

The Check Jackpot node is a specialized win checker. It determines if a "Jackpot" condition has been met, typically defined as a specific symbol appearing in every column (or a specific pattern).

Inputs

Data

DataDescription
ReelsThe 2D array of symbols.

Parameters

DataDescription
Winning SymbolThe ID of the symbol required for the jackpot.

Actions

SignalDescription
DoTriggers the check.

Outputs

Results

DataDescription
Is WinBoolean. True if the jackpot condition is met.
Jackpot Winning PositionsArray of positions [row, col] involved in the jackpot.

Events

SignalDescription
DoneTriggered after the check.

Usage

Grand Jackpot

  1. Set Winning Symbol to 7 (e.g., the "7" symbol).
  2. Connect the reels.
  3. Trigger Do.
  4. If Is Win is true, trigger the Jackpot animation and payout.

Detailed Behavior

  • Logic: It counts how many columns contain at least one instance of the Winning Symbol. If every column has the symbol, it's a win. (This logic implies a "scatter-like" jackpot where position doesn't matter, just presence on the reel).

Troubleshooting

  • No Win: Ensure the Winning Symbol ID is correct.