07.04.2010, 14:56
i got that:
and when i tow the vehicle everything fine.
AND WHEN I EXIT MY VEHICLE (The Towing Truck) the other vehicle (The Towed Vehicle) is starting to fly like on gravity wtf?...
how do i fix that?.. or it's only me that having that problem?... lol
thanks..
pawn Код:
if(PRESSED(LIGHT_KEY)&&(IsPlayerInAnyVehicle(playerid))&&(GetPlayerState(playerid)==PLAYER_STATE_DRIVER))
{
if(newcar >= 202 && newcar <= 205)
{
new Float:pX,Float:pY,Float:pZ;
GetPlayerPos(playerid,pX,pY,pZ);
new Float:vX,Float:vY,Float:vZ;
new Found=0;
new vid=0;
while((vid<MAX_VEHICLES)&&(!Found))
{
vid++;
GetVehiclePos(vid,vX,vY,vZ);
if((floatabs(pX-vX)<7.0)&&(floatabs(pY-vY)<7.0)&&(floatabs(pZ-vZ)<7.0)&&(vid!=GetPlayerVehicleID(playerid)))
{
Found=1;
if(IsTrailerAttachedToVehicle(GetPlayerVehicleID(playerid)))
{
DetachTrailerFromVehicle(GetPlayerVehicleID(playerid));
}
AttachTrailerToVehicle(vid,GetPlayerVehicleID(playerid));
}
} if(!Found) { }
}
}
AND WHEN I EXIT MY VEHICLE (The Towing Truck) the other vehicle (The Towed Vehicle) is starting to fly like on gravity wtf?...
how do i fix that?.. or it's only me that having that problem?... lol
thanks..