Post by Xyex on Jun 9, 2004 21:02:43 GMT -5
Yeah, I've been looking at my RPG.... (Ugh! I now know why you canned MULTIPLE RACES! Ugh!) and, well, my stats, exp, and battle systems/mechanics... for lack of a better word, suck. I've a few new ideas I'm going to mess around with but having those working incase my ideas flop would be quite nice.
So, I was wondering if you could give me all the rules/details of how your systems work? That way I'll have something workable (with a few tweaks) at the least...
I may end up ditching the current Valgoth for one of my other ideas in the end, but I want to try this one first....
EDIT: I'd like to add that I found this:
while surfing the net. ;D It's a java script for a dice roller that can be put into an MB's headers or footers there-by appearing on the board ;D (just paste the whole thing in the one box, ignore the directions in the code). However, it dosen't allow for additives/subtractives as written. I may be able to change that (though it'll take a while), nor does it allow for e-mailing. But that shouldn't be a problem anyway, we could just let the GM make the roll themself.
Oh, and I'm going to make a post on your board in a moment about something I realized recently, if I was right, if not, then I wont make it.
So, I was wondering if you could give me all the rules/details of how your systems work? That way I'll have something workable (with a few tweaks) at the least...
I may end up ditching the current Valgoth for one of my other ideas in the end, but I want to try this one first....
EDIT: I'd like to add that I found this:
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Michael Hensley (yelsneh@geocities.com) -->
<!-- Web Site: http://geocities.com/TimesSquare/Castle/6274 -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
var die = 6;
var dice = 3;
function dice_roll(die, dice) {
var roll = 0;
for (loop=0; loop < dice; loop++) {
// random number fix by George Johnston (cali_scripter@yahoo.com)
roll = roll + Math.round(Math.random() * die) % die + 1;
}
document.form.text.value = roll;
}
// End -->
</script>
<!-- STEP TWO: Add the last coding into the BODY of your HTML document -->
<BODY>
<center>
<form name=form>
<table border=2 cellpadding=5>
<tr>
<td colspan=2 align=middle>What dice type?</td>
<td colspan=2 align=middle>How many dice to roll?</td>
</tr>
<tr>
<td valign=top align=middle>
<p><input type=radio name=sides onclick="die = 3">3 Sided
<p><input type=radio name=sides onclick="die = 4">4 Sided
<p><input type=radio name=sides onclick="die = 5">5 Sided
<p><input type=radio checked name=sides onclick="die = 6">6 Sided
<p><input type=radio name=sides onclick="die = 8">8 Sided
</td>
<td valign=top align=middle>
<p><input type=radio name=sides onclick="die = 10">10 Sided
<p><input type=radio name=sides onclick="die = 12">12 Sided
<p><input type=radio name=sides onclick="die = 20">20 Sided
<p><input type=radio name=sides onclick="die = 30">30 Sided
<p><input type=radio name=sides onclick="die = 100">100 Sided
</td>
<td valign=top align=middle>
<p><input type=radio name=number onclick="dice = 1">1
<p><input type=radio name=number onclick="dice = 2">2
<p><input type=radio checked name=number onclick="dice = 3">3
<p><input type=radio name=number onclick="dice = 4">4
<p><input type=radio name=number onclick="dice = 5">5
</td>
<td valign=top align=middle>
<p><input type=radio name=number onclick="dice = 6">6
<p><input type=radio name=number onclick="dice = 7">7
<p><input type=radio name=number onclick="dice = 8">8
<p><input type=radio name=number onclick="dice = 9">9
<p><input type=radio name=number onclick="dice = 10">10
</td>
</tr>
<tr>
<td align=middle colspan=4>
<input type=button value="Roll Dice" name=button onclick="dice_roll(die, dice)">
<input type=text size=10 name=text>
</td>
</tr>
</table>
</form>
</center>
<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>
while surfing the net. ;D It's a java script for a dice roller that can be put into an MB's headers or footers there-by appearing on the board ;D (just paste the whole thing in the one box, ignore the directions in the code). However, it dosen't allow for additives/subtractives as written. I may be able to change that (though it'll take a while), nor does it allow for e-mailing. But that shouldn't be a problem anyway, we could just let the GM make the roll themself.
Oh, and I'm going to make a post on your board in a moment about something I realized recently, if I was right, if not, then I wont make it.