27.06.2012, 16:48
Sort them using an enumeration.
pawn Код:
#include <a_samp>
enum { One, Two, Three, Four };
new Array[] = { 1, 2, 3, 4 };
main ()
{
printf("%d", Array[Three]);
}