Code (text): void PokemonOnlineStatsPlugin::battleStarting(PlayerInterface *p1, PlayerInterface *p2, int mode, unsigned int &clauses, bool) { /* We only keep track of battles between players of the same tier and not CC battles */ if (p1->tier() != p2->tier() || clauses & ChallengeInfo::ChallengeCup) return; In these cases there should be a summary for "Mixed Generation X" (different tiers but same generations) and "Others" (different generations).
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)
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.
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)