Post
Topic
Board Meta
Re: Legendary one day?
by
shorena
on 29/10/2015, 08:41:35 UTC
-snip-
I have never seen this said or quoted on the forum. It does echo theymos' words "random and different for every member". So, the activity threshold is actually predetermined by a formula. Can any one confirm this?
-snip-

Here it is.

Can you make getting legendary provability fair? So we know if you don't like us that we get it anyway Smiley

Nah, that'd significantly complicate things. Currently this randomness is done with a single SQL query, which is very convenient.

Code:
update smf_members set ID_POST_GROUP=21 where ID_POST_GROUP=8 and
activity>=775 and activity>=775+conv(substr(sha1(concat(ID_MEMBER,
secretSeed)), 1, 2), 16, 10);

The required activity level per user is suitably random for betting, but anyone who can read my code (there are a few such people) will be able to exactly predict when someone will become Legendary, so I don't really recommend it.