Skip to content
Advertisement

Time Based Links in HTMLJavaScript

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

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
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement