Advertisement
Guest User

options.ini

a guest
May 6th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 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 = bot email
  13. Password = bot pw
  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 = your ownerID get this from joining the rhino bot help discord it should be under one of their chat channels when you login
  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 =
  35.  
  36. [MusicBot]
  37. ; The starting volume of the bot. You can use any value from 0.01 to 1.0 but 0.15 is probably fine
  38. DefaultVolume = 0.15
  39.  
  40. ; Only allow whitelisted users to use commands
  41. ; Deprecated in favor of permissions
  42. WhiteListCheck = no
  43.  
  44. ; Skips required to skip a song. Whichever is lower will be used.
  45. ; Skip ratio refers to the percent of non-deafened, non-owner users
  46. ; in the voice channel needed to skip a song.
  47. SkipsRequired = 1
  48. SkipRatio = 0.1
  49.  
  50. ; If no, delete videos after they've played, if the video
  51. ; isn't still in the queue, to avoid redownloading it
  52. SaveVideos = yes
  53.  
  54. ; Mentions the user who queued a song when the song plays
  55. NowPlayingMentions = no
  56.  
  57. ; On start up, if the owner is in a voice channel, join that channel
  58. AutoSummon = yes
  59.  
  60. ; Play random songs when nothing is queued
  61. UseAutoPlaylist = no
  62.  
  63. ; Prints extra output in the console and some errors to chat.
  64. ; This option is a work in progress, don't expect much. You might as well just leave it on for now.
  65. DebugMode = no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement