24.09.2016, 20:52
Hi,
I have variable where i store names
new Variable[ MAX_PLAYERS ][ MAX_PLAYER_NAME ];
And i want to sort by Alphabetical that string, how can i do that? also i want to only sort not empty strings like
And too i want i have other variables
new VariableData[ MAX_PLAYERS ][ 40 ];
I also want when i sort Alphabetical by names, also that sorting affect variabledata it go with Variable
}
I have variable where i store names
new Variable[ MAX_PLAYERS ][ MAX_PLAYER_NAME ];
And i want to sort by Alphabetical that string, how can i do that? also i want to only sort not empty strings like
Код:
foreach(new i : Player) { if( !isnull( Variable[ i ] ) ) { }
new VariableData[ MAX_PLAYERS ][ 40 ];
I also want when i sort Alphabetical by names, also that sorting affect variabledata it go with Variable
}