Did you know… You can use the player ID to tell when the server was created! More puns can be made too :D
A player ID, e.g. 6818f4ab0cdad8cd8dc8a970
, is the player’s ID. With help from others, the community as a whole unpuzzled the first 8 digits of the ID to be correlated to time.
The first 8 digits, in this example 6818f4ab
, are in hexadecimal. This means the values are base-16 values that we need to convert to base-10. How do we do that? See the image below for reference, and I made a guide on bases if you would like to read more.
The equation is x * 16^y
repeated for every digit, when x = any digit, and y = the placement of the digit in the number. If you had the number 15 in hex, it is (1 * 16^1) + (5 * 16^0)
. The answer is 21. Notice how the powers of 16 decrease as you get closer to the ones digit!
Base-16 Alphabet
Normally, a base-10 alphabet is 0123456789
. A base-16 alphabet is 0123456789abcdef
.
A=10, B=11, C=12, D=13, E=14, and F=15.
Instructions
All you need is this piece of code, a trigger, and a player! Copy the code down, and you should have that piece of code tell you the time of server creation! I simplified 16^y to their corresponding numbers, otherwise, it won’t fit in a single trigger.
The output is counting in seconds from January 1st, 1970. I recommend How long ago was January 1st 1970? | howlongagogo.com to check.
What can I use it for?
Anything time-related! Automated shop rotations, planned future updates, etc.

- Yes.
- No.
- You already made one silly goose.
If you have any questions, please ask! I don’t bite!
man, I really need to watch my puns ↩︎