READ ALL BEFORE JUDGING ANYTHING PLEASE!
CLICK HERE TO VIEW CALC
Okay so you want to raise alot of prayer levels and dont want to waste time on noob bones right?
I made a simple html ( and javascript ) based calculator.
How it works:
Enter the number of dragon bones you want or the max you can afford or whatever you want.
If nothing happens keep the textbox selected and push ENTER however it should automaticly update.
It will then tell you Total XP With Ecto Fungus Total XP Without Ectofungus Total Price (2500ea)
I hope this can be accepted into runevillage (Special Features?) so it can help people.
Worried about the site? Here is it's source ( copyrighted )
<html>
<head>
<script type="text/javascript">
function convert(dragbones)
{
if (dragbones=="bones")
{
xp=document.getElementById("bones").value *288
document.getElementById("xp").value=Math.round(xp)
price=document.getElementById("bones").value *2500
document.getElementById("price").value=price + "GP"
xp2=document.getElementById("bones").value *72
document.getElementById("xp2").value=Math.round(xp2)
}
else
{
bones=(document.getElementById("xp").value /288)
document.getElementById("bones").value=Math.round(bones)
(document.getElementById("xp2").value /72)
document.getElementById("bones").value=Math.round(bones)
}
}
</script>
</head>
<body>
<p></p><b>DRAGON BONE ECTOFUNGUS XP CALCULATOR</b>
<br><b>Enter the total amount of bones in the first field below:</b></p>
<form>
<b>Number Of Bones:</b><br />
<input id="bones" name="bones" onkeyup="convert('bones')"><br />
<br /> <b>Total XP With Ecto Fungus:</b><br />
<input id="xp" name="xp" onkeyup="convert('xp')"><br /><b>Total XP Without Ectofungus:</b><br />
<input id="xp2" name="xp2" onkeyup="convert(xp2)">
<br><b>Total Price: (2500ea)</b><br><input id="price" name="price" onkeyup="convert(price)">
</form>
<br><font size="0">Copyright (c) Joshua090909 all right reserved</font>
</body>
</html>