I have figured out how to implement the Vitality and Wound Points system from Unearthed Arcana as a House Rule. It will be a set of radio buttons the user can...
Now that the ability to generate random stats has been added to the code base shall we go ahead and enable these commonly used methods in the release? # # Dice...
I noticed that this Freq is a priority 5 with no assigned monkey... I was wondering if any progress has been made on it, as I have an intrest in compressing...
I use a varient of the first method: 4d6, reroll ones, then drop lowest. how would you code that? ROLLMETHOD:4d6, reroll ones, then drop lowest [tab] METHOD:...
... That would be 4 (d5+1) and keep the three highest. I don't know how to put the +1 in the but for the d5, you just have to replace the 6 with a 5. ... Éric...
... That is not identical from a statistical point of view. 4d6 and re-roll ones has 2 at 33% probability and 3-6 at 16% each; your method has all numbers 2-5...
... Not sure how much of an advantage this would be. Yes it would reduce the amount of disk space used up, but would drastically slow down things like loading...
Kevin Brown
kevin_brown@...
Oct 1, 2005 5:40 pm
87872
... Rerolling ones doesn't cause 2 to have a higher probability than any of the other numbers. Each has a 1/6 chance of showing up, reroll a one, all still...
Kevin Brown
kevin_brown@...
Oct 1, 2005 5:43 pm
87873
... Right, of course. Somehow I was thinking of counting ones as twos. Don't know why. :-) Stefan....
... Well, if you re-roll the ones until you can something that is not a one, you have a 20% probability for each 2, 3, 4, 5 and 6 result. That's what I assume...
... 11/30 is not accurate (I need coffee). It should be 7/36. So if you drop the 1, you roll a d35 and divide the result by 7 and this is the same as rolling a...
... I really need that cooffee, I forgot to account the 1/36 to get the one and nothing pop up right. I'll try again later after my coffee. ... Éric Beaudoin...
... Ha coffee, let's do this again. We want a formula that has the same probabilistic result as the event rolling a d6 and re-rolling the d6 once if the result...
... If you keep dropping the 1 and reroll until it's not a 1 then that statistically amounts to 1d5+1 right? If you keep a 1 on the reroll then the odds get...
Using 5.9.3 on Mac OSX. Created a level 9 wizard and applied the Lich template. The DCs for the Fear Aura, Paralyzing Touch, and Negative Energy Touch Attack...
... Depends on what the text says it should be based on. HD returns Monster class levels (or HD in default monster mode). TL returns total levels (including...
... METHOD appears to accept djep expressions. For example, the 3d6 is written simply 3d6. Is there anywhere we can find the full doc for djep or even just for...
... it was contributed by one of our coders I think it was Ross Lodge. If it's useing djep, you can do all sorts of crazy stuff, even (1d2)d6 or 3d(1d4)+5 ...
... I've look into the doc and I saw some of the coolness you describe but I can't find any reference to the roll() function. Any clue on this? Also, if it was...
... The RSRD says the save DC is 10 + ˝ lich’s HD + lich’s Cha modifier. Since the Lich template doesn't add any HD then they must mean the HD of the base...
... I asked Greg Bingleman about this recently, he was able to pass me a couple ... This was for the KIT FUNDS tag which can do random starting gold, its about...
... Happy to ear that. If you point me to the code where the roll function is define, I'm willing to try to see what it does. I don't write Java but I can read...
According to the 3.5 SRD, the Litch template should add the following modifiers to skills: Skills: Liches have a +8 racial bonus on Hide, Listen, Move...
... Ask Greg, I can't even read it. ... Me too, me know what you learn and I'll include it in the doc entry. -- ~ Eddy Anthony (MoSaT) ~ PCGen Content...
... Let's pretend for a second that the only thing I know about the .jar file generation is that I have to type "ant clean build test" when I want to build the...
Welcome! What is PCGen? PCGen is a character generator and maintenance program aimed at supporting any RPG material we can get our hands on. Currently our...
pcgen@yahoogroups.com
Oct 1, 2005 10:58 pm
87894
The file you want is src/java/pcgen/util/PJEP.java Do a search for: 10+d10 That'll get you to the definition of the function, but won't be entirely helpful....