Get Paytable
This node generates a paytable based on a formula.
The Get Paytable node calculates the payout multipliers for every symbol and combination length.
The Get Paytable node creates the payout rules for the game. Instead of manually typing a massive JSON object, you can define a formula (e.g., linear growth) to automatically calculate how much 3, 4, or 5 matches of a symbol are worth.
Parameters
| Data | Description |
|---|
| Number of Symbols | Total symbols. |
| Column Size | Max combination length (usually 5). |
| Payout Formula | Formula using x (symbol index). Default: 2.25 + 0.75 * x. |
Custom Payouts
| Data | Description |
|---|
| Symbol N Custom Payout | Override the base payout for specific symbols. |
Actions
| Signal | Description |
|---|
| Do | Triggers generation. |
Outputs
Results
| Data | Description |
|---|
| Paytable | The generated JSON paytable object. |
Events
| Signal | Description |
|---|
| Done | Triggered when complete. |
Usage
Setup
- Trigger Do at game start.
- Store Paytable in a variable.
- Pass this variable to Calculate Winnings.
Detailed Behavior
- Structure: Output format is
{ "SymbolID": { "3": value, "4": value, "5": value } }.
- Logic:
Payout = BasePayout(from formula) * ComboLength.
Troubleshooting
- Low Payouts: Adjust the formula. Remember
x is the symbol index, so higher index symbols usually get higher base payouts.