EPOCH Time Converters

Joined
Oct 14, 2009
Messages
5,537
Reaction score
2,344
Here are a few EPOCH Time Converters I've added to my own PW_DEV.iso (since it is not longer maintained and so large I will likely never update in on here)... I find these particularly useful for many various places/times the Unix/POSIX EPOCH time comes in handy for PW "dev"... Whether it be for some various "expire time" variables within the game DB (such as when a character gets deleted, or when an item in your inventory "expires" ETC)... Or whether we're talking about the "date/time stamp" of files such as elements or tasks or GSHOP...

-DCode ~ probably the BEST one of all of these, this one can "encode" or "decode" various time formats including "text" unix time, including to/from HEX (little and big endian)
-Epoch Time Converter ~ probably the second best, yet simple, two way epoch time converter
-TimeVerter ~ a very simple one way "time converter" where you input a "human readable" date/time and it will give you a few various "non human readable" times (including Unix/POSIX EPOCH time)

 
SS's of DCode:

1737538652654 - EPOCH Time Converters - RaGEZONE Forums


1737539116849 - EPOCH Time Converters - RaGEZONE Forums
 
Last edited:
Here are some examples of where this would come in handy ;)

Character delete/create/lastlogin:
1737934227217 - EPOCH Time Converters - RaGEZONE Forums


Item expire time (via character XML -AND- send mail as well):
1737930250524 - EPOCH Time Converters - RaGEZONE Forums


GSHOP/elements/tasks/etc (time-stamp) example below:
1737932547838 - EPOCH Time Converters - RaGEZONE Forums
 
Back