DyScript
  • Welcome
  • Official Store
  • Discord
  • Assets
    • ds-arcade
      • Installation
      • FAQ
      • Configuration Files
      • Mapping
    • ds-soundbuildings
      • Installation
      • FAQ
      • Configuration Files
    • ds-carkeys
      • Installation
      • FAQ
      • Configuration Files
      • Developer API
        • Client Exports
        • Serveur Exports
      • Commands
    • ds-notifications
      • Installation
      • Show code
      • FAQ
      • Developer API
        • Client Exports
        • Serveur Exports
    • ds-pedoffline
      • Installation
      • FAQ
      • Configuration Files
      • SQL
    • ds-freecam
      • Installation
      • FAQ
      • Configuration Files
Powered by GitBook
On this page
  1. Assets
  2. ds-soundbuildings

Configuration Files

config.lua

-- ______                     _       _                        
-- |  _  \                   (_)     | |                       
-- | | | |_   _ ___  ___ _ __ _ _ __ | |_   ___ ___  _ __ ___  
-- | | | | | | / __|/ __| '__| | '_ \| __| / __/ _ \| '_ ` _ \ 
-- | |/ /| |_| \__ \ (__| |  | | |_) | |_ | (_| (_) | | | | | |
-- |___/  \__, |___/\___|_|  |_| .__/ \__(_)___\___/|_| |_| |_|
--         __/ |               | |                             
--        |___/                |_|                             
-- © Copyright 2024 DyScript.com tous droits réservés

Config_son_batiment = {}
Config_son_batiment.Locale = "en" -- language available (en) (fr)
Config_son_batiment.config = {
    [1] = {
        label = "Arcade Bar", -- Set a name
        position = vector3(-1287.5772705078, -300.82528686523, 36.050838470459), -- The position of the speaker
        bornemusique = vector3(-1288.5484619141, -293.19680786133, 36.050815582275), -- Music management terminal
        codeborne = "musiqueac", -- code of the terminal to be modified must be unique
        lien = "https://funados.ice.infomaniak.ch/funados.mp3", -- music link be youtube be .mp3
        volume = "0.04", -- Default volume
        distance = "20", -- Sound diffusion distance
        loop = "true", -- Loop the sound
        statutradio = true, -- Turn music on or off
        interaction = false, -- True = uses ds_interaction, false = notification.help
    },
    [2] = {
        label = "Cyber Bar", -- Set a name
        position = vector3(338.26553344727, -916.14477539062, 29.251453399658), -- The position of the speaker
        bornemusique = vector3(334.29992675781, -911.93005371094, 29.256303787231), -- Music management terminal
        codeborne = "musiquecyb", -- code of the terminal to be modified must be unique
        lien = "https://funados.ice.infomaniak.ch/funados.mp3", -- music link be youtube be .mp3
        volume = "0.04", -- Default volume
        distance = "30", -- Sound diffusion distance
        loop = "true", -- Loop the sound
        statutradio = true, -- Turn music on or off
        interaction = false, -- True = uses ds_interaction, false = notification.help
    },
}

Last updated 11 days ago