how can i...
#1

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.
Reply
#2

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;
}
Reply
#3

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.
Reply
#4

i try this
Reply
#5

pawn Код:
public IsAGangCar2(carid)
{
    for(new i = 0; i <= sizeof(GangCars2); i++)
    {
        if(carid == GangCars2[i]) { return 1; }
    }
    return 0;
}
Reply
#6

its still for sale need fast help
Reply
#7

anybody?
Reply
#8

help me?
Reply
#9

its not working i need still help!
Reply
#10

What is your prob now?

what don't work ? show us the other parts of script where something need to be working.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)