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).
Data
| Data | Description |
|---|
| Reels | The 2D array of symbols. |
Parameters
| Data | Description |
|---|
| Winning Symbol | The ID of the symbol required for the jackpot. |
Actions
| Signal | Description |
|---|
| Do | Triggers the check. |
Outputs
Results
| Data | Description |
|---|
| Is Win | Boolean. True if the jackpot condition is met. |
| Jackpot Winning Positions | Array of positions [row, col] involved in the jackpot. |
Events
| Signal | Description |
|---|
| Done | Triggered after the check. |
Usage
Grand Jackpot
- Set Winning Symbol to
7 (e.g., the "7" symbol).
- Connect the reels.
- Trigger Do.
- 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.