IPB

Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> Generate a Page of Dice Results, For anyone interested...
deek
post Dec 5 2007, 03:38 PM
Post #1


Shooting Target
****

Group: Members
Posts: 1,706
Joined: 30-June 06
From: Fort Wayne, IN
Member No.: 8,814



I decided to make my GMing job a little easier and just print out a bunch of pages of random dice rolls. I know the players love rolling dice, but as a GM, it gets pretty monotonous for most rolls.

I did a search and found this site: http://www.costik.com/frpdice.html

It does a good job and the main thing, is that it will generate a page at a time. Our session on Monday only used about 6 lines, granted, we had no combat, just some summoning and hacking.

So, just in case anyone else would like to do the same!
Go to the top of the page
 
+Quote Post
DireRadiant
post Dec 5 2007, 04:50 PM
Post #2


The Dragon Never Sleeps
*********

Group: Admin
Posts: 6,924
Joined: 1-September 05
Member No.: 7,667



Dahifen's Online SR4 Dice Roller even has an EDGE option!
Go to the top of the page
 
+Quote Post
FlashbackJon
post Dec 5 2007, 05:15 PM
Post #3


Moving Target
**

Group: Members
Posts: 194
Joined: 30-October 07
From: Sadly, NE
Member No.: 13,962



And there's always Invisible Castle, which admittedly doesn't count hits/successes, to my knowledge. It does, however, retain rolls in the database.
Go to the top of the page
 
+Quote Post
deek
post Dec 5 2007, 06:18 PM
Post #4


Shooting Target
****

Group: Members
Posts: 1,706
Joined: 30-June 06
From: Fort Wayne, IN
Member No.: 8,814



Both are nice, but the one I posted formats all the rolls to a whole page, so I can hop on it, print out a couple pages of dice rolls and be good for the game without having to worry about taking my dice.

For me, it also helps to move the game along (on the GM end) and keep the story flowing. I can look at the results really quick, cross off the ones I used and move onto the story...

If there are other die rollers that will create full pages and format them into a printed page, I would be interested in seeing it.
Go to the top of the page
 
+Quote Post
Jaid
post Dec 5 2007, 06:22 PM
Post #5


Great Dragon
*********

Group: Members
Posts: 7,089
Joined: 4-October 05
Member No.: 7,813



QUOTE (FlashbackJon)
And there's always Invisible Castle, which admittedly doesn't count hits/successes, to my knowledge. It does, however, retain rolls in the database.

it can, however, sort stuff... for example, it can arrange your rolls in order from 1 to 6, which makes it really easy to spot glitches, crit glitches, how many hits you got, how many times you rolled 6, etc. there is also apparently a function to make 6 explode, if you so wish (for edge) ;)
Go to the top of the page
 
+Quote Post
Seven-7
post Dec 5 2007, 09:34 PM
Post #6


Moving Target
**

Group: Members
Posts: 246
Joined: 26-January 06
Member No.: 8,198



CODE
&DICE me=$+roll *-*:@emit [setq(1,[sub([ladd([edit(%0,+,%b)])],[ladd([edit(%1,-,%b)])])])] DICE: [name(%#)] rolled %q1 dice and got: [iter([sort([lrand(1,6,%q1)])],[switch(##,1,[ansi(hr,1)],5,[ansi(hg,5)],6,[ansi(hg,6)],##)])]
&DICE.EDGE me=$+roll/e *-*:@emit [setq(1,[sub([ladd([edit(%0,+,%b)])],[ladd([edit(%1,-,%b)])])])] DICE: [name(%#)] rolled %q1 dice and got: [iter([sort([edit([lrand(1,6,%q1)],6,6 [lrand(1,6,1)])])],[switch(##,1,[ansi(hr,1)],5,[ansi(hg,5)],6,[ansi(hg,6)],##)])]
&DICE.UNSORTED.EDGE me=$+roll/ue *-*:@emit [setq(1,[sub([ladd([edit(%0,+,%b)])],[ladd([edit(%1,-,%b)])])])] DICE: [name(%#)] rolled %q1 dice and got: [iter([edit([lrand(1,6,%q1)],6,6 [lrand(1,6,1)])],[switch(##,1,[ansi(hr,1)],5,[ansi(hg,5)],6,[ansi(hg,6)],##)])]
&DICE.UNSORTED me=$+roll/u *-*:@emit [setq(1,[sub([ladd([edit(%0,+,%b)])],[ladd([edit(%1,-,%b)])])])] DICE: [name(%#)] rolled %q1 dice and got: [iter([lrand(1,6,%q1)],[switch(##,1,[ansi(hr,1)],5,[ansi(hg,5)],6,[ansi(hg,6)],##)])]

TinyMUX, TinyMUSH, PennMUSH, Rhost, and TinyMUSE compatible.

Results:
+roll (Positive Dice: 4+4+4+4)-(Negative Dice:4-4-4-4) for sorted SR4 dice.
+roll/u for unsorted dice.
+roll/e for edge effect.
+roll/ue for unsorted edge effect.

Easily customizable. Automatically marks 1's as red and 5/6's as green.
Go to the top of the page
 
+Quote Post
FlashbackJon
post Dec 5 2007, 09:41 PM
Post #7


Moving Target
**

Group: Members
Posts: 194
Joined: 30-October 07
From: Sadly, NE
Member No.: 13,962



QUOTE (Jaid)
it can, however, sort stuff... for example, it can arrange your rolls in order from 1 to 6, which makes it really easy to spot glitches, crit glitches, how many hits you got, how many times you rolled 6, etc. there is also apparently a function to make 6 explode, if you so wish (for edge) ;)

How do you make it sort? That would be immensely useful for our forum-based game...
Go to the top of the page
 
+Quote Post
Jaid
post Dec 5 2007, 09:50 PM
Post #8


Great Dragon
*********

Group: Members
Posts: 7,089
Joined: 4-October 05
Member No.: 7,813



QUOTE (Tarantula)
Jaid, it can.  If you wanted for example 6 dice, you just do
6d6.vs(5)

This tells it to roll 6 d6 dice, .vs is a function call to track how many get the number 5 or higher.

Also, for edge tests used before to get exploding 6's you can do .extra(6).  So our example above with say 1 edge (so 7 dice with exploding 6's) would be 7d6.extra(6).vs(5)

Also, you can do either .ascending() or .descending() to have it sort them, so you can count your 1's for glitches easier.

So, last, our edged example sorted would roll like this:
7d6.ascending().extra(6).vs(5)

this is a quote of a post from frank's game in the welcome to the shadows section (second page of his thread, if you're wondering). if you want to know more about it, you should probably bug tarantula, not me ;)

[edit] also, apparently it *can* count up the hits for you also ;) [/edit]

This post has been edited by Jaid: Dec 5 2007, 09:51 PM
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

 



RSS Lo-Fi Version Time is now: 2nd July 2025 - 03:21 PM

Topps, Inc has sole ownership of the names, logo, artwork, marks, photographs, sounds, audio, video and/or any proprietary material used in connection with the game Shadowrun. Topps, Inc has granted permission to the Dumpshock Forums to use such names, logos, artwork, marks and/or any proprietary materials for promotional and informational purposes on its website but does not endorse, and is not affiliated with the Dumpshock Forums in any official capacity whatsoever.