Well I stumbled upon this while using scripthelp, thought I'd spread the knowledge.
Variable: player.computerfirstlogin - basically when the computer first logged in, I'm sure how accurate it is but it's at least by the second.
There's also player.logintime.
PHP Code:
function onCreated() {
// Cycle through players and get hashes.
for (temp.a: allplayers) {
if (!(temp.a.computerfirstlogin in temp.hashes)) {
temp.hashes.add(temp.a.computerfirstlogin);
}
temp.("hash_" @ temp.a.computerfirstlogin).add(temp.a.account);
}
// Print List
for (temp.hash: temp.hashes) {
echo(temp.("hash_" @ temp.hash));
}
}