14 lines
949 B
Lua
14 lines
949 B
Lua
-- Decoration / Distances and Access Rules [EDIT]
|
|
-- [INFO] Controls object spawn radius, maximum decoration distance, and
|
|
-- who is allowed to decorate properties.
|
|
|
|
Config.SpawnDistance = 30.0 -- [EDIT] Object spawn radius in meters.
|
|
Config.MaximumDistanceForDecorate = 350.0 -- [EDIT] Max distance allowed for decoration; set to false to disable the limit.
|
|
Config.DecorateOnlyAccessForOwner = true -- [EDIT] Only the property owner can decorate (recommended: true).
|
|
Config.HideRadarInDecorate = true -- [EDIT] Hides the minimap while in decoration mode.
|
|
|
|
-- Dynamic Doors [EDIT]
|
|
-- [INFO] Enables the creation and management of dynamic doors from the editor.
|
|
-- [ADV] Requires in server.cfg: setr game_enableDynamicDoorCreation "true"
|
|
Config.DynamicDoors = true -- [EDIT] Enable dynamic doors?
|