06.12.2018, 15:24
You can use this.
https://sampforum.blast.hk/showthread.php?tid=343172
Quick example:
https://sampforum.blast.hk/showthread.php?tid=343172
Quick example:
PHP код:
new _store_our_scores[ MAX_PLAYERS ][ 2 ], sizeof_our_list;
for( new i; i < MAX_PLAYERS; i++ )
{
if( !IsPlayerConnected( i ) ){
continue;
}
if( E_SCORE_VAR[ i ] > 0 )
{
_store_our_scores[i][0] = E_SCORE_VAR[i];
_store_our_scores[i][1] = i;
sizeof_our_list++;
}
}
SortDeepArray( _store_our_scores, 0 );