Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.25 KB | None | 0 0
  1. ; DON'T OPEN THIS FILE WITH NOTEPAD. If you don't have a preferred text editor, use notepad++ or any other modern text editor.
  2. ;
  3. ; If you edit this file, Save-As permissions.ini
  4. ;
  5. ;
  6. ; Basics:
  7. ; - Semicolons are comment characters, any line that starts with one is ignored.
  8. ; - Sections headers are permissions groups, they're the lines that have a word in [Brackets]. You can add more for more permissions groups.
  9. ; - Options with a semicolon before them will be ignored.
  10. ; - Add whatever permissions you want, but always have at least one.
  11. ; - Never have an options without a value, i.e. "CommandBlacklist = "
  12. ; - [Default] is a special section. Any user that doesn't get assigned to a group via role or UserList gets assigned to this group.
  13. ;
  14. ;
  15. ; Option info:
  16. ;
  17. ; [Groupname]
  18. ; This is the section header. The word is the name of the group, just name it something appropriate for its permissions.
  19. ;
  20. ; CommandWhitelist = command1 command2
  21. ; List of commands users are allowed to use, separated by spaces. Don't include the prefix, i.e. ! Overrides CommandBlacklist if set.
  22. ;
  23. ; CommandBlacklist = command1 command2
  24. ; List if commands users are not allowed to use. You don't need to use both
  25. ; whitelist and blacklist since blacklist gets overridden. Just pick one.
  26. ;
  27. ; IgnoreNonVoice = command1 command2
  28. ; List of commands that the user is required to be in the same voice channel as the bot to use.
  29. ; For example, if you don't want the user to be able to voteskip songs while not in the voice channel, add skip to this option.
  30. ;
  31. ; GrantToRoles = 111222333444555 999888777000111
  32. ; List of ids to automatically grant this group to. To get the id of a role, use the listids command.
  33. ;
  34. ; UserList = 21343341324 321432413214321
  35. ; List of user ids to grant this group to. This option overrides the role granted by the GrantToRoles option.
  36. ;
  37. ; MaxSongLength = 600
  38. ; Maximum length of a song in seconds. Note: This won't always work if the song data doesn't have duration listed.
  39. ; This doesn't happen often, but youtube, soundcloud, etc work fine though. This will be fixed in a future update.
  40. ; A value of 0 means unlimited.
  41. ;
  42. ; MaxSongs = 5
  43. ; Maximum number of songs a user is allowed to queue. A value of 0 means unlimited.
  44. ;
  45. ; MaxPlaylistLength = 10
  46. ; Maximum number of songs a playlist is allowed to have to be queued. A value of 0 means unlimited.
  47. ;
  48. ; AllowPlaylists = yes
  49. ; Whether or not the user is allowed to queue entire playlists.
  50. ;
  51. ; InstaSkip = no
  52. ; Allows the user to skip a song without having to vote, like the owner.
  53. ;
  54. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  55.  
  56.  
  57. ; I've set some example groups, these should be fine. Just add your roles or users and you should be good to go.
  58.  
  59. ;;;;;;;;;;;;;;;;;;;
  60. ;
  61. ; AND HEY.
  62. ; Before you ask any dumb "how do I do this" questions in the help server, you should probably read that big comment I put time
  63. ; into writing for this exact purpose. It tells you how to use every option. Your question is probably answered there.
  64. ;
  65. ;;;;;;;;;;;;;;;;;;;
  66.  
  67. ; This is the fallback group for any users that don't get assigned to another group. Don't remove/rename this group.
  68. [Default]
  69. CommandWhitelist = play perms queue np skip search help
  70. ; CommandBlacklist =
  71. IgnoreNonVoice = play skip search
  72. ; GrantToRoles =
  73. ; UserList =
  74. MaxSongLength = 1200
  75. MaxSongs = 10
  76. AllowPlaylists = no
  77. ; MaxPlaylistLength = 7
  78. InstaSkip = no
  79.  
  80. ; This group has full permissions.
  81. [Donor]
  82. CommandWhitelist = play perms queue np skip search help pldump
  83. ; CommandBlacklist =
  84. IgnoreNonVoice = play skip search
  85. GrantToRoles = 195304699333705728
  86. ; UserList =
  87. MaxSongLength = 2400
  88. MaxSongs = 0
  89. AllowPlaylists = yes
  90. MaxPlaylistLength = 10
  91. InstaSkip = no
  92.  
  93.  
  94. ; This group can't use the blacklist and listids commands, but otherwise has full permissions.
  95. [Staff]
  96. CommandWhitelist = play perms queue np skip search help pldump clear pause resume clean
  97. ; CommandBlacklist =
  98. IgnoreNonVoice = play skip search
  99. GrantToRoles = 285064319379570690
  100. ; UserList =
  101. MaxSongLength = 3000
  102. MaxSongs = 0
  103. AllowPlaylists = yes
  104. MaxPlaylistLength = 10
  105. InstaSkip = yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement