22.12.2011, 05:03
How do i check if a car is spawned?
I looked for a function and well... couldnt find it.
I looked for a function and well... couldnt find it.
stock IsVehicleConnected(vehicleid)
{
new Float:x, Float:y, Float:z;
GetVehiclePos(vehicleid, x, y, z);
if(x == 0.0 && y == 0.0 && z == 0.0)return 0;
return 1;
}