Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-2

Double XP time...?

Asked by 10 years ago

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?

1 answer

Log in to vote
0
Answered by
BlueTaslem 18071 Moderation Voter Administrator Community Moderator Super Administrator
10 years ago

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()

0
...? peoplemove12 148 — 10y
Ad

Answer this question