Tow Truck with Winch v2 โ
Documentation relating to the v2 of the jo_towtruck.
(Documentation relating to the v1)
1. Installation โ
Tow Truck with Winch v2 is a standalone script. So you don't need a specific framework to use it. It's also mean it works with all framework (Esx, QBCore, VRP, DRP, โฆ).
- Drag and drop the resource in your resources folder
- jo_towtruck
- Add it to your server.cfg
ensure jo_towtruck
Congratulation, the Tow Truck with Winch v2 script is ready to be use !
2. Usage โ
By default, the script is configured to work with a custom flatbed : flatbed3 and with the native slamtruck. Use your admin menu (or other scripts) to spawn it.
A help message with key will appears at the bottom right of your screen every time action is available. Please read them to know what keys are usable.
- Move the bed down from inside the vehicle or near the rear wheels
- Go to the top of bed to take the winch.
- Go to the front of the car you want to tow to attach the winch.
- Go near the rear wheel of tow truck to roll up the winch
- If you need to detach the winch, go back to the front of car and take the winch. You can store it by go back to the top of bed.
- You can also store the winch directly from prompts near the rear wheels.
- Once the car on the bed. You have the possibility to attach the car on it. Go near the rear wheel of the truck to have this option. It will automatically store the winch if you didn't do it before.
- Move the bed up from inside the vehicle or near the rear wheels.
The configuration file is config.lua in the resource root. Do not edit this file directly as your changes may be lost during updates. Instead, use overwriteConfig.lua to store your customizations.
config.lua- Default configuration maintained by developers. Do not modify this file.overwriteConfig.lua- This is where you place only the values you want to override.
How to customize the configuration โ
- Open
/overwriteConfig.lua - Find the value you want to change in
config.lua(e.g.,Config.language) - Copy only that line into
overwriteConfig.lua - Edit the copied value to your liking
The script loads config.lua first, then overwriteConfig.lua overwrites only the values you redefine. This ensures your customizations are preserved when updating the script.
4. Add a new vehicle โ
1. Preparation โ
- Spawn the truck you want to configure (example:
lgc9flatbed). - Open the script's
config.luafile.
2. Enable Debug Mode โ
- Edit
Config.debug = trueinto theconfig.luafile. - This will show useful markers and values in-game to help with setup.
3. Add Your Vehicle to the script's configuration โ
- Add the default value into the
config.luafile
Trucks[`lgc9`] = {
winchBone = "misc_b", -- The bone where the winch is attached
winchOffset = vector3(0.3, 0.0, 0.3), -- <optional> The origin of the winch
attachVehBone = "misc_a", -- The bone where the vehicle is attached
attachOffset = vector4(0.0, 1.5, 0.0, 0.0), -- <optional> The origin of the attachment
}4. Set the bones values โ
- Restart the script with the server command:
ensure jo_towtruck. - In-game, you can see the vehicle's bones by aiming at it with right-click while standing outside.
- Define the
winchBone: Use a bone near the winch reel. - Define the
attachVehBone: The bone must be attached to the bed and follow its movement.
5. Configure winch and Attachment Points โ
- Restart the script with the server command:
ensure jo_towtruck. - Exit the truck โ debug markers will show up.
- Use the
winchOffsetto fine-tune the position of the winch. - Use the
attachOffsetto fine-tune the position of the attachment โ it should align with the surface of the bed.
6. Test Your Setup โ
To tow a vehicle:
- Spawn the truck.
- Go near the rear wheels.
- Press
โto lower the bed. - Go to the winch reel location.
- Press
Eto take the winch. - Go near the vehicle you want tow.
- Press
Eto attach the winch. - Go near the truck's rear wheels.
- Press
โto wind the winch and release when the vehicle is on the truck. - Press
Altto attach the vehicle to the bed. - Press
โto upper the bed. - Done, the vehicle is towed!
To untow a vehicle:
- Go near the rear wheels.
- Press
โto lower the bed. - Press
Eto attach the winch. - Go near the vehicle.
- Press
Eto attach the winch. - Go near the truck's rear wheels.
- Press
Gto unwind the winch and releaseGwhen the vehicle is fully off. - Go near the vehicle.
- Press
Eto take the winch. - Go to the winch reel location.
- Press
Eto store the winch. - Go inside the vehicle.
- Press
Jto upper the bed. - Done, the vehicle is untowed!
7. Optional parameters โ
The bed movement is too slow or too fast.
You can increase/decrease the bed movement by adding the bedSpeed value into your truck configuration.
Trucks[`flatbed3`].bedSpeed = 2.0The bed doesn't lower enough or lower too much.
You can edit the maximum of bed movement by adding the maxBedPosition value into your truck configuration.
Trucks[`flatbed3`].maxBedPosition = 6.0My truck goes in the sky when I lower the bed.
You can have to reduce the maximum of bed movement by editing/adding the maxBedPosition value into your truck configuration.
Trucks[`flatbed3`].maxBedPosition = 6.0The bed move in the cab or doesn't raise enough.
You can edit the minimum of bed position by adding the minBedPosition value into your truck configuration.
Trucks[`flatbed3`].minBedPosition = 0.025The winch doesn't wind enough or wind too much.
You can edit the minimum of winch length by adding the minWinchLength value into your truck configuration.
Trucks[`flatbed3`].minWinchLength = 0.65My truck has a wheel lift that I have to move down
You can use the wheelLift key to move the wheel lift up/down when the bed move.
Trucks[`flatbed3`].wheelLift = { 5 } -- list of doors index8. Finalize โ
- Once everything is working think to Disable the debug mode by setting
Config.debug = false.
5. For developer โ
Restrict the tow truck script to a specific job โ
You can turn off the script for a specific player by using this client event
TriggerClientEvent('jo_towtruck:canUseTheScript', source, false)You can turn on the script again with the same client event
TriggerClientEvent('jo_towtruck:canUseTheScript', source, true)Job lock on Esx
Inside the config.lua:
if not IsDuplicityVersion() then
-- Set the valid jobs
local validJobs = {"police", "mechanical"}
-- Disable the script for everyone
TriggerEvent('jo_towtruck:canUseTheScript', false)
-- Listening of the job changer
RegisterNetEvent('esx:setJob', function(job,lastJob)
for i = 1, #validJobs do
if job.name == validJobs[i] then
--Enable the script
TriggerEvent('jo_towtruck:canUseTheScript', true)
return
end
end
TriggerEvent('jo_towtruck:canUseTheScript', false)
end)
endJob lock on QBCore
Inside the config.lua:
if not IsDuplicityVersion() then
-- Set the valid jobs
local validJobs = {"police", "mechanical"}
-- Disable the script for everyone
TriggerEvent('jo_towtruck:canUseTheScript', false)
-- Listening of the job changer
RegisterNetEvent('QBCore:Client:OnJobUpdate', function(job)
for i = 1, #validJobs do
if job.name == validJobs[i] then
--Enable the script
TriggerEvent('jo_towtruck:canUseTheScript', true)
return
end
end
TriggerEvent('jo_towtruck:canUseTheScript', false)
end)
end6. Some Tow trucks configuration โ
WARNING
This list is not exhaustive. In most of case, if the bed is animated = the truck is compatible with this script
independent389 โ
Trucks[`independent389`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
minBedPosition = 0.03,
maxBedPosition = 16.0,
wheelLift = { 5 },
}Maoam Fahrzeug Design โ
Trucks[`106towmfd1`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
maxBedPosition = 11.25,
wheelLift = { 5 }
}
Trucks[`106towmfd2`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
maxBedPosition = 11.,
wheelLift = { 5 }
}
Trucks[`106towmfd3`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
maxBedPosition = 11.5,
wheelLift = { 5 }
}
Trucks[`112towmfd2`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
maxBedPosition = 11.25,
wheelLift = { 5 }
}
Trucks[`112towmfd3`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
maxBedPosition = 12.25,
wheelLift = { 5 }
}
Trucks[`112towmfd4`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
minBedPosition = 0.035,
maxBedPosition = 12.5,
wheelLift = { 5 }
}
Trucks[`112towmfd5`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
maxBedPosition = 12.5,
wheelLift = { 5 }
}
Trucks[`112towmfd6`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
maxBedPosition = 12.25,
wheelLift = { 5 }
}
Trucks[`389towmfd2`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
maxBedPosition = 11.75,
wheelLift = { 5 }
}
Trucks[`389towmfd3`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
maxBedPosition = 12.5,
minBedPosition = 0.0001,
wheelLift = { 5 },
}
Trucks[`389towmfd6`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
minBedPosition = 0.04,
maxBedPosition = 11.75,
wheelLift = { 5 }
}
Trucks[`440towmfd2`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
maxBedPosition = 15.0,
wheelLift = { 5 }
}
Trucks[`440towmfd4`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
minBedPosition = 0.03,
maxBedPosition = 15.5,
wheelLift = { 5 }
}
Trucks[`cortowmfd4`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
minBedPosition = 0.03,
maxBedPosition = 11.5,
wheelLift = { 5 }
}
Trucks[`biftowmfd2`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
maxBedPosition = 11.75,
wheelLift = { 5 }
}20ramrbc โ
Trucks[`20ramrbc`] = {
winchBone = "attach_male",
winchOffset = vector3(0.0, 0.0, 0.0),
attachVehBone = "misc_z",
attachOffset = vector4(0.0, 0.75, 0.0, 0.0),
minBedPosition = 0.015,
maxBedPosition = 13.0,
minWinchLength = 1.0
}Lenand's shop โ
Trucks[`actschlepu1`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
attachOffset = vector4(0.0, 0.0, -0.5, 0.0),
maxBedPosition = 10.0
}
Trucks[`actschlepu2`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
attachOffset = vector4(0.0, 0.0, -0.5, 0.0),
maxBedPosition = 10.0
}
Trucks[`actschlepp`] = {
winchBone = "attach_male",
attachVehBone = "misc_z",
attachOffset = vector4(0.0, 0.0, -0.5, 0.0),
maxBedPosition = 10.0
}