-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathconfig.lua
More file actions
27 lines (20 loc) · 802 Bytes
/
config.lua
File metadata and controls
27 lines (20 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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,
}