I’m working on game right now that will have an Item Shop. I thought it would be fun that you couldn’t just walk in at an untimely hour.
I made, with a bit of help, this random script (I’m not really sure if this will help) that will let you enter the shop 90% percent of the time. :
JavaScript
x
23
23
1
<script language="JavaScript">
2
var result = (Math.random()*10)
3
var a = document.createElement('a');
4
5
if(result >= 9)
6
{
7
var linkText = document.createTextNode("Enter The Shop");
8
a.id = "OpenShop";
9
a.appendChild(linkText);
10
a.title = "A place to buy weapons and stuff!";
11
a.href = "open.html";
12
document.body.appendChild(a);
13
}
14
else
15
{
16
var linkText = document.createTextNode("Don't Enter The Shop");
17
a.id = "ClosedShop";
18
a.appendChild(linkText);
19
a.title = "A place to buy weapons and stuff!";
20
a.href = "notopen.html";
21
}
22
document.body.appendChild(a);
23
I was wondering if it would be possible to change a few lines and make it to where the shop could be open from 9 a.m.-8 p.m. but to be closed for the rest of the day.
(Before 9 a.m. and after 8 p.m. the shop needs to be closed.)
EDIT: I am also unsure how to center this.
Advertisement
Answer
See this similar question asked by Yanlu. In your case you would check if the current hour is at least 9 but less than 20.
Basing my answer on Nev‘s answer, you should do:
JavaScript
1
4
1
var currentHours = new Date.getHours();
2
if (currentHours >= 9 && currentHours < 20) {
3
…
4