Due to the fact that I (and a couple of other people) am using fractional and transcendental CRs, I have devised a formula and an algorithm on how to calculate XP based on such numbers. The system also lies in the Immortal's Handbook thread, but I guess all of you don
t read that thread, so here it is.
I recommend looking at Upper Krust's revised CR rules at Immortal's Handbook. I think the revised system is on page 14 or something. I use a very similar system, but not exactly that one.
Well...anyhow: Here's my algorithm and formulae:
I think the latter algorithm is better, but it comes not in one formula.
Base=300*l*(3/2)^(floor((cr+1)/2))*(4/3)^(floor(cr/2))
where floor is the floor function. ie. floor(4.9)=4, floor(34.1)=34
PCR=(1/12*cos(Pi*cr+Pi)+17/12)^(cr-floor(cr))
XP formula one:
XP=Base*PCR
XP algorithm two:
xp2:=proc(l,cr)
if (type(floor(cr),even)=true)
then Base*(cr/2-floor(cr)/2+1)
else Base*((cr)/3-floor(cr)/3+1)
end if
end proc;
This is a Maple procedure, so if you have that programme, just define Base and copy the algorithm. I never thought it was so easy... But that's what happens when one delves in some mysterious sequence formulae involoving infinite series (which actually did work, but provided me no easy formula).
t read that thread, so here it is.
I recommend looking at Upper Krust's revised CR rules at Immortal's Handbook. I think the revised system is on page 14 or something. I use a very similar system, but not exactly that one.
Well...anyhow: Here's my algorithm and formulae:
I think the latter algorithm is better, but it comes not in one formula.
Base=300*l*(3/2)^(floor((cr+1)/2))*(4/3)^(floor(cr/2))
where floor is the floor function. ie. floor(4.9)=4, floor(34.1)=34
PCR=(1/12*cos(Pi*cr+Pi)+17/12)^(cr-floor(cr))
XP formula one:
XP=Base*PCR
XP algorithm two:
xp2:=proc(l,cr)
if (type(floor(cr),even)=true)
then Base*(cr/2-floor(cr)/2+1)
else Base*((cr)/3-floor(cr)/3+1)
end if
end proc;
This is a Maple procedure, so if you have that programme, just define Base and copy the algorithm. I never thought it was so easy... But that's what happens when one delves in some mysterious sequence formulae involoving infinite series (which actually did work, but provided me no easy formula).