17.07.2010, 04:12
Okay, I am currently using Raven's RP 2.6, just so you know. I am having some trouble with them "Team Vehicles", they way it works doesn't make any sense to me. Now, I have talked to a friend and he says that for every "AddStaticVehicleEx(...)" you have, it counts as 1 car. So, when your doing:
42 would be the 43rd line of "AddStaticVehicleEx(...)" from the beginning of your script, to the end? 1173 would be the 1137th line of "AddStaticVehicleEx(...)", etc... If I am correct, is there an easier way to do that? If I am wrong, how does it work?
pawn Код:
public IsAnFbiCar(carid)
{
if((carid >= 42) && (carid <= 43) || (carid >= 1173) && (carid <= 1182) || (carid >= 1154) && (carid <= 1156))
{
return 1;
}
return 0;
}