11 KiB
sidebar_position
sidebar_position |
---|
2 |
Auto Spin Model
Index
Properties
- autoSpinLeft
Number
Remaining number of auto spins. - isAutoSpin
Boolean
Indicates whether auto spin is active. - isStopOnFeatureTrigger
Boolean
Whether to stop auto spin on feature trigger. - winLimit
Number
Win threshold for stopping auto spin. - isWinLimitActive
Boolean
Indicates whether win limit tracking is enabled. - lossLimit
Number
Loss threshold for stopping auto spin. - isLossLimitActive
Boolean
Indicates whether loss limit tracking is enabled.
Methods
- SetAutoSpinLeft Sets remaining number of auto spins.
- GetAutoSpinLeft Gets remaining number of auto spins.
- SetIsAutoSpin Activates or deactivates auto spin.
- GetIsAutoSpin Returns the current auto spin status.
- SetIsStopOnFeatureTrigger Sets whether auto spin should stop on feature trigger.
- GetIsStopOnFeatureTrigger Gets stop-on-feature-trigger status.
- SetIsLossLimitActive Enables or disables loss limit tracking.
- GetIsLossLimitActive Returns whether loss limit is active.
- SetLossLimit Sets the loss limit value.
- GetLossLimit Gets the current loss limit value.
- SetIsWinLimitActive Enables or disables win limit tracking.
- GetIsWinLimitActive Returns whether win limit is active.
- SetWinLimit Sets the win limit value.
- GetWinLimit Gets the current win limit value.
Details
Properties
autoSpinLeft
Remaining number of auto spins.
meta | description |
---|---|
Type | Number |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L9 |
isAutoSpin
Indicates whether auto spin is active.
meta | description |
---|---|
Type | Boolean |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L10 |
isStopOnFeatureTrigger
Whether to stop auto spin on feature trigger.
meta | description |
---|---|
Type | Boolean |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L11 |
winLimit
Win threshold for stopping auto spin.
meta | description |
---|---|
Type | Number |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L12 |
isWinLimitActive
Indicates whether win limit tracking is enabled.
meta | description |
---|---|
Type | Boolean |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L13 |
lossLimit
Loss threshold for stopping auto spin.
meta | description |
---|---|
Type | Number |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L14 |
isLossLimitActive
Indicates whether loss limit tracking is enabled.
meta | description |
---|---|
Type | Boolean |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L15 |
Methods
SetAutoSpinLeft
Sets remaining number of auto spins.
meta | description |
---|---|
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L20 |
Parameters
autoSpinLeft
Number
GetAutoSpinLeft
Gets remaining number of auto spins
meta | description |
---|---|
Returns | Number |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L26 |
SetIsAutoSpin
Activates or deactivates auto spin
meta | description |
---|---|
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L32 |
Parameters
isAutoSpin
Boolean
GetIsAutoSpin
Returns the current auto spin status.
meta | description |
---|---|
Returns | Boolean |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L38 |
SetIsStopOnFeatureTrigger
Sets whether auto spin should stop on feature trigger.
meta | description |
---|---|
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#44 |
Parameters
isActive
Boolean
GetIsStopOnFeatureTrigger
Gets stop-on-feature-trigger status
meta | description |
---|---|
Returns | Boolean |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#50 |
SetIsLossLimitActive
Enables or disables loss limit tracking.
meta | description |
---|---|
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#56 |
Parameters
isLossLimitActive
Boolean
GetIsLossLimitActive
Returns whether loss limit is active
meta | description |
---|---|
Returns | Boolean |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#62 |
SetLossLimit
Sets the loss limit value.
meta | description |
---|---|
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L68 |
Parameters
lossLimit
Number
GetLossLimit
Gets the current loss limit value.
meta | description |
---|---|
Returns | Number |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#74 |
SetIsWinLimitActive
Enables or disables win limit tracking
meta | description |
---|---|
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L80 |
Parameters
isWinLimitActive
Boolean
GetIsWinLimitActive
Returns whether win limit is active.
meta | description |
---|---|
Returns | Boolean |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L86 |
SetWinLimit
Sets the win limit value.
meta | description |
---|---|
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#92 |
Parameters
winLimit
Number
GetWinLimit
Gets the current win limit value.
meta | description |
---|---|
Returns | Number |
Defined in | p4f-slotty-core/src/model/auto-spin-model.js.js#L98 |