Moderator: Community Team
Grey Mouser wrote:Just curious. How does the system handle your account if you do not renew your premium membership. Do you instantly get reduced to 4 game? I've been here for a while (not the beginning but close) and my time is almost up.
What happens?
Grey Mouser wrote:But do I lose any games over the 4 allowed for non-paying members
tahitiwahini wrote:Grey Mouser wrote:But do I lose any games over the 4 allowed for non-paying members
If you are, my advice would be to join/create like 130 games before your premium membership expires. That will hold you for the next week or so...
Madmartigan wrote:suppose you were on your last few hours from expiration and you created a whole pile of games. How would the not filled ones be processed after your prem expired? Would you auto drop them?
Code: Select all
if (player.isPremium() or (player.activeGames <= 4)) {
// allow player to create or join the game }
else {
// don't }tahitiwahini wrote:Code: Select all
if (player.isPremium() or (player.activeGames <= 4)) {
// allow player to create or join the game }
else {
// don't }