11.04.2009, 00:39
Still the same error..
This is the cars that is for sale ordered in an array
Here its gonna check if the car is id 404, 451 or 541..
This is the cars that is for sale ordered in an array
pawn Код:
cars[3][] =
{
{404},
{451},
{541}
};
pawn Код:
for(new i; i < sizeof(cars); i++)
{
if(GetVehicleModel(carid2) == cars[i]) // The error line
{
SendClientMessage(playerid, COLOR_YELLOW, "This car costs $10000, type /buycarconfirm to buy it.");
car = 1;
}
}

