Xyzdrache asks:
"How is it possible that more than 8Million members were online within 2weeks ?
There are only 1,66Million members in the highscores and 75%+ of them are bots..."
'Unique Active Player stats' probably doesn't imply "Paid account", it probably includes free-to-play accounts as well. At least, that's what I'm guessing based on the vagueness in MMG's statement.
Further, I don't know what MMG means (exactly) by "active player". You could infer that it means a player signing into the game, but you could just as easily infer that it includes players who sign into the forums but who don't sign into the game anymore. (Posting is 'being active', right?)
For example, ginning up some SQL here against a theoretical transaction table in a database that tracks activity, including logins, logouts, and other things, as well as whether a player is logging into the game, and whether they're a member:
There should be be a big difference between a count of unique logins between Jan 29, and Feb 11 inclusive:
SELECT COUNT(DISTINCT PLAYER_ID) FROM PLAYER_ACTIVITY WHERE (ACTIVITY_TYPE = 'LOGIN') AND (LOGIN_DATE) >= 20130129) AND (LOGIN_DATE <= 20130211)
and a count of unique logins, that are members, that are logging into the game, between Jan 29, and Feb 11 inclusive:
SELECT COUNT(DISTINCT PLAYER_ID) FROM PLAYER_ACTIVITY WHERE (ACTIVITY_TYPE = 'LOGIN') AND (MEMBER='Y') AND (LOGIN_TO_GAME='Y') AND (LOGIN_DATE >= 20130129) AND (LOGIN_DATE <= 20130211)
Ugh. I've been supporting database products at work too long. I'm starting to think in SQL. :-)
20-Feb-2013 14:51:48
- Last edited on
20-Feb-2013 14:53:03
by
AgTiger