Win Streak!!!

Discussion in 'Simulator Suggestions' started by skyhonor, Feb 2, 2012.

Thread Status:
Not open for further replies.
  1. skyhonor

    skyhonor New Member

    Joined:
    Feb 2, 2012
    Messages:
    4
    Likes Received:
    0
    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.
     
    Last edited: Feb 2, 2012
  2. Aerith

    Aerith Banned

    Joined:
    Jan 6, 2011
    Messages:
    354
    Likes Received:
    1
    You can do this with scripts.
     
  3. Kalashnikov

    Kalashnikov Despite the code quality

    Joined:
    Apr 4, 2011
    Messages:
    434
    Likes Received:
    0
    I had that in Battle Factory.
    Simply
    Code (javascript):
    1.  
    2. function Player(id) {
    3.     this.winstreak = 0;
    4. };
    5.  
    6. SESSION.registerUserFactory(Player);
    7.  
    8. ({
    9.     afterBattleEnded: function(winner, looser, result) {
    10.         if ('tie' != result) {
    11.             SESSION.users(winner).winstreak++;
    12.             SESSION.users(looser).winstreak = 0;
    13.         }
    14.     },
    15. })
    16.  
     
  4. Lamperi

    Lamperi I see what you did there

    Joined:
    Apr 25, 2010
    Messages:
    2,647
    Likes Received:
    11
    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?
     
  5. skyhonor

    skyhonor New Member

    Joined:
    Feb 2, 2012
    Messages:
    4
    Likes Received:
    0
    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.
     
Thread Status:
Not open for further replies.