Okay, so...i'm trying to do double XP for like an hour and i don't really get how it could be put together? Anyone know?
Simply double all of the values you increment by.
Ideally, if you are incrementing via a function, you need only modify that single function. That would the elegant solution in any case.
If you need to determine a particular hour of time automatically, you could use tick()
to get UNIX time in some timezone. This is off by a constant (more or less) from UTC. Finding times in UTC can be done by various different services.
JavaScript would be a simple way to convert calendar format to UTC time.
Ex.: new Date("09 June 2016 3:21 pm EST").getTime()