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 "Dannyx Test1"

From RuneGlory
Jump to: navigation, search
Line 41: Line 41:
 
     var result = str.link("https://i.imgur.com/saHJYFp.png");
 
     var result = str.link("https://i.imgur.com/saHJYFp.png");
 
     document.getElementById("demo").innerHTML = result;
 
     document.getElementById("demo").innerHTML = result;
 +
}
 +
 +
</script>
 +
 +
</body>
 +
</html>
 +
 +
 +
 +
 +
<html>
 +
<body>
 +
 +
<style type="text/css">
 +
body { text-align: center; margin: auto; padding: 20px; }
 +
label { font-weight: bold; margin: 0 4px; }
 +
select  { margin: 0; padding: 0; }
 +
table, th, td {
 +
    border: 1px solid black;
 +
}
 +
 +
select {
 +
  color: white;
 +
  width: 100%;
 +
 +
</style>
 +
 +
<button type="button"
 +
onclick="myFunction()">
 +
Click me to display the times each boost occur for your timezone.</button>
 +
 +
<table width="100%">
 +
  <tr>
 +
    <th> Boost </td>
 +
    <th> Time </td>
 +
    <th> Time 2 </td>
 +
  </tr>
 +
  <tr>
 +
    <td> 2x wilderness singles </td>
 +
    <td id="time0"> </td>
 +
        <td id="time0a"> </td>
 +
  </tr>
 +
  <tr>
 +
    <td> 2x wilderness multi </td>
 +
    <td id="time1"> </td>
 +
        <td id="time1a"> </td>
 +
  </tr>
 +
  <tr>
 +
    <td> 25% skilling xp </td>
 +
    <td id="time2"> </td>
 +
        <td id="time2a"> </td>
 +
  </tr>
 +
  <tr>
 +
    <td> 2x skill points </td>
 +
    <td id="time3"> </td>
 +
        <td id="time3a"> </td>
 +
  </tr>
 +
  <tr>
 +
    <td> 2x slayer points </td>
 +
    <td id="time4"> </td>
 +
    <td id="time4a"> </td>
 +
  </tr>
 +
  <tr>
 +
    <td> 2x shooting stars </td>
 +
    <td id="time5"> </td>
 +
    <td id="time5a"> </td>
 +
  </tr>
 +
</table>
 +
 +
<script>
 +
 +
function myFunction() {
 +
    var d = new Date();
 +
    var n = d.getTimezoneOffset();
 +
    n = n/60;
 +
    var time0 = (0-n)%12
 +
    var time1 = (1-n)%12
 +
    var time2 = (2-n)%12
 +
    var time3 = (3-n)%12
 +
    var time4 = (4-n)%12
 +
    var time5 = (5-n)%12
 +
    var time6 = (6-n)%12
 +
    var time7 = (7-n)%12
 +
    var time8 = (8-n)%12
 +
    var time9 = (9-n)%12
 +
    var time10 = (10-n)%12
 +
    var time11 = (11-n)%12
 +
 +
    document.getElementById("time0").innerHTML = check0(time0) + " AM and PM";
 +
    document.getElementById("time1").innerHTML = check0(time1) + " AM and PM";
 +
    document.getElementById("time2").innerHTML = check0(time2) + " AM and PM";
 +
    document.getElementById("time3").innerHTML = check0(time3) + " AM and PM";
 +
    document.getElementById("time4").innerHTML = check0(time4) + " AM and PM";
 +
    document.getElementById("time5").innerHTML = check0(time5) + " AM and PM";
 +
    document.getElementById("time0a").innerHTML = check0(time6) + " AM and PM";
 +
    document.getElementById("time1a").innerHTML = check0(time7) + " AM and PM";
 +
    document.getElementById("time2a").innerHTML = check0(time8) + " AM and PM";
 +
    document.getElementById("time3a").innerHTML = check0(time9) + " AM and PM";
 +
    document.getElementById("time4a").innerHTML = check0(time10) + " AM and PM";
 +
    document.getElementById("time5a").innerHTML = check0(time11) + " AM and PM";
 +
}
 +
 +
function check0(time) {
 +
    if (time == 0) {
 +
        return(12);
 +
    }
 +
    else {
 +
    return(time)
 +
    }
 
}
 
}
  

Revision as of 19:49, 27 May 2018

Select your Time zone:




Boost Time Time 2
2x wilderness singles
2x wilderness multi
25% skilling xp
2x skill points
2x slayer points
2x shooting stars