Skip to main content

🛢️Camper

Create your own mobile drug lab inside a camper van, customize it, and produce various illicit substances.

Configuration

General Settings

Set your vehicle which is required to process drugs

settings.vehicleModel = "journey",

Set the coordinates in your camper

config.lua

settings.innerCamper = {
coords = vector3(1973.208740, 3816.079102, 33.424927),
heading = 22.677164,
menuCoords = vector3(1975.490112, 3818.386719, 33.424927),
storageCoords = vector3(1973.1143, 3819.3801, 33.4288),
},

coords

Storage size

note

This config size can be changed by using upgrades.

settings.storageSize = 100

storage_items

Break In Settings

warning

if you don't want the police to be able to break into the camper, for example, you have to put it in "blacklistedJobs".

config.breakInSettings = {
breakInItem = "fixtool",
blacklistedJobs = {}, -- e.g. {"unemployed", "mechanic"}
policeAmount = true, -- if true, player can see the amount of online police officers
breakInTime = 10, -- in s
breakInAlarm = {
beginn = true, -- if true, the owner will be alarmed when the break-in starts
finnish = true, -- if true, the owner will be alarmed when the break-in is finished
},
}

Break In Alarm

Feature to alarm the owner when someone tries to break in.

tip

If you want to encourage more roleplay situations, you can set the breakInAlarm.beginn to true. This will alarm the owner when someone tries to break in and not just when the player has already broken in. The owner can react and defend his camper.

  breakInAlarm = {
beginn = true, -- if true, the owner will be alarmed when the break-in starts
finnish = false, -- if true, the owner will be alarmed when the break-in is finished
},