31.05.2014, 19:18
Get the variable of each vehicle and compare.
For example
For example
PHP Code:
new var[10] = {9, 181, 254, 11, 6, -3, 846, 64253, 1, 84};
new highest = 0;
for(new i = 0; i < sizeof(var); i++)
{
if(var[i] > highest) highest = var[i];
return 1;
}
printf(highest); // Will display "64253"