[HELP]Cars shadow.
#8

Quote:
Originally Posted by [Aka]Dragonu
Посмотреть сообщение
pawn Код:
Turismo[1] = CreateVehicle(451,-1402.1162,-259.9066,1043.3632,346.5681,-1,-1,60);
    Turismo[2] = CreateVehicle(451,-1405.6050,-259.1055,1043.3624,349.3401,-1,-1,60);
    Turismo[3] = CreateVehicle(451,-1408.4631,-258.6261,1043.3693,349.3985,-1,-1,60);
    Turismo[4] = CreateVehicle(451,-1403.7344,-227.9946,1042.9355,351.6170,-1,-1,60);
    Turismo[5] = CreateVehicle(451,-1404.7408,-234.0718,1043.0221,350.6671,-1,-1,60);
    Turismo[6] = CreateVehicle(451,-1405.8110,-239.9628,1043.1130,350.7557,-1,-1,60);
    Turismo[7] = CreateVehicle(451,-1406.8254,-246.1033,1043.2104,350.0145,-1,-1,60);
    Turismo[8] = CreateVehicle(451,-1389.0242,-215.8885,1042.8398,3.4904,-1,-1,60);
    Turismo[9] = CreateVehicle(451,-1388.5942,-222.2435,1042.8969,4.9918,-1,-1,60);
    Turismo[10] = CreateVehicle(451,-1388.0756,-226.9755,1042.9449,4.9951,-1,-1,60);
    Turismo[11] = CreateVehicle(451,-1387.4373,-231.9618,1043.0137,6.8981,-1,-1,60);
    Turismo[12] = CreateVehicle(451,-1386.8801,-236.9860,1043.0900,8.8090,-1,-1,60);
    Turismo[13] = CreateVehicle(451,-1385.9900,-242.4177,1043.1959,9.2420,-1,-1,60);
    for(new i; i < sizeof(Turismo); i++){LinkVehicleToInterior(Turismo[i], 7); AddVehicleComponent(Turismo[i], 1010); ChangeVehicleColor(Turismo[i], random(126), random(126));}
Please help me. Thanks
Problem the for loop:
pawn Код:
//                  13
for(new i = 0; i < sizeof(Sultan); i++)  //Loop : 0,1,2,3,4,5,6,7,8,9,10,11,12 end
//also
Turismo[1] = Create....
Turismo[2] = Create....
...
Turismo[13] = Create..
Correct:
pawn Код:
Turismo[0] = CreateVehicle(451,-1402.1162,-259.9066,1043.3632,346.5681,-1,-1,60); // Start 0 index!!
Turismo[1] = CreateVehicle(451,-1405.6050,-259.1055,1043.3624,349.3401,-1,-1,60);
Turismo[2] = CreateVehicle(451,-1408.4631,-258.6261,1043.3693,349.3985,-1,-1,60);
Turismo[3] = CreateVehicle(451,-1403.7344,-227.9946,1042.9355,351.6170,-1,-1,60);
// ...
// ...
for(new i = 0; i < sizeof(Sultan); i++)
{
    //etc..
}
Reply


Messages In This Thread
[HELP]Cars shadow. - by [Aka]Dragonu - 22.12.2010, 07:30
Re: [HELP]Cars shadow. - by eDz0r - 22.12.2010, 07:59
Re: [HELP]Cars shadow. - by [Aka]Dragonu - 22.12.2010, 08:02
Re: [HELP]Cars shadow. - by thimo - 22.12.2010, 08:49
Re: [HELP]Cars shadow. - by DRIFT_HUNTER - 22.12.2010, 09:04
Re: [HELP]Cars shadow. - by [Aka]Dragonu - 22.12.2010, 09:05
Re: [HELP]Cars shadow. - by [Aka]Dragonu - 03.03.2011, 07:02
Re: [HELP]Cars shadow. - by smeti - 03.03.2011, 07:25
Re: [HELP]Cars shadow. - by [Aka]Dragonu - 03.03.2011, 08:09
Re: [HELP]Cars shadow. - by [Aka]Dragonu - 03.03.2011, 08:42

Forum Jump:


Users browsing this thread: 1 Guest(s)