Log in

View Full Version : Looking for a table of sorts.



Ryan Seacrest
10-02-2008, 01:58 AM
Alright, I don't want to spoil too much, but I'm in the process of making a guild to gettin' 99 smithin' in RS. It's not all that hard, just seems that no one's taken the time to do it... :p

Anyways, I've been working on this, and I realize I need one key thing. A table that shows how much exp you need to get each lvl. All I've figured out is that it takes 13,100,000 xp to get to 99 from lvl 1, but all that gives me is 250mil in coin to buy all the ores you need... So is there like a chart somewhere that would show how much total xp you would need to get to a certain lvl?

Any help would be appreciated.

-Mr. Seacrest

Method
10-02-2008, 02:00 AM
http://www.zybez.net/skills.php

Scroll down.

Rubix
10-02-2008, 02:00 AM
gah. method beat me... f*ckzors you

Bonfield
10-02-2008, 02:01 AM
try the smithing calc on tipit

edit wow method and rubix are quick =]

Ryan Seacrest
10-02-2008, 03:06 AM
http://www.zybez.net/skills.php

Scroll down.

This. Very much this. Excatly what I needed!!!!! A thousand thanks.

tank phobia
10-02-2008, 04:28 AM
You could make a very simple script that finds exp for a given level if you know how to use any of the following languages:

Javascript


<SCRIPT LANGUAGE="JavaScript">
<!--
document.close();
document.open();
document.writeln('Begin JavaScript output:');
document.writeln('<PRE>');

points = 0;
output = 0;
minlevel = 2; // first level to display
maxlevel = 200; // last level to display

for (lvl = 1; lvl <= maxlevel; lvl++)
{
points += Math.floor(lvl + 300 * Math.pow(2, lvl / 7.));
if (lvl >= minlevel)
document.writeln('Level ' + (lvl) + ' - ' + output + ' xp');
output = Math.floor(points / 4);
}

document.writeln('</PRE>');
document.close();
// -->
</SCRIPT>

PHP


<?php

function experience($L) {
$a=0;
for($x=1; $x<$L; $x++) {
$a += floor($x+300*pow(2, ($x/7)));
}
return floor($a/4);
}

for($L=1;$L<100;$L++) {
echo 'Level '.$L.': '.experience($L).'<br />';
}
?>


or

Visual Basic (not .net)


Public Function experience(ByVal lvl As Integer)
Dim a As Long
Dim x As Integer
For x = 1 To lvl
a = a + Int(x + 300 * (2 ^ (x / 7)))
Next x
experience = roundDown(a / 4)
End Function

I am guessing someone has ported this to be compatible with scar too?