1
0
Fork 0
forked from Simnation/Main
Main/resources/[tools]/nordi_dj/config.lua

71 lines
1.8 KiB
Lua
Raw Normal View History

2025-08-03 16:51:12 +02:00
Config = {}
-- Allgemeine Einstellungen
2025-08-03 17:36:16 +02:00
Config.UseJobRestriction = true -- true = nur bestimmte Jobs können das Script nutzen
2025-08-03 16:51:12 +02:00
Config.AllowedJobs = {
'dj',
'nightclub',
'admin'
}
2025-08-03 17:36:16 +02:00
Config.OpenMenuKey = 'F7' -- Taste zum Öffnen des Menüs
2025-08-03 16:51:12 +02:00
Config.MaxVolume = 100
Config.DefaultVolume = 50
-- DJ Booth Locations
Config.DJBooths = {
2025-08-03 17:36:16 +02:00
["Vanilla Unicorn"] = {
2025-08-03 16:51:12 +02:00
coords = vector3(120.13, -1281.72, 29.48),
2025-08-03 17:36:16 +02:00
range = 30.0,
maxRange = 50.0
2025-08-03 16:51:12 +02:00
},
2025-08-03 17:36:16 +02:00
["Bahama Mamas"] = {
2025-08-03 16:51:12 +02:00
coords = vector3(-1387.08, -618.52, 30.82),
2025-08-03 17:36:16 +02:00
range = 25.0,
maxRange = 45.0
2025-08-03 16:51:12 +02:00
},
2025-08-03 17:36:16 +02:00
["Diamond Casino"] = {
2025-08-03 16:51:12 +02:00
coords = vector3(1549.78, 252.44, -46.01),
2025-08-03 17:36:16 +02:00
range = 35.0,
maxRange = 60.0
},
["Galaxy Nightclub"] = {
coords = vector3(-1605.78, -3012.47, -77.79),
range = 40.0,
maxRange = 60.0
},
["Tequi-la-la"] = {
coords = vector3(-564.14, 275.35, 83.02),
range = 25.0,
maxRange = 40.0
2025-08-03 16:51:12 +02:00
}
}
2025-08-03 17:36:16 +02:00
-- Standard Playlists
2025-08-03 16:51:12 +02:00
Config.DefaultPlaylists = {
{
name = "Party Hits",
songs = {
{title = "Daft Punk - One More Time", url = "https://www.youtube.com/watch?v=FGBhQbmPwH8"},
2025-08-03 17:36:16 +02:00
{title = "Avicii - Levels", url = "https://www.youtube.com/watch?v=_ovdm2yX4MA"}
2025-08-03 16:51:12 +02:00
}
},
{
2025-08-03 17:36:16 +02:00
name = "Chill Vibes",
2025-08-03 16:51:12 +02:00
songs = {
{title = "Kygo - Firestone", url = "https://www.youtube.com/watch?v=9Sc-ir2UwGU"},
2025-08-03 17:36:16 +02:00
{title = "Kygo - Stole The Show", url = "https://www.youtube.com/watch?v=BgfcToAjfdc"}
2025-08-03 16:51:12 +02:00
}
}
}
2025-08-03 17:36:16 +02:00
-- Distanz-basierte Lautstärke
Config.DistanceVolume = {
enabled = true,
updateInterval = 1000, -- Wie oft die Lautstärke aktualisiert wird (ms)
fadeTime = 1000 -- Wie lange der Fade-Effekt dauert (ms)
}
-- Debug-Modus
Config.Debug = false