15.01.2011, 22:37
Код:
CarInfo[veh][vowner] = GetName(playerid);
Код:
C:(1194) : error 047: array sizes do not match, or destination array is too small
CarInfo[veh][vowner] = GetName(playerid);
C:(1194) : error 047: array sizes do not match, or destination array is too small
enum YourEnum
{
//etc etc.
vowner[MAX_PLAYER_NAME];
//etc etc.
}
CarInfo[MAX_VEHICLES][YourEnum];
enum vInfo { vowner[25], }
new CarInfo[cars][vInfo];