I think it would be a fantastic idea to have some sort of win streak announcement. Through the "Find Battle" button only. Also, have a ranking system of a player's win streak too, would be nice. Example: So when the player has achieved 10 wins, there will be a quick announcement saying "player (-_-) has a win of 10 streaks." (Or something like that) When the player loses that streak or logs out, it will be reset to zero. Maybe give us the option to turn on and off the win streak rank count too? It would be nice to know who are the top players on the servers are! :cool: This will also promote players to interact with that player on the spot by asking for tips, suggestions, or just talk.
I had that in Battle Factory. Simply Code (javascript): function Player(id) { this.winstreak = 0; }; SESSION.registerUserFactory(Player); ({ afterBattleEnded: function(winner, looser, result) { if ('tie' != result) { SESSION.users(winner).winstreak++; SESSION.users(looser).winstreak = 0; } }, })
Yeah definitely, this won't be added to main program as scripts can achieve the same without any drawbacks. Also did you know that you can view ladder rankings by right clicking player and choosing view rankings?
Yep, I did know that. Also, there is a ranking table on websites too. However most of the time, those top players are not online, using an alternate name. While with the win streak system, we can know that those players are actually playing during the time they reached their 10 win streak.