Follow TV Tropes

Following

Roll dice, get letters, type words, post results

Go To

Artemis92 Cogito Gratia Cogitan from contemplation Since: Dec, 2009
Cogito Gratia Cogitan
#1: May 24th 2013 at 5:32:52 PM

You will need: a d20; a d6; a d8.

  1. Roll 3d6 2d6. You can reroll ones, if you want. The resulting sum is how many words will be in the sentence.
  2. Roll Xd20, where X is the result of the 2d6. These rolls will tell you what the first letter of each word will be. 1-19 all give you the corresponding letters, but if you roll 20, then roll a d8. In this roll, 1 and 8 give you T, while 2, 3, 4, and so on will give you U, V, W, and ditto. If you get a repeat or a letter that you really don't want to look for a word for, you can reroll it.
  3. Type the sentence. It can make as much or as little sense as works for you. If you want, you can follow it with another with the same number of words, but starting with each letter in reverse.
  4. Post results.

A B C D E F G H I J

K L M N O P Q R S T

T U V W X Y Z

Example:

  • 3d6: 2 + 3 + 4 = 9.
  • 9d20: 14, 7, 18, 18, 8, 9, 2, 11, 4 -> N, G, R, R, H, I, B, K, D.
  • No grumpy rooster reveals his inward beliefs killed dogs. Damn kids burned its house, rather regretfully given news.

edited 10th Jun '13 6:26:39 PM by Artemis92

Ponders too much; thinks too little. Currently goes by Knowlessman.
NESgamer190 Hello! from a NES cartridge Since: Sep, 2012
Hello!
#2: May 24th 2013 at 6:27:37 PM

3d6 result: 12

12d20 results: 12, 5, 15, 13, 2, 3, 14, 1, 9, 13, 8, 4

Loathingly, Everyone On My Battleship Can Not Aim Incendiary Munitions Heroically, Dude!

edited 24th May '13 6:28:11 PM by NESgamer190

"If you have any beefs with Santa, do remember to SETTLE IT IN SMASH!" Quote by Edveed
Fulcanelli Little Laguz Since: Nov, 2010 Relationship Status: Less than three
Little Laguz
#3: May 24th 2013 at 6:55:09 PM

3d6: 6 + 3 + 6 = 15

15d20: 6, 8, 14, 9, 10, 15, 17, 9, 12, 6, 9, 16, 15, 18, 1 -> F, H, N, I, J, O, Q, I, L, F, I, P, O, R, A

Finally, heavy Norwegians introduced Jenny’s omnipresent quagmires into light fortune; I persuaded omnipotent raptors afterwards.

[down]Woops, sorry about that.

edited 24th May '13 7:30:36 PM by Fulcanelli

The only reason why I like waking up is because I like falling asleep.
Artemis92 Cogito Gratia Cogitan from contemplation Since: Dec, 2009
Cogito Gratia Cogitan
#4: May 24th 2013 at 7:04:27 PM

  • 3d6: 4 + 4 + 6 = 14.
  • 14d20: 16, 5, 4, 9, 7, 12, 8, 11, 17, 14, 15, 14, 9, 8. P, E, D, I, G, L, H, K, Q, N, O, N, I, H.
  • Peculiar enemies divulge ideas given leave, holding keys quietly, never once needing ink's help.

...Maybe 2d6 would've been a better idea. :/

EDIT: [up] Uh, actually all fifteen words should be in the same sentence. I'm thinking maybe 3d6 is too much; it gets awkward.

EDIT 2: You can cheat and use a semicolon if you want.

edited 24th May '13 7:09:39 PM by Artemis92

Ponders too much; thinks too little. Currently goes by Knowlessman.
Artemis92 Cogito Gratia Cogitan from contemplation Since: Dec, 2009
Cogito Gratia Cogitan
#5: May 25th 2013 at 11:11:03 AM

  • 2d6 this time: 3 + 5 = 8
  • 8d20: 6, 14, 19, 10, 1, 15, 6, 16. F, N, S, J, A, O, F, P.
  • Flighty ne'er-do-wells sell Jamaican anchovies on failing premises. Police find out a jumpy sailor needs facilities.

Still haven't gotten a twenty. :/

edited 10th Jun '13 6:20:35 PM by Artemis92

Ponders too much; thinks too little. Currently goes by Knowlessman.
Artemis92 Cogito Gratia Cogitan from contemplation Since: Dec, 2009
Cogito Gratia Cogitan
#6: Jun 10th 2013 at 6:23:45 PM

A B C D E F G H I J 
K L M N O P Q R S T 
T U V W X Y Z

  • 2d6: 5 + 3 = 8
  • 8d20: C R E G G K N M
  • Creative rebels evict gregarious gremlins, knowing more.

Also, bump.

Ponders too much; thinks too little. Currently goes by Knowlessman.
Fulcanelli Little Laguz Since: Nov, 2010 Relationship Status: Less than three
Little Laguz
#7: Jun 10th 2013 at 7:29:11 PM

  • 2d6: 5 + 5 = 10
  • 10d20: Q H U A P P M O P B
  • Quietly, hungry unclear aardvarks progressed plans making over pretentious beavers.

The only reason why I like waking up is because I like falling asleep.
Meklar from Milky Way Since: Dec, 2012 Relationship Status: RelationshipOutOfBoundsException: 1
#8: Jun 11th 2013 at 2:13:42 AM

R I G O N C F N

gives me

'Regular industrial garbage operations need ceiling fans now.'

For people who are lazy, this bookmarklet code should speed up the game a little:

javascript: var alpha1="ABCDEFGHIJKLMNOPQRS"; var alpha2="TUVWXYZT"; function roll(count,faces) {var result=0; while(count>0) {result+=Math.floor(Math.random()*faces)+1; count--;} return result;} function getletter() {var r=roll(1,20); switch(r) {case 20: return alpha2[roll(1,8)-1]; default: return alpha1[r-1];}} function go() {var r1=roll(2,6); var t=""; while(r1>0) {t=t+(getletter()+(r1>1?" ":"")); r1--;} document.write(t);} go();

Tested and works in Firefox. Feel free to edit a copy into the OP. :)

EDIT: Tested and works in Firefox only before getting screwed up by the parser. Should be fixed now. Sorry.

edited 11th Jun '13 1:43:08 PM by Meklar

Join my forum game!
Artemis92 Cogito Gratia Cogitan from contemplation Since: Dec, 2009
Cogito Gratia Cogitan
#9: Jun 11th 2013 at 4:23:06 AM

o_0 You underestimate my laziness. I have absolutely no idea what that is or how to use it. Actual dice are good enough for me, and I should think one could find a decent free dice roller via Google or similar if one didn't have 'em.

Ponders too much; thinks too little. Currently goes by Knowlessman.
Knowlessman hey i dunno, why don't you tell me from Stupidtown, USA (FL) Since: Jun, 2013 Relationship Status: Holding out for a hero
hey i dunno, why don't you tell me
#10: Dec 7th 2013 at 6:31:10 AM

The Hypertext has a decent one.

  • 2d6: 6 + 2 = 8
  • 8d20: 16, 19, 11, 15, 4, 19, 1, 14. P, S, K, O, D, S, A, N.
  • Past scars kindle old deals, sacrificing ancient natures. Nascent animosity starts deadly overtures, killing scared psychopaths.

i care but i'm restless, i'm here but i'm really gone, i'm wrong and i'm sorry, baby
TAPETRVE from The city of Vlurxtrznbnaxl Since: Jun, 2011 Relationship Status: She's holding a very large knife
#11: Dec 7th 2013 at 6:50:31 AM

  • 2d6: 3+5=8
  • 8d29: 1,18,1,7,18,15,15,19 -> A R A G R O O S.

Angry rats ate Grandma Rosa's outstandingly old sauerkraut.

edited 7th Dec '13 6:51:17 AM by TAPETRVE

Fear the cinnamon sugar swirl. By the Gods, fear it, Laurence.
Meklar from Milky Way Since: Dec, 2012 Relationship Status: RelationshipOutOfBoundsException: 1
#12: Dec 8th 2013 at 1:06:09 PM

B C E A P E L P A A D G

gives me

'Bring cherries, edible asian pears, exquisitely laid pineapples, and another damn grapefruit!'

Join my forum game!
RatherRandomRachel "Just as planned." from Somewhere underground. Since: Sep, 2013
"Just as planned."
#13: Dec 8th 2013 at 1:20:53 PM

Roll(2d6)+0: 4,5,+0 Total:9

So, 9D20...

Roll(9d20)+0: 7,11,14,4,6,3,16,18,16,+0

Great kangaroos never deserve fake cuddles making ordinary meals.

"Did you expect somebody else?"
Knowlessman hey i dunno, why don't you tell me from Stupidtown, USA (FL) Since: Jun, 2013 Relationship Status: Holding out for a hero
hey i dunno, why don't you tell me
#14: Apr 24th 2015 at 9:05:48 PM

Necro'ing because why not.

9: G F C G S J J T N
Good friends can't grow solely jesting, just to nag. Never to jerky jockeys say grieving can forget grievances.

...I wrote this, and I don't even.

i care but i'm restless, i'm here but i'm really gone, i'm wrong and i'm sorry, baby
BioSafety Since: Jan, 2011
#15: Apr 24th 2015 at 10:53:48 PM

2d6 result: 9.

9d20 results: 12, 18, 1, 9, 12, 2, 5, 8, 12

Lateral roosters and infinite lions believe every halfling litterbug.

TroperNo9001 Space Molly Weasley from the Living Quarters Since: Oct, 2014 Relationship Status: Armed with the Power of Love
#16: Apr 26th 2015 at 12:53:08 AM

2d6: 1 + 6 = 7

7d20: L L H D B M D

Lovely llamas have diabetes but mongooses don't.

"Anemone dear, I know you want to be more independent from me, but... please take care, okay?"
GhostElm Since: Apr, 2015 Relationship Status: Faithful to 2D
#17: Apr 27th 2015 at 1:42:38 PM

2D6=3+4

7D20=20(+1D8=8=28)-1-19-9-19-15-4: T, A, S, I, S, O, D

"Take another shot," I said, "or die..."

edited 27th Apr '15 1:42:52 PM by GhostElm

"I'm as free as the dust in the solar wind."
Add Post

Total posts: 17
Top