15.12.2015, 21:21
Alright so the issue is quite simple, trailer wont attach to a tractor
It creates the trailer, but it doesnt attach it onto the vehicle
PHP код:
CMD:attach(playerid,params[]) {
#pragma unused params
new vid = GetPlayerVehicleID(playerid);
new Float:Pos[3];
GetVehiclePos(vid,Pos[0],Pos[1],Pos[2]);
Tractor_Trailer[vid] = CreateVehicle(607,Pos[0],Pos[1],Pos[2]-5,0,0,0,0,0);
AttachTrailerToVehicle(Tractor_Trailer[vid], vid);
VehicleHaySlot[vid] = 0;
return true;
}