forked from kibook/pmms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
permissions.cfg
55 lines (36 loc) · 1.75 KB
/
permissions.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Allow these players to use everything
add_ace group.admin pmms allow
# Allow these players to do basic interactions with nearby, unlocked media players
add_ace builtin.everyone pmms.interact allow
# Allow these players to interact with any media player entities
add_ace builtin.everyone pmms.anyEntity allow
# Allow these players to play some custom URLs, not just preset songs. Only URLs that match a pattern in Config.allowedUrls will be allowed.
#add_ace builtin.everyone pmms.customUrl allow
# Allow these players to play any custom URL
#add_ace builtin.everyone pmms.anyUrl allow
# Allow these players to fully control all media players
#add_ace builtin.everyone pmms.manage allow
## Commands
# If you modify the command prefix and separator in config.lua, you must also update the command names below!
# Open the media player control panel
add_ace builtin.everyone command.pmms allow
# Play something on the closest media player
add_ace builtin.everyone command.pmms_play allow
# Pause the closest media player
add_ace builtin.everyone command.pmms_pause allow
# Stop the closest media player
add_ace builtin.everyone command.pmms_stop allow
# Show/hide the status of the closest media player
add_ace builtin.everyone command.pmms_status allow
# List presets
add_ace builtin.everyone command.pmms_presets allow
# Set personal base volume
add_ace builtin.everyone command.pmms_vol allow
# Allow players to reset their client data, which can sometimes fix issues
add_ace builtin.everyone command.pmms_fix allow
# Advanced media player control
add_ace group.admin command.pmms_ctl allow
# Add or modify media player model presets
add_ace group.admin command.pmms_add allow
# Refresh permissions for all clients
add_ace group.admin command.pmms_refresh_perms allow