ed
This commit is contained in:
parent
8054759c73
commit
ffaf33c966
7 changed files with 338 additions and 12 deletions
29
resources/[Developer]/[Nordi]/nordi_kayaktrailer/config.lua
Normal file
29
resources/[Developer]/[Nordi]/nordi_kayaktrailer/config.lua
Normal file
|
@ -0,0 +1,29 @@
|
|||
Config = {}
|
||||
|
||||
-- Trailer configuration
|
||||
Config.TrailerModel = 'boattrailer' -- Default trailer model, can be changed to your custom model
|
||||
Config.MaxKayaks = 6 -- Maximum number of kayaks (3 per side)
|
||||
|
||||
-- Kayak models that can be loaded onto the trailer
|
||||
Config.KayakModels = {
|
||||
'kayak01', -- Replace with your actual kayak model names
|
||||
'kayak02',
|
||||
'kayak03'
|
||||
}
|
||||
|
||||
-- Positions for kayaks on the trailer rack (relative to trailer)
|
||||
-- Arranged as 3 levels on each side of the trailer
|
||||
Config.KayakPositions = {
|
||||
-- Left side (3 kayaks stacked vertically)
|
||||
{x = -0.5, y = 0.0, z = 0.6, heading = 90.0}, -- Bottom level
|
||||
{x = -0.5, y = 0.0, z = 1.2, heading = 90.0}, -- Middle level
|
||||
{x = -0.5, y = 0.0, z = 1.8, heading = 90.0}, -- Top level
|
||||
|
||||
-- Right side (3 kayaks stacked vertically)
|
||||
{x = 0.5, y = 0.0, z = 0.6, heading = 270.0}, -- Bottom level
|
||||
{x = 0.5, y = 0.0, z = 1.2, heading = 270.0}, -- Middle level
|
||||
{x = 0.5, y = 0.0, z = 1.8, heading = 270.0} -- Top level
|
||||
}
|
||||
|
||||
-- Range for qb-target interaction
|
||||
Config.InteractionRange = 3.0
|
Loading…
Add table
Add a link
Reference in a new issue