Advertisement
Guest User

Untitled

a guest
Mar 8th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. private function bool GreaterScoreThan( NetScoreInfo a, NetScoreInfo b )
  2. {
  3.     return
  4.         ( a.GetScore() > b.GetScore() ||
  5.             ( a.GetScore() == b.GetScore() &&
  6.                 ( ObjScore( a ) > ObjScore( b ) ||
  7.                     ( ObjScore( a ) == ObjScore( b ) &&
  8.                         ( a.GetArrests() > b.GetArrests() ||
  9.                             ( a.GetArrests() == b.GetArrests() &&
  10.                                 ( a.GetTimesDied() < b.GetTimesDied() ||
  11.                                     ( a.GetTimesDied() == b.GetTimesDied() &&
  12.                                         ( a.GetEnemyKills() > b.GetEnemyKills() ||
  13.                                             ( a.GetEnemyKills() == b.GetEnemyKills() &&
  14.                                                 ( a.GetTimesArrested() < b.GetTimesArrested()
  15.         )   )   )   )   )   )   )   )   )   )   );
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement