Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Savage worlds #100

Open
zoboso opened this issue Jan 29, 2018 · 4 comments
Open

Savage worlds #100

zoboso opened this issue Jan 29, 2018 · 4 comments

Comments

@zoboso
Copy link

zoboso commented Jan 29, 2018

in savage worlds you roll two dice a trait die and a wild die that both explode, and choose the highest to compare to a fixed number. while the wild die is always a d6 the trait die could be a d4, d6, d8, d10, or d12, this prevents me from using the a syntax like ((d10),(d6)k1>=4 and getting an output. currently we're going to roll them separately as a workaround.

@richardrhyan
Copy link

I second this addition.
I think it basically just needs the ability to roll 2 separate dice (without adding) and either show both results or the highest result.

@shadowkras
Copy link

Without using static bonuses (+1, +2, etc), you can do this by using:
/r (max(1d10!, 1d6!))/4

If you save the parts of that roll individually, you can use the memorization function to simply that such as:

/r $d6

@richardrhyan
Copy link

Thank you shadowkras!!
I wish the max function was in the readme file. Or, if it is, that I wasn't so blind.

@shadowkras
Copy link

Here is how I did it:

/r $D4 = max(1d4!, 1d6!)

/r $D6 = max(1d6!, 1d6!)

/r $D8 = max(1d8!, 1d6!)

/r $D10 = max(1d10!, 1d6!)

/r $D12 = max(1d12!, 1d6!)

/r $D20 = max(1d20!, 1d6!)

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants