Welcome to the RuneGlory Wiki, where we do our best to make your life easier!
You can use the search menu on the right side of the wiki (or at the bottom if you are on mobile) to search for the page you are looking for. The most popular pages can be found on the right side of the wiki aswell (or again at the bottom if you are on mobile).
Difference between revisions of "Main page/Test Cypher3"
From RuneGlory
Line 71: | Line 71: | ||
var coinoak = document.getElementById("coinoak").value; | var coinoak = document.getElementById("coinoak").value; | ||
var coinreglog = document.getElementById("coinreglog").value; | var coinreglog = document.getElementById("coinreglog").value; | ||
− | + | ||
+ | // Calculate XP | ||
document.getElementById("magicr").innerHTML = Math.ceil((y - x)/magic); | document.getElementById("magicr").innerHTML = Math.ceil((y - x)/magic); | ||
document.getElementById("yewr").innerHTML = Math.ceil((y - x)/yew); | document.getElementById("yewr").innerHTML = Math.ceil((y - x)/yew); | ||
Line 78: | Line 79: | ||
document.getElementById("oakr").innerHTML = Math.ceil((y - x)/oak); | document.getElementById("oakr").innerHTML = Math.ceil((y - x)/oak); | ||
document.getElementById("reglogr").innerHTML = Math.ceil((y - x)/reglog); | document.getElementById("reglogr").innerHTML = Math.ceil((y - x)/reglog); | ||
+ | |||
+ | // Calculate coins made | ||
+ | document.getElementById("magiccoin").innerHTML = Math.ceil(((y - x)/magic)*magiccoin); | ||
+ | document.getElementById("yewcoin").innerHTML = Math.ceil(((y - x)/yew)*yewcoin); | ||
+ | document.getElementById("maplecoin").innerHTML = Math.ceil(((y - x)/maple)*maplecoin); | ||
+ | document.getElementById("willowcoin").innerHTML = Math.ceil(((y - x)/willow)*willowcoin); | ||
+ | document.getElementById("oakcoin").innerHTML = Math.ceil(((y - x)/oak)*oakcoin); | ||
+ | document.getElementById("reglogcoin").innerHTML = Math.ceil(((y - x)/reglog)*reglogcoin); | ||
document.getElementById("xpneeded").innerHTML = (y - x); | document.getElementById("xpneeded").innerHTML = (y - x); |
Revision as of 17:54, 19 January 2018
Test page from Cypher to make the build-in XP Calculator
Test Firemaking Tables:
Your firemaking XP | |
Target XP |
Skilling points you'll obtain:
Level | Name | Amount | Coins made |
1 | Regular log | Dynamic input | |
15 | Oak log | Dynamic input | |
30 | Willow log | Dynamic input | |
45 | Maple log | Dynamic input | |
60 | Yew log | Dynamic input | |
75 | Magic log | Dynamic input |