Config

You can change individual values in config.lua

Debug

If you see anything wrong and you would like to know more, for example to show in support ticket, you can set Config.Debug = true to see more debug info in client (F8) console ingame, or server console.

DeleteAllCommandName

This command could be used by player with group listed in Config.AllowedGroups and it deletes all existing camping props/objects placed on server.

AllowedDistance

Biggest distance allowed for each item type to be interacted with by player. All item types should be filled here.

Config.AllowedDistance = {
    [Types.TENT] = 12.0,
    [Types.CHAIR] = 3.0,
    [Types.FIREPLACE] = 3.0,
    [Types.GAZEBO] = 10.0,
    [Types.BEER] = 3.0,
}

HeadingSpeed

Defines how fast should be changing of object heading during placement.

Controls

Defines all controls for object placement

ChanceToBrokeFlint

When light item is used there is a change that the item breaks. If you want the item to be unbreakable set the value to 0.

LightItems

Defines all items that could be used for lighting up the fireplace. All items uses ChanceToBrokeFlint.

Heal in Tent

Defines if players will be healed while in tent.

Config.HealingInterval - defines how often is player healed (in seconds) Config.HealthPerRestore - defines how much % from max health should be player healed in each interval (1 - 100%)

Destroyable objects

Config.AllowDestroyableObjects - Defines if objects could be destroyed with gunshots. When set to false DestroyChance and DestroyableObjects are both ignored.

Config.DestroyChance - defines chance if object should be destroyed or not (0 - always fail, 100 - always success, 0-100)

Config.DestroyableObjects - defines objects which could be destroyed with gunshots.

beerContainedOptions

Defines which item should be added to player when beerkeg is cleared.

PlaceableObjects

List of all camping objects which could be used.

FIREPLACE

TENT

CHAIR

GAZEBO

BEER

ObjectOffset

You could define offset for each camping object. If object is not placed correctly on the floor during placement you could add offset to it here.

FireCraftable

Defines which items could be cooked on fireplace. You could choose length of cooking and result for each item.

You could also add additional required items with specific amounts for cooking. Amount is 1 by default if not specified

Last updated

Was this helpful?