27.11.2014, 15:32
pawn Код:
stock IsCamionneurVeh(vehicleid)
{
for(new i=0; i<MAX_VEHICLES; i++)
{
if(vehicleid == CamionneurVeh[i]) return true;
}
return true;
}
stock IsAmbulancierVeh(vehicleid)
{
for(new i=0; i<MAX_VEHICLES; i++)
{
if(vehicleid == Ambulances[i]) return true;
}
return true;
}
stock IsPoliceVeh(vehicleid)
{
for(new i=0; i<MAX_VEHICLES; i++)
{
if(vehicleid == LSPDVoiture[i]) return true;
}
return true;
}