How can i make tow truck to tow cars?!
#10

pawn Код:
if(strcmp(cmdtext, "/towcar", true) == 0)
{
    if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER && GetVehicleModel(GetPlayerVehicleID(playerid)) == 525)
    {
        new Float:pos[6];
        GetPlayerPos(playerid, pos[0], pos[1], pos[2]);
        new vehid = GetPlayerVehicleID(playerid);
        for (new vid=1; vid <= MAX_VEHICLES && GetVehicleModel(vid); vid++)
        {
            if(vid == vehid) continue;
            GetVehiclePos(vid, pos[3], pos[4], pos[5]);
            if (floatabs(pos[0]-pos[3]) < 7.0 && floatabs(pos[1]-pos[4]) < 7.0 && floatabs(pos[2]-pos[5]) < 7.0)
            {
                AttachTrailerToVehicle(vid, vehid);
                break;
            }
        }
    }
    return 1;
}
Reply


Messages In This Thread
How can i make tow truck to tow cars?! - by Martin_White - 09.08.2009, 18:47
Re: How can i make tow truck to tow cars?! - by MadeMan - 09.08.2009, 18:49
Re: How can i make tow truck to tow cars?! - by Martin_White - 09.08.2009, 18:57
Re: How can i make tow truck to tow cars?! - by MadeMan - 09.08.2009, 19:01
Re: How can i make tow truck to tow cars?! - by Martin_White - 09.08.2009, 19:01
Re: How can i make tow truck to tow cars?! - by MadeMan - 09.08.2009, 19:04
Re: How can i make tow truck to tow cars?! - by Martin_White - 09.08.2009, 19:12
Re: How can i make tow truck to tow cars?! - by MadeMan - 09.08.2009, 19:16
Re: How can i make tow truck to tow cars?! - by Martin_White - 09.08.2009, 19:28
Re: How can i make tow truck to tow cars?! - by MadeMan - 09.08.2009, 19:50

Forum Jump:


Users browsing this thread: 1 Guest(s)