19.03.2015, 17:12
Aver si te sirve esto:
pawn Код:
for(new i = 1; i < MAX_VEHICLES; i ++)
{
new Float:x, Float:y, Float:z;
GetVehiclePos(i, x, y, z);
if(IsPlayerInRangeOfPoint(playerid, 10.0, x, y, z))
{
if(GetVehicleModel(i) == 443)
{
// codigo...
}
}
}