Usage statistic for different tiers

Discussion in 'Implemented' started by Pokemonexperte-Martin, Jan 3, 2011.

  1. Pokemonexperte-Martin

    Pokemonexperte-Martin Member

    Joined:
    May 15, 2010
    Messages:
    76
    Likes Received:
    0
    Code (text):
    1. void PokemonOnlineStatsPlugin::battleStarting(PlayerInterface *p1, PlayerInterface *p2, int mode, unsigned int &clauses, bool)
    2. {
    3.     /* We only keep track of battles between players of the same tier
    4.        and not CC battles */
    5.     if (p1->tier() != p2->tier() || clauses & ChallengeInfo::ChallengeCup)
    6.         return;
    In these cases there should be a summary for "Mixed Generation X" (different tiers but same generations) and "Others" (different generations).
     
  2. coyotte508

    coyotte508 Well-Known Member Administrator Server Owner Administrator Server Owner

    Joined:
    Apr 21, 2010
    Messages:
    6,363
    Likes Received:
    168
    You mean adding stats for Mixed Tiers Gen 3, Mixed Tiers Gen 4, and Mixed Tiers Gen 5?

    In which only battles between different tiers are counted?

    (by the way battles between different generations can't happen)
     
  3. Pokemonexperte-Martin

    Pokemonexperte-Martin Member

    Joined:
    May 15, 2010
    Messages:
    76
    Likes Received:
    0
    Yes, thats what I meant. Concerning the different generations you are right, I forgot about the "has a different gen than yours" ;)

    What would also be nice is an option to seperate stats monthly.
     
  4. coyotte508

    coyotte508 Well-Known Member Administrator Server Owner Administrator Server Owner

    Joined:
    Apr 21, 2010
    Messages:
    6,363
    Likes Received:
    168
    ok that sounds good
     
  5. coyotte508

    coyotte508 Well-Known Member Administrator Server Owner Administrator Server Owner

    Joined:
    Apr 21, 2010
    Messages:
    6,363
    Likes Received:
    168
    Pushed (yet again, not tested... Slaughter me in case of problems)
     
  6. Pokemonexperte-Martin

    Pokemonexperte-Martin Member

    Joined:
    May 15, 2010
    Messages:
    76
    Likes Received:
    0
    I saw that "Mixed Tiers" was implemented, but not the monthly rotation. It is planned already?
     
  7. coyotte508

    coyotte508 Well-Known Member Administrator Server Owner Administrator Server Owner

    Joined:
    Apr 21, 2010
    Messages:
    6,363
    Likes Received:
    168
    No... We do it manually.

    It's not planned, because I would still need the option to do as it is now, and so it's actually a case in which i'd have to program a GUI for the plugin (it's already possible though) as well as modify the stats extracter and well in my order of preference i'd do gen 1 & 2 as well as other things before that =/ (at least right now)