[ roll ]4d6dl1[ /roll ], [ roll ]4d6dl1[ /roll ], [ roll ]4d6dl1[ /roll ], [ roll ]4d6dl1[ /roll ], [ roll ]4d6dl1[ /roll ], [ roll ]4d6dl1[ /roll ], [ roll ]4d6dl1[ /roll ]
:-(
3- Times the Charm????- Best search for enlightenment, reread the top post and try a simple roll 3d6
This post has potentially manipulated dice roll results.
I mentioned this before, but do not copy/paste my examples -- they won't work. You can type what you see and that will work. I added invisible characters into the examples so that they would not be processed as rolls. This means if you copy/paste them, they similarly will not be processed as rolls. :)
If you use the shorthand "kh" or "ad", it must be all-lowercase. If you do uppercase, it looks like it is ignored at the moment. I'll be looking to fix this soon (the uppercase should have marked it as an invalid dice roll, rather than ignoring it).
(testing some things below, nothing important in the spoiler)
I've noticed that you can delete posts to reroll a die without it appearing to be tampered. Does the creator of the thread see whose post has been deleted at that particular time or is it an unknown deleted post?
Everything goes between roll and /roll, as described in my examples on the initial post. I didn't have any specific examples for keepHighest/dropLowest, but you can see from other examples that everything goes between. [ roll ] 4d6kh3 [ /roll ] or [ roll ] 4d6.dropLowest(1) [ /roll ] (remove the spaces)
For all of the extra features, they appear immediately after the dice roll in question "1d20ad + 3" is good, as is "1d20.advantage() + 3". The ad / .advantage() goes immediately after the dice roll (1d20), not at the end. This is because you can roll multiple sets of dice, such as "4d6dl1 + 1d20ad + 3", and putting it at the end makes no sense in such situations. I've edited the OP to make this more clear, sorry if it was confusing.
Advanced note: For a roll, stick to either using the shorthand versions (kh, ad, etc.) or the longhand versions (.keepHighest(), .advantage(), etc.). You can mix them, but mixing them requires that all shorthand ones go before any longhand ones ("4d6rr1dl1" is ok, "4d6.reroll(=1).dropLowest(1)" is also ok, as is "4d6rr1.dropLowest(1)". However, "4d6.reroll(=1)dl1" is not ok and will tell you that it could not process the dice expression). Note that the shorthand versions must be all-lowercase. "ad" is valid, "AD" is not.
This post has potentially manipulated dice roll results.
18
Just a tad longer winded than the discord dice bots, but coding the same other than how to say it is a roll ;) Whatever you want rolled does have to go between the roll tags that are written out just like the spell, monster, etc tags they added. And all lowercase for sure. No KH1 but can do kh1 to keep the highest one after the dice designation - ie 2d20kh1 between the tags will keep the highest of the two rolls. That is how I did the roll you see at the top
For anyone who's struggling making it work and missed the post above, don't copy and paste. Type the commands in fresh. I was struggling to make it work until I realized that.
Rollback Post to RevisionRollBack
PBP "Beregost Blues" - Dungeon Master of Gnome Slaying +5
For anyone who's struggling making it work and missed the post above, don't copy and paste. Type the commands in fresh. I was struggling to make it work until I realized that.
Ohhh...lol thanks, homie!
Rollback Post to RevisionRollBack
"...Debts must always be paid, sometimes in more than blood and gold. But this is Ordo Ursa," Ren places his hand on Erakas's chest, right where the Dragonborn's heart is. "Right here. And it always has been and always will be. Don't ever forget that. Because I won't."
Serandis Mendaen (Aereni Elven Rogue/maybe one day Wizard)- Project Point Playtest
I'll edit the OP in a couple of days to make it more obvious (replace the invisible characters with spaces). The code block feature would allow copy/paste, but then I can't style the text (aka no bold red for placeholders).
Thanks to community member Hardcopy, he scripted up a plugin for us to add a toolbar button for handling the more common die rolls! We've added this in and deployed it out now for all to use. Have fun storming the castle kids!
Testing
10
Persuasion 21 ( [ roll ] (without spaces) 1d20+10 ( /roll ] ) (without spaces)
Advantage
It works without the spaces. for advantage simply write ad after the d20
I mentioned this before, but do not copy/paste my examples -- they won't work. You can type what you see and that will work. I added invisible characters into the examples so that they would not be processed as rolls. This means if you copy/paste them, they similarly will not be processed as rolls. :)
If you use the shorthand "kh" or "ad", it must be all-lowercase. If you do uppercase, it looks like it is ignored at the moment. I'll be looking to fix this soon (the uppercase should have marked it as an invalid dice roll, rather than ignoring it).
(testing some things below, nothing important in the spoiler)
14 Unable to parse dice roll.
3
I've noticed that you can delete posts to reroll a die without it appearing to be tampered. Does the creator of the thread see whose post has been deleted at that particular time or is it an unknown deleted post?
Alright, lets try this. I'm a little confused on how to format khN. Where do I put it in the roll? After /roll? Time to test
13h3
Yea, that didn't work. Try 2:
16 .keepHighest(3)
Another fail. Try 3:
.keepHighest(3) 14
Ugh. Try 4:
12.keepHighest(3)
Come on. Try 5:
11.keepHighest3
Try 6:
16.dl1
Try 7:
12.dropLowest1
I give up. I'll just roll 4d6 and edit my post to say what the final version is.
Everything goes between roll and /roll, as described in my examples on the initial post. I didn't have any specific examples for keepHighest/dropLowest, but you can see from other examples that everything goes between. [ roll ] 4d6kh3 [ /roll ] or [ roll ] 4d6.dropLowest(1) [ /roll ] (remove the spaces)
For all of the extra features, they appear immediately after the dice roll in question "1d20ad + 3" is good, as is "1d20.advantage() + 3". The ad / .advantage() goes immediately after the dice roll (1d20), not at the end. This is because you can roll multiple sets of dice, such as "4d6dl1 + 1d20ad + 3", and putting it at the end makes no sense in such situations. I've edited the OP to make this more clear, sorry if it was confusing.
Advanced note: For a roll, stick to either using the shorthand versions (kh, ad, etc.) or the longhand versions (.keepHighest(), .advantage(), etc.). You can mix them, but mixing them requires that all shorthand ones go before any longhand ones ("4d6rr1dl1" is ok, "4d6.reroll(=1).dropLowest(1)" is also ok, as is "4d6rr1.dropLowest(1)". However, "4d6.reroll(=1)dl1" is not ok and will tell you that it could not process the dice expression). Note that the shorthand versions must be all-lowercase. "ad" is valid, "AD" is not.
Oh, you include the k. Sorry, I misread that.
10
Thanks!
5
18
Just a tad longer winded than the discord dice bots, but coding the same other than how to say it is a roll ;) Whatever you want rolled does have to go between the roll tags that are written out just like the spell, monster, etc tags they added. And all lowercase for sure. No KH1 but can do kh1 to keep the highest one after the dice designation - ie 2d20kh1 between the tags will keep the highest of the two rolls. That is how I did the roll you see at the top
PbP - Beregost Blues - Portia Starflower, Half Elf, Cleric, Life Domain
PbP - Tome of Annhilation - Vistani Mocanu, Human, Bard
For anyone who's struggling making it work and missed the post above, don't copy and paste. Type the commands in fresh. I was struggling to make it work until I realized that.
Initiave 4
Long days and pleasant rolls to everyone.
test...
[Initiative:22]
[Attack 1: 14 Damage: 5]
[Attack 2: 13 Damage: 15]
Awesome it worked!
Attack with advantage (targets haven't acted)
[Attack 1: 22 Damage: 4]
[Attack 2: 10 Damage: 8]
[Short Bow: 19 Damage: 6]
Skameros - Bugbear Barbarian - Out of the Abyss - By Kerrec
Follow your Arrow where it Points - Tabaxi Monk - Baldur's Gate: Descent Into Avernus (by Pokepaladdy)
Citron Pumpkinfoam - Fairy Monk - Project Point: Team Longsword
"...Debts must always be paid, sometimes in more than blood and gold. But this is Ordo Ursa," Ren places his hand on Erakas's chest, right where the Dragonborn's heart is. "Right here. And it always has been and always will be. Don't ever forget that. Because I won't."
Serandis Mendaen (Aereni Elven Rogue/maybe one day Wizard)- Project Point Playtest
I'll edit the OP in a couple of days to make it more obvious (replace the invisible characters with spaces). The code block feature would allow copy/paste, but then I can't style the text (aka no bold red for placeholders).
14.
13
Initiative: 12
Attack 1: 24
Damage: 11
Attack 2: 24
Damage: 14
"Any society that would give up a little liberty to gain a little security will deserve neither and lose both" -- allegedly Benjamin Franklin
Tooltips (Help/aid)
test
1d20
20
1d10+4
6
1d20 +3 with advantage -> 1d20ad+3
12
14
Thanks to community member Hardcopy, he scripted up a plugin for us to add a toolbar button for handling the more common die rolls! We've added this in and deployed it out now for all to use. Have fun storming the castle kids!
I am the Inquisitor Imperitus. I am judge, jury, and executioner. Draw your last breath now, as I send you to the Nine Hells.
Unable to parse dice roll.
Unable to parse dice roll.
2
8
Unable to parse dice roll.
Unable to parse dice roll.
Site Rules & Guidelines --- Focused Feedback Mega Threads --- Staff Quotes --- Homebrew Tutorial --- Pricing FAQ
Please feel free to message either Sorce or another moderator if you have any concerns.