Posts: 3,934
Threads: 353
Joined: Jan 2010
Reputation:
0
I may have, i'll have a look, if not i'll have to wait for Slice.
Posts: 1,831
Threads: 69
Joined: Mar 2008
Reputation:
0
I noticed that if there's a folder called "md-sort" in the same place as "md-sort.inc" the compiler crashes. Could it be that?
Posts: 3,934
Threads: 353
Joined: Jan 2010
Reputation:
0
I have no folders called md-sort where the include is.
Posts: 1,831
Threads: 69
Joined: Mar 2008
Reputation:
0
What other includes do you have?
Come on, give me something more to go on here..
Posts: 610
Threads: 18
Joined: Jan 2014
Reputation:
0
How Can i use this for this:
Biggest gang
2nd biggest gang
3rd biggest gang
Based on Gang's turfs.
Posts: 534
Threads: 265
Joined: Jul 2014
What mean index?
And i get error when i use longer
new ASDASDASD[ MAX_PLAYERS ][ 10 ][ MAX_PLAYER_NAME ];
Posts: 248
Threads: 13
Joined: Jul 2014
Reputation:
0
@Banditukas: Index means position of an element in an array.
Example:
new array[10]={1,2,3,4,5,6,7,8,9,10}
where,
1's index is 0
2's index is 1
3's index is 2
4's index is 3
5's index is 4
6's index is 5
7's index is 6
8's index is 7
9's index is 8
10's index is 9
Posts: 534
Threads: 265
Joined: Jul 2014
And why i need to write a specif index?
Posts: 534
Threads: 265
Joined: Jul 2014
Код:
SortDeepArray(array, 0);
Why i need to write 0 if i just want to get from my array DESC ABC ?
And problem is if you use 3d dimmension array
[ ] [] [ ]
Posts: 534
Threads: 265
Joined: Jul 2014
Can you make for 3d, or is here for 3d?
Posts: 607
Threads: 90
Joined: Feb 2011
Reputation:
0
Hi,
can somebody explain how to sort enum's variables to hightest-lowtest ?
Posts: 14
Threads: 4
Joined: Mar 2014
Reputation:
0
Hello, how to make a top 5 for races?
Posts: 4
Threads: 0
Joined: Jul 2010
Reputation:
0
Hey is there a way to sort from a range of values eg: an array with [55][3][2][5][4][2][1][7][8][9][23] i would like to sort from a value that is in range of 0 to 10 , it would become : [1][2][2][3][4][5][7][8][9][55][23].