Thread: Scoreboard
View Single Post
  #4  
Old 11-15-2014, 02:15 PM
BlueMelon BlueMelon is offline
asdfg
BlueMelon's Avatar
Join Date: Sep 2008
Posts: 1,481
BlueMelon is a splendid one to beholdBlueMelon is a splendid one to beholdBlueMelon is a splendid one to beholdBlueMelon is a splendid one to behold
That was just an example, change it to fit your needs

What you want to do seems simple enough,
PHP Code:
  temp.board= {25 values};
  
temp.board.sortdescending();

  
// add a new entry
  
temp.newEntry 123;
  
temp.lowest temp.board[temp.board.size()-1];
  if(
temp.newEntry temp.lowest) {
    
// delete lowest
    // add to board
    // re-sort
  
}
// display or whatever 
I can whip up another example later tonight if needed.
__________________
http://i.imgur.com/OOJbW.jpg
Reply With Quote