-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.lua
More file actions
22 lines (22 loc) · 1.4 KB
/
Copy pathconfig.lua
File metadata and controls
22 lines (22 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--------------------------------------------------------------------------------
----------------------------------- DevDokus -----------------------------------
--------------------------------------------------------------------------------
config = {}
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- (false) only users on the allow list are allowed to use the command.
-- (true) all players on your server will be able to use the command.
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
config.allowAll = false;
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- These are the users that are allowed to use the command. To get the users
-- SteamID, let the user type '/steamid' in the chat.
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
config.allowList = {
['steam:1100001042b8cd7'] = true, -- DevDokus
}
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------