Michaili K
Michaili K
> an admin could set a welcome banner or pinned messages This is already a Discord feature and is called a "channel topic"
> the channel topic is currently playing track it prepends to the topic, not overwrite. also can be disabled by denying manage channels
have you seen any other bot channel of any server ever lmao
We close issues once they are fully implemented. This issue is still open, so it has not been implemented.
Changing the volume requires JMusicBot to perform audio manipulation. It uses native libraries for this. JMusicBot doesn't have these libraries for FreeBSD at the moment. In the meantime, keep the...
> Bump! Is this supported yet? If it were, this issue would be closed.
If you'd like, [join the support server](https://discord.gg/0p9LSGoRLu6Pet0k) if you need help and/or want to discuss of the implementation for queue types. You should be able to easily find me there...
If we want to make this truly dynamic (which I kinda do), here is what I would do: ## 1. Create a supplier function for all the `QueueTypes`: We will...
As for 1. I'm not sure if I was clear, but the diff for `QueueType` should be something like this: ```diff - LINEAR("\u23E9", "Linear"), + LINEAR("\u23E9", "Linear", LinearQueue::new), - FAIR("\uD83D\uDD22",...
Oh yeah, I almost forgot: You should add an entry to the `SettingsCmd`. Something like this below Repeat Mode should suffice: ```java + "\nQueue Type: " (s.getQueueType() == QueueType.FAIR ?...