Advertisement
Guest User

Untitled

a guest
Apr 5th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 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 example_options.ini, Save-As options.ini
  4. ;
  5. ; This is the main configuration file for MusicBot. You will need to edit this file when you setup the bot.
  6. ; The bot must be restarted for edits to take effect, but a reload command will be created in the future.
  7. ; Currently the bot does not overwrite any settings, but this may change in a future update.
  8.  
  9. [Credentials]
  10. ; The bot needs its own account to run on (not yours)
  11. ; Username is the email you registered the bot's discord account with
  12. Username =
  13. Password =
  14.  
  15. [Permissions]
  16. ; This need to be your id, not the bot's id. The bot does not own the bot. You do.
  17. ; If you don't know how to get this, join the help server (link in the readme) *with the owner's account* and type !id in chat
  18. OwnerID = 133145144646959104
  19.  
  20. [Chat]
  21. ; Change this if you don't want commands to trigger another bot
  22. ; Ex:
  23. ; CommandPrefix = *
  24. ; This means you use *play, etc. This explanation exists because it seems no one knows what "prefix" means.
  25. CommandPrefix = !
  26.  
  27. ; Restrict the bot to only listen to certain text channels. Uncomment (remove the ; at the start of the line) and add channel IDs to enable.
  28. ; An id looks like this number: 41771983423143930
  29. ; To get a channel id, escape (put a \ in front of) a channel mention in chat and copy the number that comes up on chat, like this: \#your-music-channel
  30. ; or right click the channel in discord and click "Copy Link". The second number is the channel id.
  31. ; Example: BindToChannels = 41000000000000005 41000000000000007
  32. ; (Don't use these ids, they won't work)
  33. ; This next line is the one you uncomment to use the option:
  34. ;BindToChannels = 132997517011976192
  35. [MusicBot]
  36. ; The starting volume of the bot. You can use any value from 0.01 to 1.0 but 0.15 is probably fine
  37. DefaultVolume = 0.15
  38.  
  39. ; Only allow whitelisted users to use commands
  40. ; Deprecated in favor of permissions
  41. WhiteListCheck = no
  42.  
  43. ; Skips required to skip a song. Whichever is lower will be used.
  44. ; Skip ratio refers to the percent of non-deafened, non-owner users
  45. ; in the voice channel needed to skip a song.
  46. SkipsRequired = 4
  47. SkipRatio = 0.5
  48.  
  49. ; If no, delete videos after they've played, if the video
  50. ; isn't still in the queue, to avoid redownloading it
  51. SaveVideos = yes
  52.  
  53. ; Mentions the user who queued a song when the song plays
  54. NowPlayingMentions = no
  55.  
  56. ; On start up, if the owner is in a voice channel, join that channel
  57. AutoSummon = yes
  58.  
  59. ; Play random songs when nothing is queued
  60. UseAutoPlaylist = yes
  61.  
  62. ; Prints extra output in the console and some errors to chat.
  63. ; This option is a work in progress, don't expect much. You might as well just leave it on for now.
  64. DebugMode = no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement