20 lines
570 B
Lua
20 lines
570 B
Lua
|
|
--[[
|
|
Nuclear bomb server restarts
|
|
By Silence & Samuel_
|
|
|
|
InteractionSound by Scott
|
|
Allows sounds to be played on single clients, all clients, or all clients within
|
|
a specific range from the entity to which the sound has been created.
|
|
(Used for all the sound effects)
|
|
|
|
--]]
|
|
|
|
Config = {
|
|
-- This is the volume output... from 1.0(max) to 0.0(min)
|
|
standardVolumeOutput = 0.5,
|
|
-- By default this already has ACE permissions writting into it as "group.admin" (you may need to change the group depending on your server's needs.)
|
|
NukeAceGroup = "nuke.admin",
|
|
|
|
|
|
} |