Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Calculate-Functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,18 @@ context.cardarea, context.full_hand, context.scoring_hand, context.scoring_name,
context.edition -- boolean value to flag this context, always TRUE
context.post_joker -- boolean value to flag this context, always TRUE
```
---
#### context.main_scoring
This context is used for the effects from Blinds, Decks, Challenges, Stakes and Mod objects (or any other 'individual' objects) when the score.

```lua
if context.main_scoring then
```

```lua
context.cardarea, context.full_hand, context.scoring_hand, context.scoring_name, context.poker_hands
context.main_scoring -- boolean value to flag this context, always TRUE
```

---
#### context.final_scoring_step
Expand Down