07.01.2014, 15:16
Vocк esqueceu de definir um valor.
Mas nгo seria melhor assim?
pawn Код:
CMD:veh(playerid)
{
new cars[15];
cars[0] = 560;
cars[1] = 411;
cars[2] = 437;
cars[3] = 481;
cars[4] = 510;
cars[5] = 431;
cars[6] = 462;
cars[7] = 468;
cars[8] = 471;
cars[9] = 443;
cars[10] = 483; /
//depois de 10 й 11, nгo 12. --'
cars[12] = 511;
cars[13] = 522;
ShowModelSelectionMenuEx(playerid, cars, 13, "Veiculos Free", MENU_CARROS, 0.0, 0.0, -55.0);
return 1;
}
pawn Код:
CMD:veh(playerid)
{
new cars[] = {560,411,437,481,510,431,462,468,471,443,483,511,522};
ShowModelSelectionMenuEx(playerid, cars, sizeof(cars), "Veiculos Free", MENU_CARROS, 0.0, 0.0, -55.0);
return 1;
}

