As if there weren't enough dierollers out there I coded one for my specific needs a year ago or so. I found it lying around here so I thought I might post it for you guys too. It's located over here:
http://users.tkk.fi/~scederqv/Dice/
It's frustrationware, which means use at your own peril! Any discomfort it may cause you is due to no intended actions of mine regardless of how much it would please me!
What's the use you ask?
Well, I got frustrated when we got to higher levels in out previous campaign. A round could take hours when the monk was hitting half a hundred blows per second, with separate dice for fire damage and whatnot.
What no other rollers do, is separate damage from each source into a readable format, and takes several formulas at once and rolls them all at the same time.
Let me show you with an example. Suppose moniseur monk has a primary attack that deals 5d6+15 damage with an extra 1d6 fire damage, twice per round and a secondary attack for 2d6+15.
So you type:
Press roll, and presto!
As you can see the parenthesis collect the different dice into separate groups in the next-to-last column, so for example
And then you can just add your to-hit rolls there, every other line and voila, you've got all those pesky dice at one click of the mouse, every time it's your turn.
I know it's ugly, but it does the job very nicely.
If you need to compile it or are technically challenged, see this step-by-step tutorial for directions: http://java.sun.com/docs/books/tutorial/getStarted/cupojava/win32.html
My contact info, license and some other useless rantings can be found inside the .java file.
EDIT: Yes, yes I know it's blasphemy. Nothing is as thrilling as a new set of dice. But if you have eight attacks per round and actually want to do some roleplaying instead of rollplaying this is handy indeed.
http://users.tkk.fi/~scederqv/Dice/
It's frustrationware, which means use at your own peril! Any discomfort it may cause you is due to no intended actions of mine regardless of how much it would please me!
What's the use you ask?
Well, I got frustrated when we got to higher levels in out previous campaign. A round could take hours when the monk was hitting half a hundred blows per second, with separate dice for fire damage and whatnot.
What no other rollers do, is separate damage from each source into a readable format, and takes several formulas at once and rolls them all at the same time.
Let me show you with an example. Suppose moniseur monk has a primary attack that deals 5d6+15 damage with an extra 1d6 fire damage, twice per round and a secondary attack for 2d6+15.
So you type:
Code:
(5d6+15)+1d6
(5d6+15)+1d6
2d6+15
Code:
(5d6+15)+1d6 = 4+1+2+3+4+15+2 = 29+2 = 31
(5d6+15)+1d6 = 4+2+4+2+1+15+1 = 28+1 = 29
2d6+15 = 2+5+15 = 7+15 = 22
Code:
(1+2+3)+4 = 1+2+3+4 = 6+4 = 10
And then you can just add your to-hit rolls there, every other line and voila, you've got all those pesky dice at one click of the mouse, every time it's your turn.
I know it's ugly, but it does the job very nicely.
If you need to compile it or are technically challenged, see this step-by-step tutorial for directions: http://java.sun.com/docs/books/tutorial/getStarted/cupojava/win32.html
My contact info, license and some other useless rantings can be found inside the .java file.
EDIT: Yes, yes I know it's blasphemy. Nothing is as thrilling as a new set of dice. But if you have eight attacks per round and actually want to do some roleplaying instead of rollplaying this is handy indeed.
Last edited: