tweak/more_dice_support

Mar 6, 2022 8:22 pm
Suggested format.


[table="rolls fate"]
Skill | Roll
Foo | 3df+4
Bar | 2df-1
[/table]
Quote
Mar 6, 2022 8:32 pm
Looks good to me. Except I think you basically always roll 4 dice. Not that it matters for the code, just for the examples
Quote
Mar 6, 2022 8:34 pm
bowlofspinach says:
Looks good to me. Except I think you basically always roll 4 dice. Not that it matters for the code, just for the examples
Thanks!
Quote
Mar 7, 2022 5:57 pm

Have you looked at this on staging? Public

No
Yes - I'm happy with it
Briefly - I'm happy with it
Yes - I'm NOT happy with it
Quote
Mar 8, 2022 6:16 am
Modifiers don't work quite right.

1) Code:

[_mod=+4] | 4df[_$=mod]
[_mod=-1] | 4df[_$=mod]


Renders:
4df4 (This modifier is not recognized by the parser and only 4df+0 is added to the roller)
4df-1


2) Code:

[_mod=+4] | 4df+[_$=mod]
[_mod=-1] | 4df+[_$=mod]


Renders:
4df+4
4df+-1 (This modifier is not recognized by the parser and only 4df+0 is added to the roller)


3) Code:

[_mod=+4] | 4df+([_$=mod])
[_mod=-1] | 4df+([_$=mod])


Renders:
4df+(4)
4df+(-1)

This is how I've been coding my other non-fate, basic dice sheets, but in this case neither modifier are parsed and only 4df+0 is added to the roller.
Quote
Mar 8, 2022 6:26 am
What? You haven't memorised the guide?
Quote:
Prefixing a calculation with + forces it to use the sign (so 5 renders as +5).
Change your formula to:
4df[_$=+mod]
Quote
Mar 8, 2022 6:32 am
Ah, my bad, RTFM 😆

Works perfectly now!

Also, now I don't need to do the whole brackety thing on my other sheets!

You do not have permission to post in this thread.