Advertisement
Guest User

Untitled

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