Okay,
This is the biggest question that I will ask, and it will also be the hardest as I have no script I am able to show you.
I am creating a stat rolling program for a game, you may have seen my previous post, and I am going to have some I think it's 8 or so different classes ranging from 5 or 6 different races. Not a lick of that is important though.
Anyway, I am going to be creating this solely for myself and associates to use, It doesn't have to be completely user friendly or anything, but I am going to have all of these selections of classes and such set up in a table with radio buttons that are holding my functions data and all that good stuff.
I have already figured all that out, but my first question relates to how to get that data that I selected to another frame set up on my page, using a submit button it just reloads upon the same page like it's supposed to.
And my second question is after I have completed all this and gotten the data over to the other frame, so I can see that I am using to correct class/race, how can I change the preset data that is set up with that particular race to change the variables that are in place by default.
Here:
There are some attributes that I will have, some races/classes will get bonuses. By default the total points are multiplied by one, what I want is to be able to say do this.
var Total= 30;
var Cats= 8;
var Multi= Total/Cats;
var Acc= Math.floor((Math.round() * Multi) + 1);
var AccMul= 1 (By Default);
var Accuracy= Acc + ( AccMul * Acc);
What I want to do, is change the AccMul, to it's corrosponding value. Ugh, this is turning out really ugly and it's confusing to me, so I know it's confusing to you. Well, I can't really explain it better than that, so it's not really important, but if you can help, thanks.
This is the biggest question that I will ask, and it will also be the hardest as I have no script I am able to show you.
I am creating a stat rolling program for a game, you may have seen my previous post, and I am going to have some I think it's 8 or so different classes ranging from 5 or 6 different races. Not a lick of that is important though.
Anyway, I am going to be creating this solely for myself and associates to use, It doesn't have to be completely user friendly or anything, but I am going to have all of these selections of classes and such set up in a table with radio buttons that are holding my functions data and all that good stuff.
I have already figured all that out, but my first question relates to how to get that data that I selected to another frame set up on my page, using a submit button it just reloads upon the same page like it's supposed to.
And my second question is after I have completed all this and gotten the data over to the other frame, so I can see that I am using to correct class/race, how can I change the preset data that is set up with that particular race to change the variables that are in place by default.
Here:
There are some attributes that I will have, some races/classes will get bonuses. By default the total points are multiplied by one, what I want is to be able to say do this.
var Total= 30;
var Cats= 8;
var Multi= Total/Cats;
var Acc= Math.floor((Math.round() * Multi) + 1);
var AccMul= 1 (By Default);
var Accuracy= Acc + ( AccMul * Acc);
What I want to do, is change the AccMul, to it's corrosponding value. Ugh, this is turning out really ugly and it's confusing to me, so I know it's confusing to you. Well, I can't really explain it better than that, so it's not really important, but if you can help, thanks.