how can i... -
erikhenri - 03.08.2010
first i do it
forward IsAGangCar2(carid);
then i do it
AddStaticVehicle(402,1248.7694,-803.7722,83.9723,180.5839,0,0); // YAKUZA
AddStaticVehicle(419,1254.5103,-804.0104,83.9380,179.4227,0,0); // YAKUZA
AddStaticVehicle(475,1243.2533,-803.4598,83.9430,180.1993,0,0); // YAKUZA
AddStaticVehicle(480,1242.6583,-811.7627,83.9183,267.9681,0,0); // YAKUZA
//-------------------------------------------------------------------------------------------
Then
public IsAGangCar2(carid)
{
if(carid == 402 || carid == 419 || carid == 475 || carid == 480)
{
return 1;
}
return 0;
}
and finaly
if(IsAGangCar2(newcar))
{
if(PlayerInfo[playerid][pLeader] == 6||PlayerInfo[playerid][pMember] == 6) { }
else {
RemovePlayerFromVehicle(playerid);
SendClientMessage(playerid, COLOR_GREY,"You don't have keys of this vehicle.");}
}
BUT ITS NOT WORKING CARS GOES TO SALE.
Re: how can i... -
ikey07 - 03.08.2010
I guess carids is wrong, because if you add 4 cars than cars id should be 402,403,404,405,not 419,475...
I suggest you use like this:
pawn Код:
new GangCars2[4];
GangCars2[0] = AddStaticVehicleEx(402,1248.7694,-803.7722,83.9723,180.5839,0,0,-1); // YAKUZA
GangCars2[1] = AddStaticVehicleEx(419,1254.5103,-804.0104,83.9380,179.4227,0,0,-1); // YAKUZA
GangCars2[2] = AddStaticVehicleEx(475,1243.2533,-803.4598,83.9430,180.1993,0,0,-1); // YAKUZA
GangCars2[3] = AddStaticVehicleEx(480,1242.6583,-811.7627,83.9183,267.9681,0,0,-1); // YAKUZA
public IsAGangCar2(carid)
{
for(new i = 0; i < sizeof(GangCars2); i++)
{
if(carid == GangCars2[i]) { return 1; }
}
return 0;
}
Re: how can i... -
erikhenri - 03.08.2010
Quote:
Originally Posted by ikey07
I guess carids is wrong, because if you add 4 cars than cars id shouldbe 402,403,404,405,not 419,475...
|
okey i try.
Re: how can i... -
erikhenri - 03.08.2010
i try this
Re: how can i... -
Conroy - 03.08.2010
pawn Код:
public IsAGangCar2(carid)
{
for(new i = 0; i <= sizeof(GangCars2); i++)
{
if(carid == GangCars2[i]) { return 1; }
}
return 0;
}
Re: how can i... -
erikhenri - 03.08.2010
its still for sale need fast help
Re: how can i... -
erikhenri - 03.08.2010
anybody?
Re: how can i... -
erikhenri - 03.08.2010
help me?
Re: how can i... -
erikhenri - 03.08.2010
its not working i need still help!
Re: how can i... -
ikey07 - 03.08.2010
What is your prob now?
what don't work ? show us the other parts of script where something need to be working.