01.06.2014, 03:25
Quote:
Get the variable of each vehicle and compare.
For example PHP Code:
|
pawn Code:
new highest = 0, var[10] = {9, 181, 254, 11, 6, -3, 846, 64253, 1, 84};
for(new i = 0; i < sizeof(var); i++) highest = (var[i] > highest) ? (var[i]) : (highest);
printf("d", highest); // Will display "64253"