27 lines
		
	
	
		
			No EOL
		
	
	
		
			802 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			No EOL
		
	
	
		
			802 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,
 | 
						|
} |