Advertisement
Guest User

Java Error

a guest
Oct 19th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.55 KB | None | 0 0
  1. /////////////////////////////////////////////////////////
  2. // Config for the JMusicBot //
  3. /////////////////////////////////////////////////////////
  4. // Any line starting with // is ignored //
  5. // You MUST set the token and owner //
  6. // All other items have defaults if you don't set them //
  7. // Open in Notepad++ for best results //
  8. /////////////////////////////////////////////////////////
  9.  
  10.  
  11. // This sets the token for the bot to log in with
  12. // This MUST be a bot token (user tokens will not work)
  13. // If you don't know how to get a bot token, please see the guide here:
  14. // https://github.com/jagrosh/MusicBot/wiki/Getting-a-Bot-Token
  15.  
  16. token = "RESTRICTED"
  17.  
  18.  
  19. // This sets the owner of the bot
  20. // This needs to be the owner's ID (a 17-18 digit number)
  21. // https://github.com/jagrosh/MusicBot/wiki/Finding-Your-User-ID
  22.  
  23. owner = "273371052086788096"
  24.  
  25.  
  26. // This sets the prefix for the bot
  27. // The prefix is used to control the commands
  28. // If you use !!, the play command will be !!play
  29. // If you do not set this, the prefix will be an @mention of the bot (@Botname play)
  30.  
  31. prefix = "!!"
  32.  
  33.  
  34. // If you set this, it modifies the default game of the bot
  35. // Set this to NONE to have no game
  36. // Set this to DEFAULT to use the default game
  37. // You can make the game "Playing X", "Listening to X", or "Watching X"
  38. // where X is the title. If you don't include an action, it will use the
  39. // default of "Playing"
  40.  
  41. game = "Listening to "
  42.  
  43.  
  44. // If you set this, it will modify the default status of bot
  45. // Valid values: ONLINE IDLE DND INVISIBLE
  46.  
  47. status = ONLINE
  48.  
  49.  
  50. // If you set this to true, the bot will list the title of the song it is currently playing in its
  51. // "Playing" status. Note that this will ONLY work if the bot is playing music on ONE guild;
  52. // if the bot is playing on multiple guilds, this will not work.
  53.  
  54. songinstatus = true
  55.  
  56.  
  57. // If you set this, the bot will also use this prefix in addition to
  58. // the one provided above
  59.  
  60. altprefix = "="
  61.  
  62.  
  63. // If you set these, it will change the various emojis
  64.  
  65. success = "🎶"
  66. warning = "💡"
  67. error = "🚫"
  68. loading = "⌚"
  69. searching = "🔎"
  70.  
  71.  
  72. // If you set this, you change the word used to view the help.
  73. // For example, if you set the prefix to !! and the help to cmds, you would type
  74. // !!cmds to see the help text
  75.  
  76. help = "help"
  77.  
  78.  
  79. // If you set this, the "nowplaying" command will show youtube thumbnails
  80. // Note: If you set this to true, the nowplaying boxes will NOT refresh
  81. // This is because refreshing the boxes causes the image to be reloaded
  82. // every time it refreshes.
  83.  
  84. npimages = true
  85.  
  86.  
  87. // If you set this, the bot will not leave a voice channel after it finishes a queue.
  88. // Keep in mind that being connected to a voice channel uses additional bandwith,
  89. // so this option is not recommended if bandwidth is a concern.
  90.  
  91. stayinchannel = true
  92.  
  93.  
  94. // This sets the maximum amount of seconds any track loaded can be. If not set or set
  95. // to any number less than or equal to zero, there is no maximum time length. This time
  96. // restriction applies to songs loaded from any source.
  97.  
  98. maxtime = 60
  99.  
  100.  
  101. // This sets an alternative folder to be used as the Playlists folder
  102. // This can be a relative or absolute path
  103.  
  104. playlistsfolder = Playlists
  105.  
  106.  
  107. // By default, the bot will DM the owner if the bot is running and a new version of the bot
  108. // becomes available. Set this to false to disable this feature.
  109.  
  110. updatealerts = true
  111.  
  112.  
  113. // Changing this changes the lyrics provider
  114. // Currently available providers: "A-Z Lyrics", "Genius", "MusicMatch"
  115. // At the time of writing, I would recommend sticking with A-Z Lyrics or MusicMatch,
  116. // as Genius tends to have a lot of non-song results and you might get something
  117. // completely unrelated to what you want.
  118. // If you are interested in contributing a provider, please see
  119. // https://github.com/jagrosh/JLyrics
  120.  
  121. lyrics.default = "A-Z Lyrics"
  122.  
  123.  
  124. // If you set this to true, it will enable the eval command for the bot owner. This command
  125. // allows the bot owner to run arbitrary code from the bot's account.
  126. //
  127. // WARNING:
  128. // This command can be extremely dangerous. If you don't know what you're doing, you could
  129. // cause horrific problems on your Discord server or on whatever computer this bot is running
  130. // on. Never run this command unless you are completely positive what you are running.
  131. //
  132. // DO NOT ENABLE THIS IF YOU DON'T KNOW WHAT THIS DOES OR HOW TO USE IT
  133. // IF SOMEONE ASKS YOU TO ENABLE THIS, THERE IS AN 11/10 CHANCE THEY ARE TRYING TO SCAM YOU
  134.  
  135. eval = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement