Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.29 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.  
  10. ; HOW TO GET VARIOUS IDS:
  11. ; http://i.imgur.com/GhKpBMQ.gif
  12. ; Enable developer mode (options, settings, appearance), right click the object you want the id of, and click Copy ID
  13. ; This works for basically everything you would want the id of (channels and users). For roles you have to right click a role mention.
  14.  
  15.  
  16. [Credentials]
  17. ; Put your token here. Not "secret". The secret is not the token.
  18. Token = MjU0MDMyMzU5MDYwNTM3MzQ0.CyJJnA.EvQ_ox4fhMcdS8_WyiOQ-Wiq4D0
  19. ; If you want to use a normal user account instead of a bot account, use these lines instead.
  20. ; Comment the token line and uncomment the Email/Password lines.
  21. ;Email = bot_discord@email
  22. ;Password = bot_discord_password
  23.  
  24. [Permissions]
  25. ; This number should be your id. It gives you full permissions. You do not put the bot's id here. That's silly.
  26. ; If you don't know how to get this, scroll up a bit and read the part that says "HOW TO GET VARIOUS IDS"
  27. ; If you can't do that for some reason, join the help server (invite in the readme) and type this in chat: !id
  28. ; If you still don't understand, watch this https://streamable.com/4w8e and may your respective deity have mercy on your soul.
  29. ; I don't want any more "how do I get the OwnerID" questions.
  30. OwnerID = 164315020790857728
  31.  
  32. [Chat]
  33. ; Change this if you don't want commands to trigger another bot
  34. ; Example:
  35. ; CommandPrefix = *
  36. ; This means the commands you use in chat are *play, *skip, etc. This explanation exists because it seems no one knows what "prefix" means.
  37. ; You do not list commands here. You do not put "CommandPrefix = *play *queue *np *skip *clear..." etc. R e a d i n g c o m p r e h e n s i o n.
  38. CommandPrefix = !
  39.  
  40. ; 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.
  41. ; An id looks like this number: 41771983423143930
  42. ; To get a channel id, enable Developer Mode in discord (settings, appearance), right click a channel, and click Copy ID.
  43. ; Example: BindToChannels = 41000000000000005 41000000000000007
  44. ; (Don't use these ids, they won't work)
  45. ; This next line is the one you uncomment to use the option:
  46. ;
  47. ;BindToChannels =
  48. ;
  49.  
  50. ; Join a channel on startup. Multiple channels can be added for multiple servers. Remember, use IDs, not names.
  51. ; If both this option and AutoSummon are enabled, this option takes priority.
  52. ;
  53. ;AutojoinChannels =
  54. ;
  55.  
  56. [MusicBot]
  57. ; The starting volume of the bot. You can use any value from 0.01 to 1.0 but 0.15 is probably fine
  58. DefaultVolume = 0.15
  59.  
  60. ; Only allow whitelisted users to use commands
  61. ; Deprecated in favor of permissions
  62. WhiteListCheck = no
  63.  
  64. ; Skips required to skip a song. Whichever is lower will be used.
  65. ; Skip ratio refers to the percent of non-deafened, non-owner users
  66. ; in the voice channel needed to skip a song.
  67. SkipsRequired = 4
  68. SkipRatio = 0.5
  69.  
  70. ; If no, delete videos after they've played, if the video
  71. ; isn't still in the queue, to avoid redownloading it.
  72. SaveVideos = yes
  73.  
  74. ; Mentions the user who queued a song when the song plays.
  75. NowPlayingMentions = no
  76.  
  77. ; On start up, if the owner is in a voice channel, join that channel.
  78. AutoSummon = yes
  79.  
  80. ; Play random songs when nothing is queued.
  81. UseAutoPlaylist = yes
  82.  
  83. ; When no one else is in the voice channel, pause the music, and resume when someone joins again.
  84. AutoPause = yes
  85.  
  86. ; Automatically delete messages the bot sends after some time.
  87. DeleteMessages = yes
  88.  
  89. ; Delete the invoking message when DeleteMessages is enabled. Does nothing when DeleteMessages is disabled.
  90. ; Note the bot must have Manage Messages permission in the channel to delete other messages.
  91. DeleteInvoking = no
  92.  
  93. ; Prints extra output in the console and some errors to chat.
  94. ; This option is a work in progress, don't expect much. You might as well just leave it on for now.
  95. DebugMode = no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement