This repository has been archived on 2025-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
2025-02-02 10:40:42 +01:00

27 lines
776 B
Lua

config = {}
-- How much ofter the player position is updated ?
config.RefreshTime = 300
-- default sound format for interact
config.interact_sound_file = "ogg"
-- is emulator enabled ?
config.interact_sound_enable = false
-- how much close player has to be to the sound before starting updating position ?
config.distanceBeforeUpdatingPos = 40
-- Message list
config.Messages = {
["streamer_on"] = "Streamer mode is on. From now you will not hear any music/sound.",
["streamer_off"] = "Streamer mode is off. From now you will be able to listen to music that players might play.",
["no_permission"] = "You cant use this command, you dont have permissions for it!",
}
-- Addon list
-- True/False enabled/disabled
config.AddonList = {
crewPhone = false,
}