Hi.
I have this Array:
PHP Code:
this.rankings = {{300, player.account}, {245, player.account}, {439, player.account}};
And I want to sort it so I have this:
PHP Code:
this.rankings = {{245, player.account}, {300, player.account}, {439, player.account}};
My problem is that I have no idea how to do this, =P