I am currently working on a monster database with a web front end... I have gotten to the point where I am mostly finished with my 1.0 design...
The final stage I am at is generating an estimated EL for an unlimited number of monsters.
I am currently thinking something along these lines. (no specific language in the example- using java though)
int elArray[];
int a;
int b;
while(combinedTwoCR's){
for(int i = 0; i < elArray.length; i++){
for(int j = 0; j < elArray.length; i++){
//pseudo code now
if a(+/- 1) = b (+/- 1)
delete a,
delete b,
add(new a+2(+/- 1))
start again... until no combined then take the highest value and call it the EL
}
}
Anyone already write a formula for this? the important part being that it will work with any number of monsters of any CR.
a preview of the program can be seen at:
www.valdier.com/backup/monsterFinder
feel free to email me if you have any suggestions. I am not an algorithm person
The final stage I am at is generating an estimated EL for an unlimited number of monsters.
I am currently thinking something along these lines. (no specific language in the example- using java though)
int elArray[];
int a;
int b;
while(combinedTwoCR's){
for(int i = 0; i < elArray.length; i++){
for(int j = 0; j < elArray.length; i++){
//pseudo code now
if a(+/- 1) = b (+/- 1)
delete a,
delete b,
add(new a+2(+/- 1))
start again... until no combined then take the highest value and call it the EL
}
}
Anyone already write a formula for this? the important part being that it will work with any number of monsters of any CR.
a preview of the program can be seen at:
www.valdier.com/backup/monsterFinder
feel free to email me if you have any suggestions. I am not an algorithm person
