Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
7,679
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.39 KB | None | 0 0
  1. # This is the configuration file for MusicBot. You need to edit this file
  2. # to setup the bot. Do not edit this file using Notepad as it ruins the
  3. # formatting - use Notepad++ or a code editor like Visual Studio Code.
  4.  
  5. # For help, see: https://just-some-bots.github.io/MusicBot/
  6.  
  7. # To get IDs, enable Developer Mode (Options -> Settings -> Appearance)
  8. # on Discord and then right-click the person/channel you want to get the
  9. # channel of, then click 'Copy ID'. You can also use the 'listids' command.
  10. # (http://i.imgur.com/GhKpBMQ.gif)
  11.  
  12.  
  13. ; HOW TO GET VARIOUS IDS:
  14. ; http://i.imgur.com/GhKpBMQ.gif
  15. ; Enable developer mode (options, settings, appearance), right click the object you want the id of, and click Copy ID
  16. ; This works for basically everything you would want the id of (channels and users). For roles you have to right click a role mention.
  17.  
  18.  
  19. [Credentials]
  20. # This is your Discord bot account token.
  21. # Find your bot's token here: https://discordapp.com/developers/applications/me/
  22. # Create a new application, with no redirect URI or boxes ticked.
  23. # Then click 'Create Bot User' on the application page and copy the token here.
  24. Token = bot_token
  25.  
  26. # The bot supports converting Spotify links and URIs to YouTube videos and
  27. # playing them. To enable this feature, please fill in these two options with valid
  28. # details, following these instructions: https://just-some-bots.github.io/MusicBot/using/spotify/
  29. Spotify_ClientID =
  30. Spotify_ClientSecret =
  31.  
  32. [Permissions]
  33. # This option determines which user has full permissions and control of the bot.
  34. # You can only set one owner, but you can use permissions.ini to give other
  35. # users access to more commands.
  36. # Setting this option to 'auto' will set the owner of the bot to the person who
  37. # created the bot application, which is usually what you want. Else, change it
  38. # to another user's ID.
  39. OwnerID = auto
  40.  
  41. # This option determines which users have access to developer-only commands.
  42. # Developer only commands are very dangerous and may break your bot if used
  43. # incorrectly, so it's highly recommended that you ignore this option unless you
  44. # are familiar with Python code.
  45. DevIDs =
  46.  
  47. [Chat]
  48. # Determines the prefix that must be used before commands in the Discord chat.
  49. # e.g if you set this to *, the play command would be triggered using *play.
  50. CommandPrefix = !
  51.  
  52. # Restricts the bot to only listening to certain text channels. To use this, add
  53. # the IDs of the text channels you would like the bot to listen to, seperated by
  54. # a space.
  55. BindToChannels =
  56.  
  57. # Changes the behavior of BindToChannels. Normally any messages sent to a channel not in
  58. # BindToChannels will be ignored. This option allows servers that do not have any bound
  59. # channels while other server have some defined to still use commands in any channel with
  60. # the Music Bot. Setting this to yes when there are no bound channels does nothing.
  61. AllowUnboundServers = no
  62.  
  63. # Allows the bot to automatically join servers on startup. To use this, add the IDs
  64. # of the voice channels you would like the bot to join on startup, seperated by a
  65. # space. Each server can have one channel. If this option and AutoSummon are
  66. # enabled, this option will take priority.
  67. AutojoinChannels =
  68.  
  69. [MusicBot]
  70. # The volume of the bot, between 0.01 and 1.0.
  71. DefaultVolume = 0.25
  72.  
  73. # Only allows whitelisted users (in whitelist.txt) to use commands.
  74. # WARNING: This option has been deprecated and will be removed in a future version
  75. # of the bot. Use permissions.ini instead.
  76. WhiteListCheck = no
  77.  
  78. # The number of people voting to skip in order for a song to be skipped successfully,
  79. # whichever value is lower will be used. Ratio refers to the percentage of undefeaned, non-
  80. # owner users in the channel.
  81. SkipsRequired = 4
  82. SkipRatio = 0.5
  83.  
  84. # Determines if downloaded videos will be saved to the audio_cache folder. If this is yes,
  85. # they will not be redownloaded if found in the folder and queued again. Else, videos will
  86. # be downloaded to the folder temporarily to play, then deleted after to avoid filling space.
  87. SaveVideos = yes
  88.  
  89. # Mentions the user who queued a song when it starts to play.
  90. NowPlayingMentions = no
  91.  
  92. # Automatically joins the owner's voice channel on startup, if possible. The bot must be on
  93. # the same server and have permission to join the channel.
  94. AutoSummon = yes
  95.  
  96. # Start playing songs from the autoplaylist.txt file after joining a channel. This does not
  97. # stop users from queueing songs, you can do that by restricting command access in permissions.ini.
  98. UseAutoPlaylist = yes
  99.  
  100. # Sets if the autoplaylist should play through songs in a random order when enabled. If no,
  101. # songs will be played in a sequential order instead.
  102. AutoPlaylistRandom = yes
  103.  
  104. # Pause the music when nobody is in a voice channel, until someone joins again.
  105. AutoPause = yes
  106.  
  107. # Automatically cleanup the bot's messages after a small period of time.
  108. DeleteMessages = yes
  109.  
  110. # If this and DeleteMessages is enabled, the bot will also try to delete messages from other
  111. # users that called commands. The bot requires the 'Manage Messages' permission for this.
  112. DeleteInvoking = no
  113.  
  114. # Regularly saves the queue to the disk. If the bot is then shut down, the queue will
  115. # resume from where it left off.
  116. PersistentQueue = yes
  117.  
  118. # Determines what messages are logged to the console. The default level is INFO, which is
  119. # everything an average user would need. Other levels include CRITICAL, ERROR, WARNING,
  120. # DEBUG, VOICEDEBUG, FFMPEG, NOISY, and EVERYTHING. You should only change this if you
  121. # are debugging, or you want the bot to have a quieter console output.
  122. DebugLevel = INFO
  123.  
  124. # Specify a custom message to use as the bot's status. If left empty, the bot
  125. # will display dynamic info about music currently being played in its status instead.
  126. StatusMessage =
  127.  
  128. # Write what the bot is currently playing to the data/<server id>/current.txt FILE.
  129. # This can then be used with OBS and anything else that takes a dynamic input.
  130. WriteCurrentSong = no
  131.  
  132. # Allows the person who queued a song to skip their OWN songs instantly, similar to the
  133. # functionality that owners have where they can skip every song instantly.
  134. AllowAuthorSkip = yes
  135.  
  136. # Enables experimental equalization code. This will cause all songs to sound similar in
  137. # volume at the cost of higher processing consumption when the song is initially being played.
  138. UseExperimentalEqualization = no
  139.  
  140. # Enables the use of embeds throughout the bot. These are messages that are formatted to
  141. # look cleaner, however they don't appear to users who have link previews disabled in their
  142. # Discord settings.
  143. UseEmbeds = yes
  144.  
  145. # The amount of items to show when using the queue command.
  146. QueueLength = 10
  147.  
  148. # Remove songs from the autoplaylist if an error occurred while trying to play them.
  149. # If enabled, unplayable songs will be moved to another file and out of the autoplaylist.
  150. # You may want to disable this if you have internet issues or frequent issues playing songs.
  151. RemoveFromAPOnError = yes
  152.  
  153. # Whether to show the configuration for the bot in the console when it launches.
  154. ShowConfigOnLaunch = no
  155.  
  156. # Whether to use leagcy skip behaviour. This will change it so that those with permission
  157. # do not need to use "skip f" to force-skip a song, they will instead force-skip by default.
  158. LegacySkip = no
  159.  
  160. # Leave servers if the owner is not found in them.
  161. LeaveServersWithoutOwner = no
  162.  
  163. [Files]
  164. # Path to your i18n file. Do not set this if you do not know what it does.
  165. i18nFile =
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement