11.02.2016, 21:34
under OnGameModeInit add
for(new i; i < sizeof(YOUR_CARS_AMOUNT); i++)
{
YOUR_GAS_VARIABLE[i] = 100;
}
OR at the top of the script
new YOUR_GAS_VARIABLE[YOUR_CARS_AMOUNT] = {100,...};
for(new i; i < sizeof(YOUR_CARS_AMOUNT); i++)
{
YOUR_GAS_VARIABLE[i] = 100;
}
OR at the top of the script
new YOUR_GAS_VARIABLE[YOUR_CARS_AMOUNT] = {100,...};